27if (!defined(
'NOTOKENRENEWAL')) {
28 define(
'NOTOKENRENEWAL',
'1');
30if (!defined(
'NOREQUIREMENU')) {
31 define(
'NOREQUIREMENU',
'1');
33if (!defined(
'NOREQUIREHTML')) {
34 define(
'NOREQUIREHTML',
'1');
36if (!defined(
'NOREQUIREAJAX')) {
37 define(
'NOREQUIREAJAX',
'1');
39if (!defined(
'NOLOGIN')) {
40 define(
'NOLOGIN',
'1');
42if (!defined(
'NOIPCHECK')) {
43 define(
'NOIPCHECK',
'1');
47if (!defined(
'USESUFFIXINLOG')) {
48 define(
'USESUFFIXINLOG',
'_cron');
53$entity = (!empty($_GET[
'entity']) ? (int) $_GET[
'entity'] : (!empty($_POST[
'entity']) ? (int) $_POST[
'entity'] : 1));
54if (is_numeric($entity)) {
55 define(
"DOLENTITY", $entity);
59if (php_sapi_name() ==
"cli") {
60 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";
66require
'../../main.inc.php';
74$langs->loadLangs(array(
"admin",
"cron",
"dict"));
77if (empty($conf->cron->enabled)) {
91$key =
GETPOST(
'securitykey',
'alpha');
93 echo
'Securitykey is required. Check setup of cron jobs module.';
97 echo
'Securitykey is wrong.';
101$userlogin =
GETPOST(
'userlogin',
'alpha');
102if (empty($userlogin)) {
103 echo
'Userlogin is required.';
106require_once DOL_DOCUMENT_ROOT.
'/user/class/user.class.php';
107$user =
new User($db);
108$result = $user->fetch(
'', $userlogin);
110 echo
"User Error:".$user->error;
111 dol_syslog(
"cron_run_jobs.php:: User Error:".$user->error, LOG_ERR);
114 if (empty($user->id)) {
115 echo
" User login:".$userlogin.
" do not exists";
116 dol_syslog(
" User login:".$userlogin.
" do not exists", LOG_ERR);
130 if (!is_numeric($id)) {
131 echo
"Error: Bad value for parameter job id";
132 dol_syslog(
"cron_run_jobs.php Bad value for parameter job id", LOG_WARNING);
135 $filter[
't.rowid'] = $id;
138$result = $object->fetchAll(
'ASC,ASC,ASC',
't.priority,t.entity,t.rowid', 0, 0, 1, $filter, 0);
140 echo
"Error: ".$object->error;
141 dol_syslog(
"cron_run_jobs.php fetch Error".$object->error, LOG_ERR);
148$nbofjobs = count($object->lines);
149$nbofjobslaunchedok = 0;
150$nbofjobslaunchedko = 0;
152if (is_array($object->lines) && (count($object->lines) > 0)) {
156 foreach ($object->lines as $line) {
157 dol_syslog(
"cron_run_jobs.php cronjobid: ".$line->id.
" priority=".$line->priority.
" entity=".$line->entity.
" label=".$line->label, LOG_DEBUG);
158 echo
"cron_run_jobs.php cronjobid: ".$line->id.
" priority=".$line->priority.
" entity=".$line->entity.
" label=".$line->label;
161 if ($line->entity != $conf->entity) {
162 dol_syslog(
"cron_run_jobs.php we work on another entity so we reload user and conf", LOG_DEBUG);
163 echo
" -> we change entity so we reload user and conf";
165 $conf->entity = (empty($line->entity) ? 1 : $line->entity);
166 $conf->setValues($db);
169 if ($conf->entity != $user->entity && $user->entity != 0) {
170 $result = $user->fetch(
'', $userlogin,
'', 0, $conf->entity);
172 echo
"\nUser Error: ".$user->error.
"\n";
173 dol_syslog(
"cron_run_jobs.php:: User Error:".$user->error, LOG_ERR);
177 echo
"\nUser login: ".$userlogin.
" does not exists for entity ".$conf->entity.
"\n";
178 dol_syslog(
"User login:".$userlogin.
" does not exists", LOG_ERR);
191 if (($line->datenextrun < $now) && (empty($line->datestart) || $line->datestart <= $now) && (empty($line->dateend) || $line->dateend >= $now)) {
197 $result = $cronjob->fetch($line->id);
199 echo
"Error cronjobid: ".$line->id.
" cronjob->fetch: ".$cronjob->error.
"\n";
200 echo
"Failed to fetch job ".$line->id.
"\n";
201 dol_syslog(
"cron_run_jobs.php::fetch Error".$cronjob->error, LOG_ERR);
205 $result = $cronjob->run_jobs($userlogin);
207 echo
"Error cronjobid: ".$line->id.
" cronjob->run_job: ".$cronjob->error.
"\n";
208 echo
"At least one job failed. Go on menu Home-Setup-Admin tools to see result for each job.\n";
209 echo
"You can also enable module Log if not yet enabled, run again and take a look into dolibarr.log file\n";
210 dol_syslog(
"cron_run_jobs.php::run_jobs Error".$cronjob->error, LOG_ERR);
211 $nbofjobslaunchedko++;
213 $nbofjobslaunchedok++;
216 echo
" - result of run_jobs = ".$result;
219 $result = $cronjob->reprogram_jobs($userlogin, $now);
221 echo
"Error cronjobid: ".$line->id.
" cronjob->reprogram_job: ".$cronjob->error.
"\n";
222 echo
"Enable module Log if not yet enabled, run again and take a look into dolibarr.log file\n";
223 dol_syslog(
"cron_run_jobs.php::reprogram_jobs Error".$cronjob->error, LOG_ERR);
227 echo
" - reprogrammed\n";
229 echo
" - not qualified\n";
237 echo
"Result: ".($nbofjobs).
" jobs - ".($nbofjobslaunchedok + $nbofjobslaunchedko).
" launched = ".$nbofjobslaunchedok.
" OK + ".$nbofjobslaunchedko.
" KO";
239 echo
"Result: No active jobs found.";
Class to manage Dolibarr users.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
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.
verifCond($strToEvaluate)
Verify if condition in string is ok or not.
getDolGlobalString($key, $default='')
Return 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.