misc-scripts/skinup/target.php
jkoci 31324db80f Skin uploader in php
Oh, how I hate PHP
2023-07-10 22:07:20 +02:00

101 lines
2.1 KiB
PHP

<pre>
<?php
define("UPLOAD_DIR", realpath("./uploaddest"));
if (!UPLOAD_DIR){
die("UPLOAD_DIR does not exist.");
}
// Oh, how I miss python's pathlib
function get_name($path) {
return pathinfo($path, PATHINFO_FILENAME);
}
function get_dir($path) {
return pathinfo($path, PATHINFO_DIRNAME);
}
function get_ext($path) {
return pathinfo($path, PATHINFO_EXTENSION);
}
// See? So complicated
function with_name($path, $name) {
$ret = "";
if(get_dir($path)) {
$ret = get_dir($path) . DIRECTORY_SEPARATOR;
}
$ret = $ret . $name;
if(get_ext($path)){
$ret = $ret . "." . get_ext($path);
}
return $ret;
}
function with_ext($path, $ext) {
$ret = "";
if(get_dir($path)) {
$ret = get_dir($path) . DIRECTORY_SEPARATOR;
}
$ret = $ret . get_name($path);
if($ext){
$ret = $ret . "." . $ext;
}
return $ret;
}
function with_dir($path, $dir) {
$ret = "";
if($dir){
$ret = $ret . $dir . DIRECTORY_SEPARATOR;
}
$ret = $ret . get_name($path);
if(get_ext($path)){
$ret = $ret . "." . get_ext($path);
}
return $ret;
}
function as_uploaded($fname) {
return with_dir($fname, UPLOAD_DIR);
}
function upload_file($_file, $destname) {
if ($_file["error"] != UPLOAD_ERR_OK) {
return false;
}
if (move_uploaded_file($_file["tmp_name"], as_uploaded($destname))) {
return true;
}
return false;
}
$skin = $_FILES["skin-file"];
$player_name = $_POST["player-name"];
$dest = uniqid($player_name) . "." . get_ext($skin["name"]);
$save_as = $player_name . ($_POST["skin-name"]? "_{$_POST['skin-name']}" : "") . "." . get_ext($skin["name"]);
if (upload_file($skin, $dest)) {
$meta = with_ext(as_uploaded($dest), "json");
file_put_contents($meta, json_encode([
"player-name" => $_POST["player-name"],
"skin-name" => $_POST["skin-name"],
"file-name" => $dest,
"save-as" => $save_as,
]));
echo "Upload OK";
} else {
// I just resign on handling all the errors.
echo "Upload failed";
}
?>
</pre>