bludit/bl-kernel/ajax/upload-profile-picture.php

45 lines
1.4 KiB
PHP
Raw Normal View History

2018-07-30 23:43:12 +02:00
<?php defined('BLUDIT') or die('Bludit CMS.');
header('Content-Type: application/json');
2018-10-29 18:21:42 +01:00
// $_POST
// ----------------------------------------------------------------------------
// (string) $_POST['username']
$username = empty($_POST['username']) ? false : $_POST['username'];
// ----------------------------------------------------------------------------
if ($username===false) {
2019-01-31 20:07:59 +01:00
ajaxResponse(1, 'Error in username.');
2018-10-29 18:21:42 +01:00
}
2018-07-30 23:43:12 +02:00
if (!isset($_FILES['profilePictureInputFile'])) {
2019-01-31 20:07:59 +01:00
ajaxResponse(1, 'Error trying to upload the profile picture.');
2018-07-30 23:43:12 +02:00
}
// File extension
$fileExtension = pathinfo($_FILES['profilePictureInputFile']['name'], PATHINFO_EXTENSION);
// Tmp filename
$tmpFilename = $username.'.'.$fileExtension;
// Final filename
$filename = $username.'.png';
// Move from temporary directory to uploads folder
rename($_FILES['profilePictureInputFile']['tmp_name'], PATH_TMP.$tmpFilename);
// Resize and convert to png
$image = new Image();
$image->setImage(PATH_TMP.$tmpFilename, PROFILE_IMG_WIDTH, PROFILE_IMG_HEIGHT, 'crop');
$image->saveImage(PATH_UPLOADS_PROFILES.$filename, PROFILE_IMG_QUALITY, false, true);
// Remove the tmp file
unlink(PATH_TMP.$tmpFilename);
// Permissions
chmod(PATH_UPLOADS_PROFILES.$filename, 0644);
2019-01-31 20:07:59 +01:00
ajaxResponse(0, 'Image uploaded.', array(
2018-07-30 23:43:12 +02:00
'filename'=>$filename,
'absoluteURL'=>DOMAIN_UPLOADS_PROFILES.$filename,
'absolutePath'=>PATH_UPLOADS_PROFILES.$filename
2019-01-31 20:07:59 +01:00
));
2018-07-30 23:43:12 +02:00
?>