dolibarr 23.0.3
flowjs-server.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2023-2026 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
25if (!defined('NOTOKENRENEWAL')) {
26 define('NOTOKENRENEWAL', '1'); // Disables token renewal
27}
28// If there is no need to load and show top and left menu
29if (!defined('NOREQUIREMENU')) {
30 define('NOREQUIREMENU', '1');
31}
32if (!defined('NOREQUIREHTML')) {
33 define('NOREQUIREHTML', '1');
34}
35if (!defined('NOREQUIREAJAX')) {
36 define('NOREQUIREAJAX', '1');
37}
38if (!defined('NOREQUIRESOC')) {
39 define('NOREQUIRESOC', '1');
40}
41if (!defined("NOLOGIN")) {
42 define("NOLOGIN", '1');
43}
44//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Required to know date format for dol_print_date
45
46// Load Dolibarr environment
47require '../../main.inc.php';
48require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
49
58$action = GETPOST('action', 'aZ09');
59
60$module = GETPOST('module', 'aZ09arobase');
61$uploaddirname = dol_sanitizeFileName(GETPOST('uploaddirname', 'alpha'));
62
63$flowFilename = GETPOST('flowFilename', 'alpha');
64$flowIdentifier = GETPOST('flowIdentifier', 'alpha');
65$flowChunkNumber = GETPOST('flowChunkNumber', 'alpha');
66$flowChunkSize = GETPOST('flowChunkSize', 'alpha');
67$flowTotalSize = GETPOST('flowTotalSize', 'alpha');
68
69$result = restrictedArea($user, ($module ? $module : 'unknown'), 0, '', '', 'fk_soc', 'rowid', 0, 1); // Call with mode return. Use 'unknown' if module not defined to be sure to have an error when module is not set
70
71if (!$result) {
72 httponly_accessforbidden("No permission on module ".$module);
73}
74
75if ($action != 'upload') {
76 httponly_accessforbidden("Param action must be 'upload'");
77}
78
79if (!empty($conf->$module->dir_temp)) {
80 $upload_dir = $conf->$module->dir_temp;
81 if (!empty($uploaddirname)) {
82 $upload_dir .= "/".$uploaddirname;
83 }
84} else {
85 httponly_accessforbidden("Param module does not has a dir_temp directory. Module does not exists or is not activated.");
86}
87
88
89/*
90 * Action
91 */
92
94
95$result = false;
96
97if (!empty($upload_dir)) {
98 $temp_dir = $upload_dir.'/'.$flowIdentifier;
99} else {
100 $temp_dir = DOL_DATA_ROOT.'/'.$module.'/temp/'.$flowIdentifier;
101 $upload_dir = DOL_DATA_ROOT.'/'.$module.'/temp/';
102}
103
104if ($module != "test" && !isModEnabled($module)) {
105 echo json_encode("The module ".$module." is not enabled");
106 header("HTTP/1.0 400");
107 die();
108}
109
110if ($_SERVER['REQUEST_METHOD'] === 'GET') {
111 $chunk_file = $temp_dir.'/'.$flowFilename.'.part'.$flowChunkNumber;
112 if (file_exists($chunk_file)) {
113 header("HTTP/1.0 200 Ok");
114 } else {
115 header("HTTP/1.0 404 Not Found");
116 }
117} else {
118 // loop through files and move the chunks to a temporarily created directory
119 if (file_exists($upload_dir.'/'.$flowFilename)) {
120 echo json_encode('File '.$flowIdentifier.' was already uploaded');
121 header("HTTP/1.0 200 Ok");
122 die();
123 } elseif (!empty($_FILES)) {
124 foreach ($_FILES as $file) {
125 // check the error status
126 if ($file['error'] != 0) {
127 dol_syslog('error '.$file['error'].' in file '.$flowFilename);
128 continue;
129 }
130
131 // init the destination file (format <filename.ext>.part<#chunk>
132 // the file is stored in a temporary directory
133 $dest_file = $temp_dir.'/'.$flowFilename.'.part'.$flowChunkNumber;
134
135 // create the temporary directory
136 if (!dol_is_dir($temp_dir)) {
137 dol_mkdir($temp_dir);
138 }
139
140 // move the temporary file
141 if (!dol_move_uploaded_file($file['tmp_name'], $dest_file, 0)) {
142 dol_syslog('Error saving (move_uploaded_file) chunk '.$flowChunkNumber.' for file '.$flowFilename);
143 } else {
144 // check if all the parts present, and create the final destination file
145 $result = createFileFromChunks($temp_dir, $upload_dir, $flowFilename, $flowChunkSize, $flowTotalSize);
146 }
147 }
148 }
149}
150if ($result) {
151 echo json_encode('File '.$flowIdentifier.' uploaded');
152} else {
153 echo json_encode('Error while uploading file '.$flowIdentifier);
154}
155
156
167function createFileFromChunks($temp_dir, $upload_dir, $fileName, $chunkSize, $totalSize)
168{
169 dol_syslog(__FUNCTION__, LOG_DEBUG);
170
171 // count all the parts of this file
172 $total_files = 0;
173 $files = dol_dir_list($temp_dir, 'files');
174 foreach ($files as $file) {
175 if (stripos($file["name"], $fileName) !== false) {
176 $total_files++;
177 }
178 }
179
180 // check that all the parts are present
181 // the size of the last part is between chunkSize and 2*$chunkSize
182 if ($total_files * (float) $chunkSize >= ((float) $totalSize - (float) $chunkSize + 1)) {
183 // create the final destination file
184 if (($fp = fopen($upload_dir.'/'.$fileName, 'w')) !== false) {
185 for ($i = 1; $i <= $total_files; $i++) {
186 fwrite($fp, file_get_contents($temp_dir.'/'.$fileName.'.part'.$i));
187 dol_syslog('writing chunk '.$i);
188 }
189 fclose($fp);
190 } else {
191 dol_syslog('cannot create the destination file');
192 return false;
193 }
194
195 // rename the temporary directory (to avoid access from other
196 // concurrent chunks uploads)
197 @rename($temp_dir, $temp_dir.'_UNUSED');
198 }
199
200 return true;
201}
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:64
dol_is_dir($folder)
Test if filename is a directory.
dol_move_uploaded_file($src_file, $dest_file, $allowoverwrite, $disablevirusscan=0, $uploaderrorcode=0, $nohook=0, $keyforsourcefile='addedfile', $upload_dir='', $mode=0)
Check validity of a file upload from an GUI page, and move it to its final destination.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
if(!defined( 'NOREQUIREMENU')) if(!empty(GETPOST('seteventmessages', 'alpha'))) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.