dolibarr  18.0.0-alpha
fileupload.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2011-2012 Regis Houssin <regis.houssin@inodbox.com>
3  * Copyright (C) 2011 Laurent Destailleur <eldy@users.sourceforge.net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
24 if (!defined('NOTOKENRENEWAL')) {
25  define('NOTOKENRENEWAL', '1');
26 }
27 if (!defined('NOREQUIREMENU')) {
28  define('NOREQUIREMENU', '1'); // If there is no menu to show
29 }
30 if (!defined('NOREQUIREHTML')) {
31  define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
32 }
33 
34 
35 // Load Dolibarr environment
36 require '../../main.inc.php';
37 require_once DOL_DOCUMENT_ROOT.'/core/class/fileupload.class.php';
38 
39 error_reporting(E_ALL | E_STRICT);
40 
41 //print_r($_POST);
42 //print_r($_GET);
43 //print 'upload_dir='.GETPOST('upload_dir');
44 
45 $fk_element = GETPOST('fk_element', 'int');
46 $element = GETPOST('element', 'alpha');
47 
48 
49 $upload_handler = new FileUpload(null, $fk_element, $element);
50 
51 /*
52  * View
53  */
54 
55 top_httphead();
56 
57 header('Pragma: no-cache');
58 header('Cache-Control: no-store, no-cache, must-revalidate');
59 header('Content-Disposition: inline; filename="files.json"');
60 header('X-Content-Type-Options: nosniff');
61 header('Access-Control-Allow-Origin: *');
62 header('Access-Control-Allow-Methods: OPTIONS, HEAD, GET, POST, PUT, DELETE');
63 header('Access-Control-Allow-Headers: X-File-Name, X-File-Type, X-File-Size');
64 
65 switch ($_SERVER['REQUEST_METHOD']) {
66  case 'OPTIONS':
67  break;
68  case 'HEAD':
69  case 'GET':
70  $upload_handler->get();
71  break;
72  case 'POST':
73  if (isset($_REQUEST['_method']) && $_REQUEST['_method'] === 'DELETE') {
74  $upload_handler->delete();
75  } else {
76  $upload_handler->post();
77  }
78  break;
79  case 'DELETE':
80  $upload_handler->delete();
81  break;
82  default:
83  header('HTTP/1.0 405 Method Not Allowed');
84  exit;
85 }
86 
87 $db->close();
FileUpload
This class is used to manage file upload using ajax.
Definition: fileupload.class.php:31
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:530
top_httphead
if(!defined('NOREQUIREMENU')) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
Definition: main.inc.php:1470