dolibarr 24.0.1
actions_linkedfiles.inc.php
1<?php
2/* Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
3 * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
4 * Copyright (C) 2015 Ferran Marcet <fmarcet@2byte.es>
5 * Copyright (C) 2024-2026 Frédéric France <frederic.france@free.fr>
6 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 * or see https://www.gnu.org/
21 */
22
39'
40@phan-var-force string $upload_dir
41@phan-var-force string $upload_dirold
42@phan-var-force string $confirm
43@phan-var-force string $forceFullTextIndexation
44';
45
46// Protection to understand what happen when submitting files larger than post_max_size
47if (GETPOSTINT('uploadform') && empty($_POST) && empty($_FILES)) {
48 dol_syslog("The PHP parameter 'post_max_size' is too low. All POST parameters and FILES were set to empty.");
49 $langs->loadLangs(array("errors", "install"));
50 print $langs->trans("ErrorFileSizeTooLarge").' ';
51 print $langs->trans("ErrorGoBackAndCorrectParameters");
52 die;
53}
54
55if ((GETPOST('sendit', 'alpha')
56 || GETPOST('linkit', 'restricthtml')
57 || ($action == 'confirm_deletefile' && $confirm == 'yes')
58 || ($action == 'confirm_updateline' && GETPOST('save', 'alpha') && GETPOST('link', 'alpha'))
59 || ($action == 'renamefile' && GETPOST('renamefilesave', 'alpha'))) && empty($permissiontoadd)) {
60 dol_syslog('The file actions_linkedfiles.inc.php was included but parameter $permissiontoadd was not set before or is set to false.');
61 print 'The file actions_linkedfiles.inc.php was included but parameter $permissiontoadd was not set before or is set to false.';
62 die;
63}
64
65$error = 0;
66
67// Submit file/link
68if (GETPOST('sendit', 'alpha') && getDolGlobalString('MAIN_UPLOAD_DOC') && !empty($permissiontoadd)) {
69 if (!empty($_FILES) && is_array($_FILES['userfile'])) {
70 include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
71
72 if (is_array($_FILES['userfile']['tmp_name'])) { // When form has a input type="file" field with name="userfile[]"
73 $userfiles = $_FILES['userfile']['tmp_name'];
74 $filearrayis = 'array';
75 } else {
76 $userfiles = array(0 => $_FILES['userfile']['tmp_name']);
77 $filearrayis = 'string';
78 }
79
80 foreach ($userfiles as $key => $userfile) {
81 if ($filearrayis == 'array') {
82 $fileerror = $_FILES['userfile']['error'][$key];
83 $fileoriginname = $_FILES['userfile']['name'][$key];
84 } else {
85 $fileerror = $_FILES['userfile']['error'];
86 $fileoriginname = $_FILES['userfile']['name'];
87 }
88
89 if (empty($userfile)) {
90 $error++;
91 if ($fileerror == 1 || $fileerror == 2) {
92 setEventMessages($langs->trans('ErrorFileSizeTooLarge'), null, 'errors');
93 } else {
94 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("File")), null, 'errors');
95 }
96 }
97 if (preg_match('/__.*__/', $fileoriginname)) {
98 $error++;
99 setEventMessages($langs->trans('ErrorWrongFileName'), null, 'errors');
100 }
101 }
102
103 if (!$error) {
104 // Define if we have to generate thumbs or not
105 $generatethumbs = 1;
106 if (GETPOST('section_dir', 'alpha')) {
107 $generatethumbs = 0;
108 }
109 $allowoverwrite = (GETPOSTINT('overwritefile') ? 1 : 0);
110 $forceFullTextIndexation = (!empty($forceFullTextIndexation) ? $forceFullTextIndexation : '');
111
112 if (!empty($upload_dirold) && getDolGlobalInt('PRODUCT_USE_OLD_PATH_FOR_PHOTO')) {
113 $result = dol_add_file_process($upload_dirold, $allowoverwrite, 1, 'userfile', GETPOST('savingdocmask', 'alpha'), null, '', $generatethumbs, $object, empty($forceFullTextIndexation) ? 0 : $forceFullTextIndexation);
114 } elseif (!empty($upload_dir)) {
115 $result = dol_add_file_process($upload_dir, $allowoverwrite, 1, 'userfile', GETPOST('savingdocmask', 'alpha'), null, '', $generatethumbs, $object, empty($forceFullTextIndexation) ? 0 : $forceFullTextIndexation);
116 }
117 }
118 }
119} elseif (GETPOST('linkit', 'restricthtml') && getDolGlobalString('MAIN_UPLOAD_DOC') && !empty($permissiontoadd)) {
120 $link = GETPOST('link', 'alpha');
121 if ($link) {
122 if (substr($link, 0, 7) != 'http://'
123 && substr($link, 0, 8) != 'https://'
124 && substr($link, 0, 7) != 'davs://'
125 && (substr($link, 0, 7) != 'file://' || !getDolGlobalString('MAIN_ALLOW_LINK_STARTING_WITH_FILE'))) {
126 $link = 'http://'.$link;
127 }
128
129 // Parse $newUrl
130 $newUrlArray = parse_url($link);
131
132 // Allow external links to svg ?
133 if (!getDolGlobalString('MAIN_ALLOW_SVG_FILES_AS_EXTERNAL_LINKS')) {
134 if (!empty($newUrlArray['path']) && preg_match('/\.svg$/i', $newUrlArray['path'])) {
135 $error++;
136 $langs->load("errors");
137 setEventMessages($langs->trans('ErrorSVGFilesNotAllowedAsLinksWithout', 'MAIN_ALLOW_SVG_FILES_AS_EXTERNAL_LINKS'), null, 'errors');
138 }
139 }
140 // Check URL is external (must refuse local link by default)
141 if (!getDolGlobalString('MAIN_ALLOW_LOCAL_LINKS_AS_EXTERNAL_LINKS')) {
142 // Test $newUrlAray['host'] to check link is external using isIPAllowed() and if not refuse the local link
143 // TODO
144 }
145
146 if (!$error) {
147 dol_add_file_process($upload_dir, 0, 1, 'userfile', '', $link, '', 0);
148 }
149 }
150}
151
152// Delete file/link
153if ($action == 'confirm_deletefile' && $confirm == 'yes' && !empty($permissiontoadd)) {
154 $urlfile = GETPOST('urlfile', 'alpha', 0, null, null, 1);
155 if (GETPOST('section', 'alpha')) {
156 // For a delete from the ECM module, upload_dir is ECM root dir and urlfile contains relative path from upload_dir
157 $file = $upload_dir.(preg_match('/\/$/', $upload_dir) ? '' : '/').$urlfile;
158 } else { // For a delete from the file manager into another module, or from documents pages, upload_dir contains already path to file from module dir, so we clean path into urlfile.
159 $urlfile = basename($urlfile);
160 $file = $upload_dir.(preg_match('/\/$/', $upload_dir) ? '' : '/').$urlfile;
161 if (!empty($upload_dirold)) {
162 $fileold = $upload_dirold."/".$urlfile;
163 }
164 }
165 $linkid = GETPOSTINT('linkid');
166 if ($urlfile) {
167 // delete of a file
168 $dir = dirname($file).'/'; // Path to the folder containing the original image
169 $dirthumb = $dir.'/thumbs/'; // Path to the folder containing the thumbnail (if file is an image)
170
171 $ret = dol_delete_file($file, 1, 0, 0, (is_object($object) ? $object : null));
172 if (!empty($fileold)) {
173 dol_delete_file($fileold, 1, 0, 0, (is_object($object) ? $object : null)); // Delete file using old path
174 }
175
176 if ($ret) {
177 // If it exists, remove thumb.
178 $regs = array();
179 if (preg_match('/(\.jpg|\.jpeg|\.bmp|\.gif|\.png|\.tiff|\.webp|\.xpm|\.xbm|\.avif)$/i', $file, $regs)) {
180 $photo_vignette = basename(preg_replace('/'.$regs[0].'/i', '', $file).'_small'.$regs[0]);
181 if (file_exists(dol_osencode($dirthumb.$photo_vignette))) {
182 dol_delete_file($dirthumb.$photo_vignette);
183 }
184
185 $photo_vignette = basename(preg_replace('/'.$regs[0].'/i', '', $file).'_mini'.$regs[0]);
186 if (file_exists(dol_osencode($dirthumb.$photo_vignette))) {
187 dol_delete_file($dirthumb.$photo_vignette);
188 }
189 }
190 setEventMessages($langs->trans("FileWasRemoved", $urlfile), null, 'mesgs');
191 } else {
192 setEventMessages($langs->trans("ErrorFailToDeleteFile", $urlfile), null, 'errors');
193 }
194 } elseif ($linkid) { // delete of external link
195 require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php';
196 $link = new Link($db);
197 $link->fetch($linkid);
198 // Verify the link belongs to the current object to prevent IDOR
199 if (!is_object($object) || $link->objecttype != $object->element || $link->objectid != $object->id) {
201 }
202 $res = $link->delete($user);
203
204 $langs->load('link');
205 if ($res > 0) {
206 setEventMessages($langs->trans("LinkRemoved", $link->label), null, 'mesgs');
207 } else {
208 if (count($link->errors)) {
209 setEventMessages('', $link->errors, 'errors');
210 } else {
211 setEventMessages($langs->trans("ErrorFailedToDeleteLink", $link->label), null, 'errors');
212 }
213 }
214 }
215
216 if (is_object($object) && $object->id > 0) {
217 if (!empty($backtopage)) {
218 header('Location: '.$backtopage);
219 exit;
220 } else {
221 $tmpurl = $_SERVER["PHP_SELF"].'?id='.$object->id.(GETPOST('section_dir', 'alpha') ? '&section_dir='.urlencode(GETPOST('section_dir', 'alpha')) : '').(!empty($withproject) ? '&withproject=1' : '');
222 header('Location: '.$tmpurl);
223 exit;
224 }
225 }
226} elseif ($action == 'confirm_updateline' && GETPOST('save', 'alpha') && GETPOST('link', 'alpha') && !empty($permissiontoadd)) {
227 require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php';
228
229 $link = new Link($db);
230 $f = $link->fetch(GETPOSTINT('linkid'));
231 if ($f) {
232 // Verify the link belongs to the current object to prevent IDOR
233 if (!is_object($object) || $link->objecttype != $object->element || $link->objectid != $object->id) {
235 }
236 $link->url = GETPOST('link', 'alpha');
237 if (substr($link->url, 0, 7) != 'http://'
238 && substr($link->url, 0, 8) != 'https://'
239 && substr($link->url, 0, 7) != 'davs://'
240 && (substr($link->url, 0, 7) != 'file://' || !getDolGlobalString('MAIN_ALLOW_LINK_STARTING_WITH_FILE'))) {
241 $link->url = 'http://'.$link->url;
242 }
243 $link->label = GETPOST('label', 'alphanohtml');
244
245 $shareenabled = GETPOST('shareenabled', 'alpha');
246 if ($shareenabled) {
247 require_once DOL_DOCUMENT_ROOT.'/core/lib/security2.lib.php';
248 $link->share = getRandomPassword(true);
249 } else {
250 $link->share = '';
251 }
252 $res = $link->update($user);
253 if (!$res) {
254 setEventMessages($langs->trans("ErrorFailedToUpdateLink", $link->label), null, 'mesgs');
255 }
256 } else {
257 //error fetching
258 }
259} elseif ($action == 'renamefile' && GETPOST('renamefilesave', 'alpha') && !empty($permissiontoadd)) {
260 // For documents pages, upload_dir contains already the path to the file from module dir
261 if (!empty($upload_dir)) {
262 $filenamefrom = dol_sanitizeFileName(GETPOST('renamefilefrom', 'alpha'), '_', 0); // Do not remove accents
263 $filenameto = dol_sanitizeFileName(GETPOST('renamefileto', 'alpha'), '_', 0); // Do not remove accents
264
265 // We apply dol_string_nohtmltag also to clean file names (this remove duplicate spaces) because
266 // this function is also applied when we upload and when we make try to download file (by the GETPOST(filename, 'alphanohtml') call).
267 $filenameto = dol_string_nohtmltag($filenameto);
268 if (preg_match('/__.*__/', $filenameto)) {
269 $error++;
270 setEventMessages($langs->trans('ErrorWrongFileName'), null, 'errors');
271 }
272
273 // Check that filename is not the one of a reserved allowed CLI command
274 if (empty($error)) {
275 global $dolibarr_main_restrict_os_commands;
276 if (!empty($dolibarr_main_restrict_os_commands)) {
277 $arrayofallowedcommand = explode(',', $dolibarr_main_restrict_os_commands);
278 $arrayofallowedcommand = array_map('trim', $arrayofallowedcommand);
279 if (in_array(basename($filenameto), $arrayofallowedcommand)) {
280 $error++;
281 $langs->load("errors"); // key must be loaded because we can't rely on loading during output, we need var substitution to be done now.
282 setEventMessages($langs->trans("ErrorFilenameReserved", basename($filenameto)), null, 'errors');
283 }
284 }
285 }
286
287 if (empty($error) && $filenamefrom != $filenameto) {
288 // For backward compatibility, the file to rename may be stored into an old path (see PRODUCT_USE_OLD_PATH_FOR_PHOTO).
289 // Upload and delete actions already fall back on $upload_dirold, so the rename action must do the same.
290 $dirforfile = $upload_dir;
291 if (!empty($upload_dirold) && !dol_is_file($upload_dir.'/'.$filenamefrom) && dol_is_file($upload_dirold.'/'.$filenamefrom)) {
292 $dirforfile = $upload_dirold;
293 }
294
295 // Security:
296 // Disallow file with some extensions. We rename them.
297 // Because if we put the documents directory into a directory inside web root (very bad), this allows to execute on demand arbitrary code.
298 if (isAFileWithExecutableContent($filenameto) && !getDolGlobalString('MAIN_DOCUMENT_IS_OUTSIDE_WEBROOT_SO_NOEXE_NOT_REQUIRED')) {
299 // $dirforfile ends with a slash, so be must be sure the medias dir to compare to ends with slash too.
300 $publicmediasdirwithslash = $conf->medias->multidir_output[$conf->entity];
301 if (!preg_match('/\/$/', $publicmediasdirwithslash)) {
302 $publicmediasdirwithslash .= '/';
303 }
304
305 if (strpos($dirforfile, $publicmediasdirwithslash) !== 0) { // We never add .noexe on files into media directory
306 $filenameto .= '.noexe';
307 }
308 }
309
310 if ($filenamefrom && $filenameto) {
311 $srcpath = $dirforfile.'/'.$filenamefrom;
312 $destpath = $dirforfile.'/'.$filenameto;
313 /* disabled. Too many bugs. All files of an object must remain into directory of object. link with event should be done in llx_ecm_files with column agenda_id.
314 if ($modulepart == "ticket" && !dol_is_file($srcpath)) {
315 $srcbis = $conf->agenda->dir_output.'/'.GETPOST('section_dir').$filenamefrom;
316 if (dol_is_file($srcbis)) {
317 $srcpath = $srcbis;
318 $destpath = $conf->agenda->dir_output.'/'.GETPOST('section_dir').$filenameto;
319 }
320 }*/
321
322 $reshook = $hookmanager->initHooks(array('actionlinkedfiles'));
323 $parameters = array('filenamefrom' => $filenamefrom, 'filenameto' => $filenameto, 'upload_dir' => $dirforfile);
324 $reshook = $hookmanager->executeHooks('renameUploadedFile', $parameters, $object);
325
326 if (empty($reshook)) {
327 if (preg_match('/^\./', $filenameto)) {
328 $langs->load("errors"); // lang must be loaded because we can't rely on loading during output, we need var substitution to be done now.
329 setEventMessages($langs->trans("ErrorFilenameCantStartWithDot", $filenameto), null, 'errors');
330 } elseif (!file_exists($destpath)) {
331 $result = dol_move($srcpath, $destpath, '0', 1, 0, 1, [], $object->entity ?? $conf->entity);
332 if ($result) {
333 // Define if we have to generate thumbs or not
334 $generatethumbs = 1;
335 // When we rename a file from the file manager in ecm, we must not regenerate thumbs (not a problem, we do pass here)
336 // When we rename a file from the website module, we must not regenerate thumbs (module = medias in such a case)
337 // but when we rename from a tab "Documents", we must regenerate thumbs
338 if (GETPOST('modulepart', 'aZ09') == 'medias') {
339 $generatethumbs = 0;
340 }
341
342 if ($generatethumbs) {
343 if ($object->id > 0) {
344 // Create thumbs for the new file
345 $object->addThumbs($destpath);
346
347 // Delete thumb files with old name
348 $object->delThumbs($srcpath);
349 }
350 }
351
352 setEventMessages($langs->trans("FileRenamed"), null);
353 } else {
354 $langs->load("errors"); // lang must be loaded because we can't rely on loading during output, we need var substitution to be done now.
355 setEventMessages($langs->trans("ErrorFailToRenameFile", $filenamefrom, $filenameto), null, 'errors');
356 }
357 } else {
358 $langs->load("errors"); // lang must be loaded because we can't rely on loading during output, we need var substitution to be done now.
359 setEventMessages($langs->trans("ErrorDestinationAlreadyExists", $filenameto), null, 'errors');
360 }
361 }
362 }
363 }
364 }
365
366 // Update properties in ECM table
367 if (GETPOSTINT('ecmfileid') > 0) {
368 $shareenabled = GETPOST('shareenabled', 'alpha');
369
370 include_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmfiles.class.php';
371 $ecmfile = new EcmFiles($db);
372 $result = $ecmfile->fetch(GETPOSTINT('ecmfileid'));
373 if ($result > 0) {
374 if ($shareenabled) {
375 if (empty($ecmfile->share)) {
376 require_once DOL_DOCUMENT_ROOT.'/core/lib/security2.lib.php';
377 $ecmfile->share = getRandomPassword(true);
378 }
379 } else {
380 $ecmfile->share = '';
381 }
382 $result = $ecmfile->update($user);
383 if ($result < 0) {
384 setEventMessages($ecmfile->error, $ecmfile->errors, 'warnings');
385 }
386 }
387 }
388}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
Class to manage ECM files.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
dol_move($srcfile, $destfile, $newmask='0', $overwriteifexists=1, $testvirus=0, $indexdatabase=1, $moreinfo=array(), $entity=null)
Move a file into another name.
dol_add_file_process($upload_dir, $allowoverwrite=0, $updatesessionordb=0, $keyforsourcefile='addedfile', $savingdocmask='', $link=null, $trackid='', $generatethumbs=1, $object=null, $forceFullTextIndexation='', $mode=0)
Get and save an upload file (for example after submitting a new file in a mail form).
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_is_file($pathoffile)
Return if path is a file.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0, $nodefault=0)
Return value of a param into GET or POST supervariable.
GETPOSTINT($paramname, $method=0, $nodefault=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
isAFileWithExecutableContent($filename)
Return if a file can contains executable content.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getRandomPassword($generic=false, $replaceambiguouschars=null, $length=32)
Return a generated password using default module.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.