Create api.php

This commit is contained in:
Eric Johansson (neku) 2015-02-04 20:21:50 +01:00
parent ba7d91c998
commit 78b2d83e04
1 changed files with 23 additions and 0 deletions

23
api.php Normal file
View File

@ -0,0 +1,23 @@
<?php
if(isset($_GET['d'])) {
include_once('core.php');
switch ($_GET['d']) {
case 'upload':
if(!empty($_POST['name'])){
save_file($_FILES["file"]["tmp_name"], $_POST['name']);
}else{
save_file($_FILES["file"]["tmp_name"], $_FILES["file"]["name"]);
}
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');
}