mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
28 lines
655 B
PHP
28 lines
655 B
PHP
<?php
|
|
if(isset($_GET['d'])) {
|
|
include_once('core.php');
|
|
switch ($_GET['d']) {
|
|
|
|
case 'upload':
|
|
$name = $_FILES['file']['name'];
|
|
|
|
if(!empty($_POST['name'])){
|
|
$name = $_POST['name'];}
|
|
|
|
save_file($_FILES['file']['tmp_name'], $name);
|
|
break;
|
|
|
|
case 'upload-sharex':
|
|
|
|
break;
|
|
|
|
case 'extend-time':
|
|
break;
|
|
default:
|
|
exit('Please provide a valid argument. Example: curl -i -F name=test.jpg -F file=@localfile.jpg http://uguu.se/api.php?d=upload');
|
|
break;
|
|
}
|
|
}else{
|
|
exit('Please provide a valid argument. Example: curl -i -F name=test.jpg -F file=@localfile.jpg http://uguu.se/api.php?d=upload');
|
|
}
|