dolibarr  18.0.6
regenerate_docs.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 
26 if (!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
35 if (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
41 define('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
44 require_once $path."../../htdocs/master.inc.php";
45 require_once DOL_DOCUMENT_ROOT."/product/class/product.class.php";
46 require_once DOL_DOCUMENT_ROOT."/core/lib/files.lib.php";
47 require_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 print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." - dir=".DOL_DATA_ROOT." *****\n";
60 dol_syslog($script_file." launched with arg ".join(',', $argv));
61 
62 if (empty($argv[1])) {
63  print "Usage: $script_file subdirtoscan (test|confirm)\n";
64  print "Example: $script_file propale test\n";
65  exit(-1);
66 }
67 
68 print '--- start'."\n";
69 
70 $dir = DOL_DATA_ROOT;
71 $subdir = $argv[1];
72 if (empty($dir) || empty($subdir)) {
73  dol_print_error('', 'dir not defined');
74  exit(1);
75 }
76 if (!dol_is_dir($dir.'/'.$subdir)) {
77  print 'Directory '.$dir.'/'.$subdir.' not found.'."\n";
78  exit(2);
79 }
80 
81 print 'Scan directory '.$dir.'/'.$subdir."\n";
82 
83 $filearray = dol_dir_list($dir.'/'.$subdir, "directories", 0, '', 'temp$');
84 
85 $nbok = $nbko = 0;
86 
87 $tmpobject = null;
88 if ($subdir == 'propale' || $subdir == 'proposal') {
89  if (isModEnabled('propal')) {
90  require_once DOL_DOCUMENT_ROOT."/comm/propal/class/propal.class.php";
91  $tmpobject = new Propal($db);
92  } else {
93  print 'Error, module not enabled'."\n";
94  }
95 } elseif ($subdir == 'commande' || $subdir == 'order') {
96  if (isModEnabled('commande')) {
97  require_once DOL_DOCUMENT_ROOT."/commande/class/commande.class.php";
98  $tmpobject = new Commande($db);
99  } else {
100  print 'Error, module not enabled'."\n";
101  }
102 } elseif ($subdir == 'facture' || $subdir == 'invoice') {
103  if (isModEnabled('facture')) {
104  require_once DOL_DOCUMENT_ROOT."/compta/facture/class/facture.class.php";
105  $tmpobject = new Facture($db);
106  } else {
107  print 'Error, module not enabled'."\n";
108  }
109 } else {
110  print 'Dir '.$subdir.' not yet supported'."\n";
111 }
112 
113 if ($tmpobject) {
114  foreach ($filearray as $keyf => $valf) {
115  $ref = basename($valf['name']);
116  print 'Process document for dir = '.$subdir.', ref '.$ref."\n";
117 
118  $ret1 = $tmpobject->fetch(0, $ref);
119  $ret2 = $tmpobject->fetch_thirdparty();
120 
121  if ($ret1 > 0) {
122  //$tmpobject->build
123  //$tmpobject->setDocModel($user, GETPOST('model', 'alpha'));
124  $outputlangs = $langs;
125  $newlang = '';
126 
127  if (!empty($newlang)) {
128  $outputlangs = new Translate("", $conf);
129  $outputlangs->setDefaultLang($newlang);
130  }
131 
132  $hidedetails = 0;
133  $hidedesc = 0;
134  $hideref = 0;
135  $moreparams = null;
136 
137  $result = 0;
138  if (!empty($argv[2]) && $argv[2] == 'confirm') {
139  $result = $tmpobject->generateDocument($tmpobject->model_pdf, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
140  }
141  if ($result < 0) {
142  $nbko++;
143  } if ($result == 0) {
144  print 'File for ref '.$tmpobject->ref.' returned 0 during regeneration with template '.$tmpobject->model_pdf."\n";
145  $nbok++;
146  } else {
147  print 'File for ref '.$tmpobject->ref.' regenerated with template '.$tmpobject->model_pdf."\n";
148  $nbok++;
149  }
150  } else {
151  $nbko++;
152  }
153  }
154 }
155 
156 print $nbok." objects processed\n";
157 print $nbko." objects with errors\n";
158 
159 $db->close(); // Close $db database opened handler
160 
161 exit($error);
Class to manage customers orders.
Class to manage invoices.
Class to manage proposals.
Class to manage translations.
dol_dir_list($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:62
dol_is_dir($folder)
Test if filename is a directory.
Definition: files.lib.php:453
dol_getmypid()
Return getmypid() or random PID when function is disabled Some web hosts disable this php function fo...
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.