Compare commits

...

4 Commits

3 changed files with 78 additions and 36 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
php/composer* php/composer*
php/psalm.xml php/psalm.xml
php/vendor php/vendor
php.log

View File

@ -1,52 +1,63 @@
<?php <?php
include_once __DIR__ . "/logging.php";
define("ROOT_URL", "http://localhost/"); define("ROOT_URL", "http://localhost/");
define("IMG_DIR", "/var/www/localhost/img/"); define("ROOT_DIR", "/var/www/localhost/");
define("IMG_URL", "img/"); define("IMG_DIR", "img/");
define("THUMBNAIL_DIR", __DIR__ . "../thumbnails");
main(); main();
function main(): void { function main(): void {
$data = json_decode(file_get_contents('php://input'), true); $data = json_decode(file_get_contents('php://input'), true);
$array = []; $array = [];
$category = $data["category"]; $category = $data["category"];
$directory = IMG_DIR.$category; $directory = ROOT_DIR.IMG_DIR.$category;
if (!is_dir($directory)) return;
foreach (scandir($directory) as $file) {
if ($file === ".") continue;
if ($category === "" && $file === "..") continue;
if ($category != "") $file = $category.'/'.$file; if (!is_dir($directory)) goto encode;
$is_dir = is_dir(IMG_DIR.$file); foreach (scandir($directory) as $file) {
if (!$is_dir && !is_valid_file_type($file)) continue; if ($file === ".") continue;
if ($category === "" && $file === "..") continue;
$file_item = []; if ($category != "") $file = $category.'/'.$file;
$file_item["is_dir"] = $is_dir; $is_dir = is_dir(ROOT_DIR.IMG_DIR.$file);
$file_item["url"] = ROOT_URL.IMG_URL.$file; if (!$is_dir && !is_valid_file_type($file)) continue;
array_push($array, $file_item);
} $file_item = [];
echo json_encode($array); $file_item["is_dir"] = $is_dir;
$file_item["url"] = ROOT_URL.IMG_DIR.$file;
$file_item["thumbnail_url"] = create_thumbnail($file);
array_push($array, $file_item);
}
encode:
echo json_encode($array);
}
function create_thumbnail(string $file): string {
return ROOT_URL.IMG_DIR.$file;
} }
function is_valid_file_type(string $filename): bool { function is_valid_file_type(string $filename): bool {
$file_extensions = [ $file_extensions = [
// Image extensions // Image extensions
'jpg', 'jpg',
'jpeg', 'jpeg',
'png', 'png',
'gif', 'gif',
'tiff', 'tiff',
'bmp', 'bmp',
'webp', 'webp',
'svg', 'svg',
// Video extensions // Video extensions
'mp4', 'mp4',
]; ];
foreach ($file_extensions as $file_extension) { foreach ($file_extensions as $file_extension) {
if (str_ends_with($filename, $file_extension)) return true; if (str_ends_with($filename, $file_extension)) return true;
} }
return false; return false;
} }
?> ?>

29
php/logging.php Normal file
View File

@ -0,0 +1,29 @@
<?php
//define("DEBUG", null);
define("LOG_FILE", __DIR__ . "/../php.log");
define("PREFIX_ERROR", "Error: ");
function log_print($string)
{
if(defined("DEBUG") && !defined("NO_ECHO")) {
echo $string . "<br>";
return;
}
$handle = fopen(LOG_FILE, "a");
if (!$handle) {
echo "Unable to open file.<br>";
return;
}
if (!fwrite($handle, $string . "\n")) {
echo "Unable to write to file.<br>";
}
fclose($handle);
}
function log_error($string)
{
log_print(PREFIX_ERROR . $string);
}
?>