2019-04-28 15:27:55 +02:00
|
|
|
<?php
|
|
|
|
// Load configuration
|
|
|
|
include 'conf/config.php';
|
|
|
|
|
2019-05-01 22:58:11 +02:00
|
|
|
// Delete directory recursively
|
|
|
|
function delTree($dir) {
|
|
|
|
$files = array_diff(scandir($dir), array('.','..'));
|
|
|
|
foreach ($files as $file) {
|
|
|
|
(is_dir("$dir/$file")) ? delTree("$dir/$file") : unlink("$dir/$file");
|
|
|
|
}
|
|
|
|
return rmdir($dir);
|
|
|
|
}
|
|
|
|
|
2019-04-28 15:27:55 +02:00
|
|
|
// Check if file have to be deleted
|
|
|
|
$data_dir = array_diff(scandir(_DATA_DIR), array('..', '.', '.gitkeep'));
|
|
|
|
foreach ($data_dir as $data_dir_content)
|
|
|
|
{
|
|
|
|
$data_conf = json_decode(file_get_contents(_DATA_DIR . "/" . $data_dir_content . "/info.json"),true);
|
2019-04-28 16:43:14 +02:00
|
|
|
if ($data_conf['expire'] < time())
|
2019-04-28 15:27:55 +02:00
|
|
|
{
|
2019-05-01 22:58:11 +02:00
|
|
|
delTree(_DATA_DIR . "/" . $data_dir_content);
|
2019-04-28 15:27:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Upload File
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'PUT')
|
|
|
|
{
|
|
|
|
$rnd_data = mt_rand(10000,99999);
|
2019-05-01 22:58:11 +02:00
|
|
|
$filesize = 0 ;
|
|
|
|
|
2019-04-28 15:27:55 +02:00
|
|
|
mkdir(_DATA_DIR . "/" . $rnd_data);
|
2019-04-28 17:00:44 +02:00
|
|
|
$info_json = new stdClass();
|
2019-04-28 15:27:55 +02:00
|
|
|
$info_json->expire = time() + (7 * 24 * 60 * 60);
|
|
|
|
file_put_contents(_DATA_DIR . "/" . $rnd_data . "/info.json", json_encode($info_json));
|
|
|
|
|
|
|
|
$putdata = fopen("php://input", "r");
|
|
|
|
$fp = fopen(_DATA_DIR . "/" . $rnd_data . "/file", "w");
|
2019-05-01 22:58:11 +02:00
|
|
|
while ($data = fread($putdata, 1024) and $filesize < _SIZE_LIMIT )
|
2019-04-28 15:27:55 +02:00
|
|
|
{
|
2019-05-01 22:58:11 +02:00
|
|
|
$filesize += 1024 ;
|
2019-04-28 15:27:55 +02:00
|
|
|
fwrite($fp, $data);
|
|
|
|
}
|
|
|
|
fclose($putdata);
|
2019-05-01 22:58:11 +02:00
|
|
|
fclose($fp);
|
|
|
|
|
|
|
|
if ($filesize < _SIZE_LIMIT )
|
|
|
|
{
|
|
|
|
print(_HTTP_PROTO . '://' . _HTTP_DOMAIN . _HTTP_PATH . 'data/' . $rnd_data . '/file');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delTree(_DATA_DIR . "/" . $rnd_data);
|
|
|
|
print("File size exceeded (Max " . _SIZE_LIMIT . " bytes)");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-28 15:27:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Informations for user
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'GET')
|
|
|
|
{
|
2019-04-28 22:30:23 +02:00
|
|
|
if (stristr($_SERVER["HTTP_USER_AGENT"], 'curl') or stristr($_SERVER["HTTP_USER_AGENT"], 'Wget'))
|
2019-04-28 15:27:55 +02:00
|
|
|
{
|
|
|
|
print("To upload file, use # curl --upload-file my_file " . _HTTP_PROTO . '://' . _HTTP_DOMAIN . _HTTP_PATH . "index.php\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
include("front.php" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|