dolibarr  x.y.z
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 /*
53  * View
54  */
55 
56 top_httphead();
57 
58 header('Pragma: no-cache');
59 header('Cache-Control: no-store, no-cache, must-revalidate');
60 header('Content-Disposition: inline; filename="files.json"');
61 header('X-Content-Type-Options: nosniff');
62 header('Access-Control-Allow-Origin: *');
63 header('Access-Control-Allow-Methods: OPTIONS, HEAD, GET, POST, PUT, DELETE');
64 header('Access-Control-Allow-Headers: X-File-Name, X-File-Type, X-File-Size');
65 
66 switch ($_SERVER['REQUEST_METHOD']) {
67  case 'OPTIONS':
68  break;
69  case 'HEAD':
70  case 'GET':
71  $upload_handler->get();
72  break;
73  case 'POST':
74  if (isset($_REQUEST['_method']) && $_REQUEST['_method'] === 'DELETE') {
75  $upload_handler->delete();
76  } else {
77  $upload_handler->post();
78  }
79  break;
80  case 'DELETE':
81  $upload_handler->delete();
82  break;
83  default:
84  header('HTTP/1.0 405 Method Not Allowed');
85  exit;
86 }
87 
88 $db->close();
This class is used to manage file upload using ajax.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
if(!defined('NOREQUIREMENU')) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
Definition: main.inc.php:1436