dolibarr 20.0.0
regenerate_thumbs.php
Go to the documentation of this file.
1#!/usr/bin/env php
2<?php
3/* Copyright (C) 2007-2016 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2015 Jean Heimburger <http://tiaris.eu>
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
26if (!defined('NOSESSION')) {
27 define('NOSESSION', '1');
28}
29
30$sapi_type = php_sapi_name();
31$script_file = basename(__FILE__);
32$path = __DIR__.'/';
33
34// Test if batch mode
35if (substr($sapi_type, 0, 3) == 'cgi') {
36 echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
37 exit(1);
38}
39
40@set_time_limit(0); // No timeout for this script
41define('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".
42
43// Include and load Dolibarr environment variables
44require_once $path."../../htdocs/master.inc.php";
45require_once DOL_DOCUMENT_ROOT."/product/class/product.class.php";
46require_once DOL_DOCUMENT_ROOT."/core/lib/files.lib.php";
47require_once DOL_DOCUMENT_ROOT."/core/lib/images.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 * Main
63 */
64
65print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." *****\n";
66dol_syslog($script_file." launched with arg ".join(',', $argv));
67
68if (empty($argv[1])) {
69 print "Usage: $script_file subdirtoscan\n";
70 print "Example: $script_file produit\n";
71 exit(1);
72}
73
74print '--- start'."\n";
75
76$dir = DOL_DATA_ROOT;
77$subdir = $argv[1];
78if (empty($dir) || empty($subdir)) {
79 dol_print_error(null, 'dir not defined');
80 exit(1);
81}
82if (!dol_is_dir($dir.'/'.$subdir)) {
83 print 'Directory '.$dir.'/'.$subdir.' not found.'."\n";
84 exit(2);
85}
86
87$filearray = dol_dir_list($dir.'/'.$subdir, "directories", 0, '', 'temp$');
88
89global $maxwidthsmall, $maxheightsmall, $maxwidthmini, $maxheightmini;
90
91foreach ($filearray as $keyf => $valf) {
92 $ref = basename($valf['name']);
93 $filearrayimg = dol_dir_list($valf['fullname'], "files", 0, '(\.gif|\.png|\.jpg|\.jpeg|\.bmp|\.webp)$', '(\.meta|_preview.*\.png)$');
94 foreach ($filearrayimg as $keyi => $vali) {
95 print 'Process image for ref '.$ref.' : '.$vali['name']."\n";
96
97 // Create small thumbs for image
98 // Used on logon for example
99 $imgThumbSmall = vignette($vali['fullname'], $maxwidthsmall, $maxheightsmall, '_small', 50, "thumbs");
100 if (preg_match('/Error/', $imgThumbSmall)) {
101 print $imgThumbSmall."\n";
102 }
103
104 // Create mini thumbs for image (Ratio is near 16/9)
105 // Used on menu or for setup page for example
106 $imgThumbMini = vignette($vali['fullname'], $maxwidthmini, $maxheightmini, '_mini', 50, "thumbs");
107 if (preg_match('/Error/', $imgThumbMini)) {
108 print $imgThumbMini."\n";
109 }
110 }
111}
112
113$db->close(); // Close $db database opened handler
114
115exit($error);
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:63
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_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
vignette($file, $maxWidth=160, $maxHeight=120, $extName='_small', $quality=50, $outdir='thumbs', $targetformat=0)
Create a thumbnail from an image file (Supported extensions are gif, jpg, png and bmp).