29if (!defined(
'NOTOKENRENEWAL')) {
30 define(
'NOTOKENRENEWAL',
'1');
32if (!defined(
'NOREQUIREMENU')) {
33 define(
'NOREQUIREMENU',
'1');
35if (!defined(
'NOREQUIREHTML')) {
36 define(
'NOREQUIREHTML',
'1');
38if (!defined(
'NOREQUIREAJAX')) {
39 define(
'NOREQUIREAJAX',
'1');
41if (!defined(
'NOLOGIN')) {
42 define(
'NOLOGIN',
'1');
44if (!defined(
'NOIPCHECK')) {
45 define(
'NOIPCHECK',
'1');
49if (!defined(
'USESUFFIXINLOG')) {
50 define(
'USESUFFIXINLOG',
'_cron');
56$entity = (!empty($_GET[
'entity']) ? (int) $_GET[
'entity'] : (!empty($_POST[
'entity']) ? (int) $_POST[
'entity'] : 1));
57if (is_numeric($entity)) {
58 define(
"DOLENTITY", $entity);
62if (php_sapi_name() ==
"cli") {
63 echo
"Error: This page can't be used as a CLI script. For the CLI version of script, launch cron_run_job.php available into scripts/cron/ directory.\n";
69require
'../../main.inc.php';
78global $langs,
$conf, $db;
81$langs->loadLangs(array(
"admin",
"cron",
"dict"));
84if (empty(
$conf->cron->enabled)) {
98$key =
GETPOST(
'securitykey',
'alpha');
100 echo
'Securitykey is required. Check setup of cron jobs module.';
104 echo
'Securitykey is wrong.';
108$userlogin =
GETPOST(
'userlogin',
'alpha');
109if (empty($userlogin)) {
110 echo
'Userlogin is required.';
113require_once DOL_DOCUMENT_ROOT.
'/user/class/user.class.php';
114$user =
new User($db);
115$result = $user->fetch(0, $userlogin);
117 echo
"User Error:".$user->error;
118 dol_syslog(
"cron_run_jobs.php:: User Error:".$user->error, LOG_ERR);
121 if (empty($user->id)) {
122 echo
" User login:".$userlogin.
" do not exists";
123 dol_syslog(
" User login:".$userlogin.
" do not exists", LOG_ERR);
137 if (!is_numeric($id)) {
138 echo
"Error: Bad value for parameter job id";
139 dol_syslog(
"cron_run_jobs.php Bad value for parameter job id", LOG_WARNING);
142 $filter[
't.rowid'] =
$id;
145$result =
$object->fetchAll(
'ASC,ASC,ASC',
't.priority,t.entity,t.rowid', 0, 0, 1, $filter, 0);
147 echo
"Error: ".$object->error;
155$nbofjobs = count(
$object->lines);
156$nbofjobslaunchedok = 0;
157$nbofjobslaunchedko = 0;
163 foreach (
$object->lines as $line) {
164 dol_syslog(
"cron_run_jobs.php cronjobid: ".$line->id.
" priority=".$line->priority.
" entity=".$line->entity.
" label=".$line->label, LOG_DEBUG);
165 echo
"cron_run_jobs.php cronjobid: ".$line->id.
" priority=".$line->priority.
" entity=".$line->entity.
" label=".$line->label;
168 if ($line->entity !=
$conf->entity) {
169 dol_syslog(
"cron_run_jobs.php we work on another entity so we reload user and conf", LOG_DEBUG);
170 echo
" -> we change entity so we reload user and conf";
172 $conf->entity = (empty($line->entity) ? 1 : $line->entity);
173 $conf->setValues($db);
176 if (
$conf->entity != $user->entity && $user->entity != 0) {
177 $result = $user->fetch(0, $userlogin,
'', 0,
$conf->entity);
179 echo
"\nUser Error: ".$user->error.
"\n";
180 dol_syslog(
"cron_run_jobs.php:: User Error:".$user->error, LOG_ERR);
184 echo
"\nUser login: ".$userlogin.
" does not exists for entity ".
$conf->entity.
"\n";
185 dol_syslog(
"User login:".$userlogin.
" does not exists", LOG_ERR);
198 $datenextrunok = (empty($line->datenextrun) || (int) $line->datenextrun < $now);
199 $datestartok = (empty($line->datestart) || $line->datestart <= $now);
200 $dateendok = (empty($line->dateend) || $line->dateend >= $now);
201 if ($datenextrunok && $datestartok && $dateendok) {
207 $result = $cronjob->fetch($line->id);
209 echo
"Error cronjobid: ".$line->id.
" cronjob->fetch: ".$cronjob->error.
"\n";
210 echo
"Failed to fetch job ".$line->id.
"\n";
211 dol_syslog(
"cron_run_jobs.php::fetch Error".$cronjob->error, LOG_ERR);
215 $result = $cronjob->run_jobs($userlogin);
217 echo
"Error cronjobid: ".$line->id.
" cronjob->run_job: ".$cronjob->error.
"\n";
218 echo
"At least one job failed. Go on menu Home-Setup-Admin tools to see result for each job.\n";
219 echo
"You can also enable module Log if not yet enabled, run again and take a look into dolibarr.log file\n";
220 dol_syslog(
"cron_run_jobs.php::run_jobs Error".$cronjob->error, LOG_ERR);
221 $nbofjobslaunchedko++;
222 $resultstring =
'KO';
224 $nbofjobslaunchedok++;
225 $resultstring =
'OK';
228 echo
"Result of run_jobs = ".$resultstring.
" result = ".$result;
231 $result = $cronjob->reprogram_jobs($userlogin, $now);
233 echo
" - Error cronjobid: ".$line->id.
" cronjob->reprogram_job: ".$cronjob->error.
"\n";
234 echo
"Enable module Log if not yet enabled, run again and take a look into dolibarr.log file\n";
235 dol_syslog(
"cron_run_jobs.php::reprogram_jobs Error".$cronjob->error, LOG_ERR);
239 echo
" - Job re-scheduled\n";
241 echo
" - not qualified (datenextrunok=".($datenextrunok ?: 0).
", datestartok=".($datestartok ?: 0).
", dateendok=".($dateendok ?: 0).
")\n";
249 echo
"Result: ".($nbofjobs).
" jobs - ".($nbofjobslaunchedok + $nbofjobslaunchedko).
" launched = ".$nbofjobslaunchedok.
" OK + ".$nbofjobslaunchedko.
" KO";
251 echo
"Result: No active jobs found.";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Class to manage Dolibarr users.
verifCond($strToEvaluate, $onlysimplestring='1')
Verify if condition in string is ok or not.
dol_now($mode='auto')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_clone($object, $native=2)
Create a clone of instance of object (new instance with same value for each properties) With native =...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.