dolibarr 20.0.0
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 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27if (!defined('NOSESSION')) {
28 define('NOSESSION', '1');
29}
30
31$sapi_type = php_sapi_name();
32$script_file = basename(__FILE__);
33$path = __DIR__.'/';
34
35// Test if batch mode
36if (substr($sapi_type, 0, 3) == 'cgi') {
37 echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
38 exit(1);
39}
40
41@set_time_limit(0); // No timeout for this script
42define('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".
43
44// Include and load Dolibarr environment variables
45require_once $path."../../htdocs/master.inc.php";
46require_once DOL_DOCUMENT_ROOT."/product/class/product.class.php";
47require_once DOL_DOCUMENT_ROOT."/core/lib/files.lib.php";
48// After this $db, $mysoc, $langs, $conf and $hookmanager are defined (Opened $db handler to database will be closed at end of file).
49// $user is created but empty.
50
51// $langs->setDefaultLang('en_US'); // To change default language of $langs
52$langs->load("main"); // To load language file for default language
53
54// Global variables
55$version = DOL_VERSION;
56$error = 0;
57$forcecommit = 0;
58
59$hookmanager->initHooks(array('cli'));
60
61
62/*
63 * Main
64 */
65
66print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." *****\n";
67dol_syslog($script_file." launched with arg ".join(',', $argv));
68
69if (!isset($argv[1]) || $argv[1] != 'product') {
70 print "Usage: $script_file product\n";
71 exit(1);
72}
73
74print '--- start'."\n";
75
76// Case to migrate products path
77if ($argv[1] == 'product') {
78 $product = new Product($db);
79
80 $sql = "SELECT rowid as pid from ".MAIN_DB_PREFIX."product"; // Get list of all products
81 $resql = $db->query($sql);
82 if ($resql) {
83 while ($obj = $db->fetch_object($resql)) {
84 $product->fetch($obj->pid);
85 print " migrating product id=".$product->id." ref=".$product->ref."\n";
87 }
88 } else {
89 print "\n sql error ".$sql;
90 exit();
91 }
92}
93
94$db->close(); // Close $db database opened handler
95
96exit($error);
97
105{
106 global $conf;
107
108 $dir = $conf->product->multidir_output[$product->entity];
109 $conf->global->PRODUCT_USE_OLD_PATH_FOR_PHOTO = 1;
110 $origin = $dir.'/'.get_exdir($product->id, 2, 0, 0, $product, 'product').$product->id."/photos";
111 $destin = $dir.'/'.dol_sanitizeFileName($product->ref);
112
113 $error = 0;
114
115 $origin_osencoded = dol_osencode($origin);
116 $destin_osencoded = dol_osencode($destin);
117 dol_mkdir($destin);
118
119 if (dol_is_dir($origin)) {
120 $handle = opendir($origin_osencoded);
121 if (is_resource($handle)) {
122 while (($file = readdir($handle)) !== false) {
123 if ($file != '.' && $file != '..' && is_dir($origin_osencoded.'/'.$file)) {
124 $thumbs = opendir($origin_osencoded.'/'.$file);
125 if (is_resource($thumbs)) {
126 dol_mkdir($destin.'/'.$file);
127 while (($thumb = readdir($thumbs)) !== false) {
128 dol_move($origin.'/'.$file.'/'.$thumb, $destin.'/'.$file.'/'.$thumb);
129 }
130 // dol_delete_dir($origin.'/'.$file);
131 }
132 } else {
133 if (dol_is_file($origin.'/'.$file)) {
134 dol_move($origin.'/'.$file, $destin.'/'.$file);
135 }
136 }
137 }
138 }
139 }
140}
Class to manage products or services.
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.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
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)
migrate_product_photospath($product)
Migrate file from old path to new one for product $product.