81 lines
2.5 KiB
PHP
81 lines
2.5 KiB
PHP
<?php defined('BLUDIT') or die('Bludit CMS.');
|
|
header('Content-Type: application/json');
|
|
|
|
// $_POST
|
|
// ----------------------------------------------------------------------------
|
|
// (string) $_POST['uuid']
|
|
$uuid = empty($_POST['uuid']) ? false : $_POST['uuid'];
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Set upload directory
|
|
if ($uuid && IMAGE_RESTRICT) {
|
|
$uploadDirectory = PATH_UPLOADS_PAGES.$uuid.DS;
|
|
$thumbnailDirectory = $uploadDirectory.'thumbnails'.DS;
|
|
} else {
|
|
$uploadDirectory = PATH_UPLOADS;
|
|
$thumbnailDirectory = PATH_UPLOADS_THUMBNAILS;
|
|
}
|
|
|
|
// Create directory for images
|
|
if (!is_dir($uploadDirectory)){
|
|
Filesystem::mkdir($uploadDirectory, true);
|
|
}
|
|
|
|
// Create directory for thumbnails
|
|
if (!is_dir($thumbnailDirectory)){
|
|
Filesystem::mkdir($thumbnailDirectory, true);
|
|
}
|
|
|
|
// File extensions allowed
|
|
$allowedExtensions = array('gif', 'png', 'jpg', 'jpeg', 'svg');
|
|
|
|
// Upload all images
|
|
foreach ($_FILES['bluditInputFiles']['name'] as $key=>$filename) {
|
|
|
|
// Check for errors
|
|
if ($_FILES['bluditInputFiles']['error'][$key] != 0) {
|
|
$message = 'Error occurred uploading the image, max file size allowed: '.ini_get('upload_max_filesize');
|
|
Log::set($message, LOG_TYPE_ERROR);
|
|
exit (json_encode(array(
|
|
'status'=>1,
|
|
'message'=>$message
|
|
)));
|
|
}
|
|
|
|
// Check file extension
|
|
$fileExtension = pathinfo($filename, PATHINFO_EXTENSION);
|
|
$fileExtension = Text::lowercase($fileExtension);
|
|
if (!in_array($fileExtension, $allowedExtensions) ) {
|
|
$message = 'Extension file not supported.';
|
|
Log::set($message, LOG_TYPE_ERROR);
|
|
exit (json_encode(array(
|
|
'status'=>1,
|
|
'message'=>$message
|
|
)));
|
|
}
|
|
|
|
// Generate the next filename to not overwrite the original file
|
|
$nextFilename = Filesystem::nextFilename($uploadDirectory, $filename);
|
|
|
|
// Move from temporary directory to uploads folder
|
|
rename($_FILES['bluditInputFiles']['tmp_name'][$key], $uploadDirectory.$nextFilename);
|
|
chmod($uploadDirectory.$nextFilename, 0644);
|
|
|
|
// Generate Thumbnail
|
|
// Exclude generate thumbnail for SVG format and generate a symlink to the svg
|
|
if ($fileExtension == 'svg') {
|
|
symlink($uploadDirectory.$nextFilename, $thumbnailDirectory.$nextFilename);
|
|
} else {
|
|
$Image = new Image();
|
|
$Image->setImage($uploadDirectory.$nextFilename, $site->thumbnailWidth(), $site->thumbnailHeight(), 'crop');
|
|
$Image->saveImage($thumbnailDirectory.$nextFilename, $site->thumbnailQuality(), true);
|
|
}
|
|
}
|
|
|
|
exit (json_encode(array(
|
|
'status'=>0,
|
|
'message'=>'Image uploaded success.',
|
|
'filename'=>$nextFilename
|
|
)));
|
|
|
|
?>
|