This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-wip-uploader/upload.php
2023-04-15 14:26:42 +01:00

46 lines
1012 B
PHP

<?php
header('Content-type:application/json;charset=utf-8'); // Set the response content type to JSON
$target_dir = "./maps/";
/**
* Generates a random map id
*/
function generateMapId()
{
$mapId = "";
$characters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
for ($i = 0; $i < 10; $i++) {
$mapId .= $characters[rand(0, strlen($characters) - 1)];
}
return $mapId;
}
/**
* Checks if the file is a zip file
*/
function isZipFile($file)
{
$fileType = strtolower(pathinfo($file, PATHINFO_EXTENSION));
echo $fileType;
die();
return $fileType == "zip";
}
$mapId = generateMapId(); // the id of the map
$map = $_FILES["map"];
$file = $map["tmp_name"];
if (!isZipFile($file)) {
echo "The file is not a zip file";
die();
}
$target_file = $target_dir . $mapId . ".zip";
if (!move_uploaded_file($file, $target_file)) {
echo "There was an error uploading the file";
die();
}
echo "The file https://wip.fascinated.cc/maps/" . $mapId . ".zip has been uploaded.";