]> jfr.im git - uguu.git/blob - api.php
Update info.html
[uguu.git] / api.php
1 <?php
2 //If the value d doesn't exist, redirect back to front page *1
3 if(isset($_GET['d'])) {
4 //Include the core file with the functions
5 include_once('includes/core.php');
6 switch ($_GET['d']) {
7 //Uploading with HTML response and errors
8 case 'upload':
9 //If no file is being posted, show the error page and exit.
10 if(empty($_FILES['file']['name'])){
11 include_once('error.php');
12 exit(0);
13 }
14 //Set the name value to the original filename
15 $name = $_FILES['file']['name'];
16 $arg = 'custom_original';
17 //If the value name contains a custom name, set the name value
18 if(!empty($_POST['name'])){
19 $name = $_POST['name'];}
20 //If value contains anything, keep original filename
21 if(!empty($_POST['randomname'])){
22 $name = $_FILES['file']['name'];
23 $arg = 'random';}
24 //Call the save function which sends the file+name
25 save_file($_FILES['file']['tmp_name'], $name, $arg, 'normal');
26 break;
27 //Uploading without HTML response or errors
28 case 'upload-tool':
29 //If no file is being posted, show the error page and exit.
30 if(empty($_FILES['file']['name'])){
31 exit('You did not send a file, try again.');
32 }
33 //Set the name value to the original filename
34 $name = $_FILES['file']['name'];
35 $arg = 'custom_original';
36 //If the value name contains a custom name, set the name value
37 if(!empty($_POST['name'])){
38 $name = $_POST['name'];}
39 //If value contains anything, keep original filename
40 if(!empty($_POST['randomname'])){
41 $name = $_FILES['file']['name'];
42 $arg = 'random';}
43 //Call the save function which sends the file+name
44 save_file($_FILES['file']['tmp_name'], $name, $arg, 'tool');
45 break;
46 case 'extend-time':
47 break;
48 default:
49 //If no correct valid argument for the api to perform on, tell them to enter a valid one
50 exit('Please provide a valid argument. Example: curl -i -F name=test.jpg -F file=@localfile.jpg http://uguu.se/api.php?d=upload-tool');
51 break;
52 }
53 }else{
54 //*1
55 header('Location: index.html');
56 }