28if (!defined(
'NOTOKENRENEWAL')) {
29 define(
'NOTOKENRENEWAL',
'1');
31if (!defined(
'NOREQUIREMENU')) {
32 define(
'NOREQUIREMENU',
'1');
34if (!defined(
'NOREQUIREHTML')) {
35 define(
'NOREQUIREHTML',
'1');
37if (!defined(
'NOREQUIREAJAX')) {
38 define(
'NOREQUIREAJAX',
'1');
40if (!defined(
'NOLOGIN')) {
41 define(
'NOLOGIN',
'1');
43if (!defined(
'NOIPCHECK')) {
44 define(
'NOIPCHECK',
'1');
48if (!defined(
'USESUFFIXINLOG')) {
49 define(
'USESUFFIXINLOG',
'_cron');
55$entity = (!empty($_GET[
'entity']) ? (int) $_GET[
'entity'] : (!empty($_POST[
'entity']) ? (int) $_POST[
'entity'] : 1));
56if (is_numeric($entity)) {
57 define(
"DOLENTITY", $entity);
61if (php_sapi_name() ==
"cli") {
62 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";
68require
'../../main.inc.php';
76$langs->loadLangs(array(
"admin",
"cron",
"dict"));
79if (empty($conf->cron->enabled)) {
93$key =
GETPOST(
'securitykey',
'alpha');
95 echo
'Securitykey is required. Check setup of cron jobs module.';
99 echo
'Securitykey is wrong.';
103$userlogin =
GETPOST(
'userlogin',
'alpha');
104if (empty($userlogin)) {
105 echo
'Userlogin is required.';
108require_once DOL_DOCUMENT_ROOT.
'/user/class/user.class.php';
109$user =
new User($db);
110$result = $user->fetch(0, $userlogin);
112 echo
"User Error:".$user->error;
113 dol_syslog(
"cron_run_jobs.php:: User Error:".$user->error, LOG_ERR);
116 if (empty($user->id)) {
117 echo
" User login:".$userlogin.
" do not exists";
118 dol_syslog(
" User login:".$userlogin.
" do not exists", LOG_ERR);
132 if (!is_numeric($id)) {
133 echo
"Error: Bad value for parameter job id";
134 dol_syslog(
"cron_run_jobs.php Bad value for parameter job id", LOG_WARNING);
137 $filter[
't.rowid'] =
$id;
140$result =
$object->fetchAll(
'ASC,ASC,ASC',
't.priority,t.entity,t.rowid', 0, 0, 1, $filter, 0);
142 echo
"Error: ".$object->error;
150$nbofjobs = count(
$object->lines);
151$nbofjobslaunchedok = 0;
152$nbofjobslaunchedko = 0;
158 foreach (
$object->lines as $line) {
159 dol_syslog(
"cron_run_jobs.php cronjobid: ".$line->id.
" priority=".$line->priority.
" entity=".$line->entity.
" label=".$line->label, LOG_DEBUG);
160 echo
"cron_run_jobs.php cronjobid: ".$line->id.
" priority=".$line->priority.
" entity=".$line->entity.
" label=".$line->label;
163 if ($line->entity != $conf->entity) {
164 dol_syslog(
"cron_run_jobs.php we work on another entity so we reload user and conf", LOG_DEBUG);
165 echo
" -> we change entity so we reload user and conf";
167 $conf->entity = (empty($line->entity) ? 1 : $line->entity);
168 $conf->setValues($db);
171 if ($conf->entity != $user->entity && $user->entity != 0) {
172 $result = $user->fetch(0, $userlogin,
'', 0, $conf->entity);
174 echo
"\nUser Error: ".$user->error.
"\n";
175 dol_syslog(
"cron_run_jobs.php:: User Error:".$user->error, LOG_ERR);
179 echo
"\nUser login: ".$userlogin.
" does not exists for entity ".$conf->entity.
"\n";
180 dol_syslog(
"User login:".$userlogin.
" does not exists", LOG_ERR);
193 $datenextrunok = (empty($line->datenextrun) || (int) $line->datenextrun < $now);
194 $datestartok = (empty($line->datestart) || $line->datestart <= $now);
195 $dateendok = (empty($line->dateend) || $line->dateend >= $now);
196 if ($datenextrunok && $datestartok && $dateendok) {
202 $result = $cronjob->fetch($line->id);
204 echo
"Error cronjobid: ".$line->id.
" cronjob->fetch: ".$cronjob->error.
"\n";
205 echo
"Failed to fetch job ".$line->id.
"\n";
206 dol_syslog(
"cron_run_jobs.php::fetch Error".$cronjob->error, LOG_ERR);
210 $result = $cronjob->run_jobs($userlogin);
212 echo
"Error cronjobid: ".$line->id.
" cronjob->run_job: ".$cronjob->error.
"\n";
213 echo
"At least one job failed. Go on menu Home-Setup-Admin tools to see result for each job.\n";
214 echo
"You can also enable module Log if not yet enabled, run again and take a look into dolibarr.log file\n";
215 dol_syslog(
"cron_run_jobs.php::run_jobs Error".$cronjob->error, LOG_ERR);
216 $nbofjobslaunchedko++;
217 $resultstring =
'KO';
219 $nbofjobslaunchedok++;
220 $resultstring =
'OK';
223 echo
"Result of run_jobs = ".$resultstring.
" result = ".$result;
226 $result = $cronjob->reprogram_jobs($userlogin, $now);
228 echo
"Error cronjobid: ".$line->id.
" cronjob->reprogram_job: ".$cronjob->error.
"\n";
229 echo
"Enable module Log if not yet enabled, run again and take a look into dolibarr.log file\n";
230 dol_syslog(
"cron_run_jobs.php::reprogram_jobs Error".$cronjob->error, LOG_ERR);
234 echo
"Job re-scheduled\n";
236 echo
" - not qualified (datenextrunok=".($datenextrunok ?: 0).
", datestartok=".($datestartok ?: 0).
", dateendok=".($dateendok ?: 0).
")\n";
244 echo
"Result: ".($nbofjobs).
" jobs - ".($nbofjobslaunchedok + $nbofjobslaunchedko).
" launched = ".$nbofjobslaunchedok.
" OK + ".$nbofjobslaunchedko.
" KO";
246 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.
dol_clone($object, $native=0)
Create a clone of instance of object (new instance with same value for each properties) With native =...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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.
httponly_accessforbidden($message='1', $http_response_code=403, $stringalreadysanitized=0)
Show a message to say access is forbidden and stop program.