sharex-php-uploader/upload.php

107 lines
3.5 KiB
PHP
Raw Normal View History

2023-04-09 10:58:09 +00:00
<?php
$before = microtime(true); // Start time of the script
error_reporting(E_ERROR); // Hide PHP errors
header('Content-type:application/json;charset=utf-8'); // Set the content type to JSON
/**
* Configuration
*/
2023-04-09 10:58:09 +00:00
$tokens = array("set me"); // Your secret keys
2023-04-09 11:04:17 +00:00
$uploadDir = "./"; // The upload directory
$useRandomFileNames = false; // Use random file names instead of the original file name
$fileNameLength = 8; // The length of the random file name
2023-04-09 15:54:20 +00:00
$webpThreadhold = 1048576; // 1MB - The minimum file size for converting to webp (in bytes)
2023-04-09 10:58:09 +00:00
/**
* Check if the token is valid
*/
function checkToken($token): bool {
2023-04-09 10:58:09 +00:00
global $tokens;
return isset($token) && in_array($token, $tokens);
2023-04-09 10:58:09 +00:00
}
/**
* Generate a random string
*/
function generateRandomString($length = 10): string {
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$charactersLength = strlen($characters);
$randomString = '';
for ($i = 0; $i < $length; $i++) {
$randomString .= $characters[rand(0, $charactersLength - 1)];
}
return $randomString;
}
2023-04-09 10:58:09 +00:00
/**
* Return a JSON response
*/
2023-04-09 11:24:47 +00:00
function returnJson($status, $message, $timeTaken = null): void {
$json = array('status' => $status, 'url' => $message, 'processingTime' => round($timeTaken ?? 0, 2) . "ms");
2023-04-09 10:58:09 +00:00
echo(json_encode($json));
die();
}
try {
$token = $_POST['secret']; // The provided secret key
$file = $_FILES['sharex']; // The uploaded file
2023-04-09 10:58:09 +00:00
// Check if the token is valid
if (!checkToken($token)) {
$timeTaken = microtime(true) - $before;
returnJson('ERROR', 'Invalid or missing secret key', $timeTaken);
die();
}
2023-04-09 10:58:09 +00:00
// Check if the file was uploaded
if (!isset($file)) {
$timeTaken = microtime(true) - $before;
returnJson('ERROR', 'No file was uploaded', $timeTaken);
die();
}
2023-04-09 10:58:09 +00:00
2023-04-09 15:51:05 +00:00
$target_file = preg_replace("/[^A-Za-z0-9_.]/", '', $_FILES["sharex"]["name"]); // Remove unwanted characters
$fileType = pathinfo($target_file, PATHINFO_EXTENSION); // File extension (e.g. png, jpg, etc.)
2023-04-09 10:58:09 +00:00
// Check if the file already exists
if (file_exists($uploadDir . $target_file)) {
$timeTaken = microtime(true) - $before;
returnJson('ERROR', 'File already exists', $timeTaken);
die();
}
$shouldSave = true; // Whether or not the file should be saved
$finalName = $target_file; // The final name of the file
if ($useRandomFileNames) { // Generate a random file name if enabled
$finalName = generateRandomString($fileNameLength) . "." . $fileType;
}
// Convert the image to webp if applicable
2023-04-09 15:51:05 +00:00
if (in_array($fileType, array("png", "jpeg", "jpg")) && $_FILES["sharex"]["size"] > $webpThreadhold) {
$image = imagecreatefromstring(file_get_contents($_FILES["sharex"]["tmp_name"]));
$webp_file = pathinfo($finalName, PATHINFO_FILENAME) . ".webp";
2023-04-09 11:24:47 +00:00
imagewebp($image, $webp_file, 90); // Convert the image and save it
imagedestroy($image); // Free up memory
$finalName = $webp_file;
$shouldSave = false;
}
2023-04-09 10:58:09 +00:00
if ($shouldSave) {
// Move the file to the uploads folder
if (move_uploaded_file($_FILES["sharex"]["tmp_name"], $uploadDir . $finalName)) {
$timeTaken = microtime(true) - $before;
returnJson('OK', $finalName, $timeTaken);
} else {
$timeTaken = microtime(true) - $before;
2023-04-09 11:22:39 +00:00
returnJson('ERROR', 'File upload failed. Does the upload folder exist and did you CHMOD the folder?', $timeTaken);
}
die();
}
returnJson('OK', $finalName, $timeTaken);
2023-04-09 15:54:20 +00:00
die();
2023-04-09 11:22:39 +00:00
} catch (Exception $e) { // Handle any errors
$timeTaken = microtime(true) - $before;
returnJson('ERROR', $e->getMessage(), $timeTaken);
die();
2023-04-09 10:58:09 +00:00
}
?>