dolibarr 21.0.0-alpha
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
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.'/core/lib/functionscli.lib.php';
46require_once DOL_DOCUMENT_ROOT."/product/class/product.class.php";
47require_once DOL_DOCUMENT_ROOT."/core/lib/files.lib.php";
48require_once DOL_DOCUMENT_ROOT."/core/lib/images.lib.php";
49// After this $db, $mysoc, $langs, $conf and $hookmanager are defined (Opened $db handler to database will be closed at end of file).
50// $user is created but empty.
51
52// $langs->setDefaultLang('en_US'); // To change default language of $langs
53$langs->load("main"); // To load language file for default language
54
55// Global variables
56$version = DOL_VERSION;
57$error = 0;
58$forcecommit = 0;
59
60$hookmanager->initHooks(array('cli'));
61
62
63/*
64 * Main
65 */
66
67print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." - dir=".DOL_DATA_ROOT." *****\n";
68dol_syslog($script_file." launched with arg ".join(',', $argv));
69
70if (empty($argv[1])) {
71 print "Usage: $script_file subdirtoscan (test|confirm)\n";
72 print "Example: $script_file propale test\n";
73 exit(1);
74}
75
76print '--- start'."\n";
77
78$dir = DOL_DATA_ROOT;
79$subdir = $argv[1];
80if (empty($dir) || empty($subdir)) {
81 dol_print_error(null, 'dir not defined');
82 exit(1);
83}
84if (!dol_is_dir($dir.'/'.$subdir)) {
85 print 'Directory '.$dir.'/'.$subdir.' not found.'."\n";
86 exit(2);
87}
88
89print 'Scan directory '.$dir.'/'.$subdir."\n";
90
91$filearray = dol_dir_list($dir.'/'.$subdir, "directories", 0, '', 'temp$');
92
93$nbok = $nbko = 0;
94
95$tmpobject = null;
96if ($subdir == 'propale' || $subdir == 'proposal') {
97 if (isModEnabled('propal')) {
98 require_once DOL_DOCUMENT_ROOT."/comm/propal/class/propal.class.php";
99 $tmpobject = new Propal($db);
100 } else {
101 print 'Error, module not enabled'."\n";
102 }
103} elseif ($subdir == 'commande' || $subdir == 'order') {
104 if (isModEnabled('commande')) {
105 require_once DOL_DOCUMENT_ROOT."/commande/class/commande.class.php";
106 $tmpobject = new Commande($db);
107 } else {
108 print 'Error, module not enabled'."\n";
109 }
110} elseif ($subdir == 'facture' || $subdir == 'invoice') {
111 if (isModEnabled('facture')) {
112 require_once DOL_DOCUMENT_ROOT."/compta/facture/class/facture.class.php";
113 $tmpobject = new Facture($db);
114 } else {
115 print 'Error, module not enabled'."\n";
116 }
117} else {
118 print 'Dir '.$subdir.' not yet supported'."\n";
119}
120
121if ($tmpobject) {
122 foreach ($filearray as $keyf => $valf) {
123 $ref = basename($valf['name']);
124 print 'Process document for dir = '.$subdir.', ref '.$ref."\n";
125
126 $ret1 = $tmpobject->fetch(0, $ref);
127 $ret2 = $tmpobject->fetch_thirdparty();
128
129 if ($ret1 > 0) {
130 //$tmpobject->build
131 //$tmpobject->setDocModel($user, GETPOST('model', 'alpha'));
132 $outputlangs = $langs;
133 $newlang = '';
134
135 if (!empty($newlang)) {
136 $outputlangs = new Translate("", $conf);
137 $outputlangs->setDefaultLang($newlang);
138 }
139
140 $hidedetails = 0;
141 $hidedesc = 0;
142 $hideref = 0;
143 $moreparams = null;
144
145 $result = 0;
146 if (!empty($argv[2]) && $argv[2] == 'confirm') {
147 $result = $tmpobject->generateDocument($tmpobject->model_pdf, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
148 }
149 if ($result < 0) {
150 $nbko++;
151 }
152 if ($result == 0) {
153 print 'File for ref '.$tmpobject->ref.' returned 0 during regeneration with template '.$tmpobject->model_pdf."\n";
154 $nbok++;
155 } else {
156 print 'File for ref '.$tmpobject->ref.' regenerated with template '.$tmpobject->model_pdf."\n";
157 $nbok++;
158 }
159 } else {
160 $nbko++;
161 }
162 }
163}
164
165print $nbok." objects processed\n";
166print $nbko." objects with errors\n";
167
168$db->close(); // Close $db database opened handler
169
170exit($error);
Class to manage customers orders.
Class to manage invoices.
Class to manage proposals.
Class to manage translations.
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.