dolibarr 21.0.0-beta
migrate_picture_path.php
Go to the documentation of this file.
1#!/usr/bin/env php
2<?php
3/*
4 * Copyright (C) 2007-2016 Laurent Destailleur <eldy@users.sourceforge.net>
5 * Copyright (C) 2015 Jean Heimburger <http://tiaris.eu>
6 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
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 */
21
28if (!defined('NOSESSION')) {
29 define('NOSESSION', '1');
30}
31
32$sapi_type = php_sapi_name();
33$script_file = basename(__FILE__);
34$path = __DIR__.'/';
35
36// Test if batch mode
37if (substr($sapi_type, 0, 3) == 'cgi') {
38 echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
39 exit(1);
40}
41
42@set_time_limit(0); // No timeout for this script
43define('EVEN_IF_ONLY_LOGIN_ALLOWED', 1); // Set this define to 0 if you want to lock your script when dolibarr setup is "locked to admin user only".
44
45// Include and load Dolibarr environment variables
46require_once $path."../../htdocs/master.inc.php";
47require_once DOL_DOCUMENT_ROOT.'/core/lib/functionscli.lib.php';
48require_once DOL_DOCUMENT_ROOT."/user/class/user.class.php";
49require_once DOL_DOCUMENT_ROOT."/core/lib/files.lib.php";
50// After this $db, $mysoc, $langs, $conf and $hookmanager are defined (Opened $db handler to database will be closed at end of file).
51// $user is created but empty.
58// $langs->setDefaultLang('en_US'); // To change default language of $langs
59$langs->load("main"); // To load language file for default language
60
61// Global variables
62$version = DOL_VERSION;
63$error = 0;
64$forcecommit = 0;
65
66$hookmanager->initHooks(array('cli'));
67
68
69/*
70 * Main
71 */
72
73print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." *****\n";
74dol_syslog($script_file." launched with arg ".join(',', $argv));
75
76if (!isset($argv[1]) || $argv[1] != 'user') {
77 print "Usage: $script_file user\n";
78 exit(1);
79}
80
81print '--- start'."\n";
82
83// Case to migrate products path
84if ($argv[1] == 'user') {
85 $u = new User($db);
86
87 $sql = "SELECT rowid as uid from ".MAIN_DB_PREFIX."user"; // Get list of all products
88 $resql = $db->query($sql);
89 if ($resql) {
90 while ($obj = $db->fetch_object($resql)) {
91 $u->fetch($obj->uid);
92 print " migrating user id=".$u->id." ref=".$u->ref."\n";
94 }
95 } else {
96 print "\n sql error ".$sql;
97 exit();
98 }
99}
100
101$db->close(); // Close $db database opened handler
102
103exit($error);
104
105
113{
114 global $conf;
115
116 // Les fichiers joints des users sont toujours sur l'entité 1
117 $dir = $conf->user->dir_output;
118 $origin = $dir.'/'.get_exdir($u->id, 2, 0, 0, $u, 'user');
119 $destin = $dir.'/'.$u->id;
120
121 $error = 0;
122
123 $origin_osencoded = dol_osencode($origin);
124 $destin_osencoded = dol_osencode($destin);
125 dol_mkdir($destin);
126
127 if (dol_is_dir($origin)) {
128 $handle = opendir($origin_osencoded);
129 if (is_resource($handle)) {
130 while (($file = readdir($handle)) !== false) {
131 if ($file != '.' && $file != '..' && is_dir($origin_osencoded.'/'.$file)) {
132 $thumbs = opendir($origin_osencoded.'/'.$file);
133 if (is_resource($thumbs)) {
134 dol_mkdir($destin.'/'.$file);
135 while (($thumb = readdir($thumbs)) !== false) {
136 dol_move($origin.'/'.$file.'/'.$thumb, $destin.'/'.$file.'/'.$thumb);
137 }
138 // dol_delete_dir($origin.'/'.$file);
139 }
140 } else {
141 if (dol_is_file($origin.'/'.$file)) {
142 dol_move($origin.'/'.$file, $destin.'/'.$file);
143 }
144 }
145 }
146 }
147 }
148}
Class to manage Dolibarr users.
dol_move($srcfile, $destfile, $newmask='0', $overwriteifexists=1, $testvirus=0, $indexdatabase=1, $moreinfo=array())
Move a file into another name.
dol_is_file($pathoffile)
Return if path is a file.
dol_is_dir($folder)
Test if filename is a directory.
dol_getmypid()
Return getmypid() or random PID when function is disabled Some web hosts disable this php function fo...
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
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)
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
migrate_user_filespath($u)
Migrate file from old path to new one for user $u.