dolibarr/scripts/cron/cron_run_jobs.php

321 lines
10 KiB
PHP
Raw Normal View History

Better Travis CI NEW: Cleaned up routines for better readability of both declaration and results. PHP versions now really covered. The old code forced install of PHP and didn't use Travis provided versions. This resulted in the process not being executed with the declared PHP version. Dropped MySQL in favor of MariaDB. This is now the FLOSS community standard. This should help avoid problems with buggy MySQL releases. Fast finish enabled to show results faster. Optimized tools installation with composer. The right version of the tool is installed for the PHP version under test. New PHP linter to check for syntax errors. Parallelized for better speed. Apache + PHP FPM for testing webservices. The previous mod_php configuration was not supported on Travis. New global DEBUG environment variable to show verbose output with configuration files content. IRC notification on #dolibarr@freenode for community awareness. FIXES: Bug in scripts preventing execution with environmentalized PHP. Wrong detection of MAIN_URL_ROOT under specific circumstances. $_SERVER["DOCUMENT_ROOT"] empty and $_SERVER["SCRIPT_NAME"] populated. Relative ignore directive in coding style ruleset to avoid bypassing test. Unit test errors without an exit status. This prevented the CI from properly detecting and reporting the error. TODOS: PostgreSQL support. This one is tricky since we only have a MySQL dump and the syntax is not directly compatible. SQLite support. Disabled in core at the moment. Nginx + PHP FPM support. Test webservices on the second most popular webserver. Run dev/* checks. We have a nice collection of scripts we could leverage. Check Javascript. Check CSS. Check SQL.
2015-12-11 05:08:32 +01:00
#!/usr/bin/env php
2013-03-22 17:10:17 +01:00
<?php
/*
* Copyright (C) 2012 Nicolas Villa aka Boyquotes http://informetic.fr
* Copyright (C) 2013 Florian Henry <forian.henry@open-concept.pro
2015-12-19 03:27:55 +01:00
* Copyright (C) 2013-2015 Laurent Destailleur <eldy@users.sourceforge.net>
2013-03-22 17:10:17 +01:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2013-03-22 17:10:17 +01:00
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2013-03-22 17:10:17 +01:00
*/
/**
* \file scripts/cron/cron_run_jobs.php
* \ingroup cron
2022-06-03 11:52:39 +02:00
* \brief Execute pendings jobs from command line
2013-03-22 17:10:17 +01:00
*/
2021-03-01 00:22:36 +01:00
if (!defined('NOTOKENRENEWAL')) {
define('NOTOKENRENEWAL', '1'); // Disables token renewal
}
if (!defined('NOREQUIREMENU')) {
define('NOREQUIREMENU', '1');
}
if (!defined('NOREQUIREHTML')) {
define('NOREQUIREHTML', '1');
}
if (!defined('NOREQUIREAJAX')) {
define('NOREQUIREAJAX', '1');
}
if (!defined('NOLOGIN')) {
define('NOLOGIN', '1');
}
if (!defined('NOSESSION')) {
define('NOSESSION', '1');
}
2013-03-22 17:10:17 +01:00
2022-06-03 11:52:39 +02:00
// So log file will have a suffix
if (!defined('USESUFFIXINLOG')) {
define('USESUFFIXINLOG', '_cron');
}
$sapi_type = php_sapi_name();
$script_file = basename(__FILE__);
$path = __DIR__.'/';
// Error if Web mode
if (substr($sapi_type, 0, 3) == 'cgi') {
echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
exit(-1);
}
require_once $path."../../htdocs/master.inc.php";
require_once DOL_DOCUMENT_ROOT."/cron/class/cronjob.class.php";
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
// Check parameters
if (!isset($argv[1]) || !$argv[1]) {
usage($path, $script_file);
exit(-1);
2013-03-22 17:10:17 +01:00
}
$key = $argv[1];
if (!isset($argv[2]) || !$argv[2]) {
usage($path, $script_file);
exit(-1);
}
$userlogin = $argv[2];
2013-06-05 16:12:07 +02:00
// Global variables
$version = DOL_VERSION;
$error = 0;
$hookmanager->initHooks(array('cli'));
2013-06-05 16:12:07 +02:00
/*
* Main
*/
// current date
$now = dol_now();
2013-06-05 16:12:07 +02:00
@set_time_limit(0);
print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." ***** userlogin=".$userlogin." ***** ".dol_print_date($now, 'dayhourrfc')." *****\n";
2013-03-22 17:10:17 +01:00
// Check module cron is activated
if (empty($conf->cron->enabled)) {
print "Error: module Scheduled jobs (cron) not activated\n";
exit(-1);
}
2013-03-22 17:10:17 +01:00
// Check module cron is activated
if (empty($conf->cron->enabled)) {
print "Error: module Scheduled jobs (cron) not activated\n";
exit(-1);
}
// Check security key
if ($key != $conf->global->CRON_KEY) {
print "Error: securitykey is wrong\n";
exit(-1);
2013-03-22 17:10:17 +01:00
}
if (!empty($dolibarr_main_db_readonly)) {
print "Error: instance in read-only mode\n";
exit(-1);
}
2017-08-03 11:22:37 +02:00
// If param userlogin is reserved word 'firstadmin'
if ($userlogin == 'firstadmin') {
$sql = 'SELECT login, entity from '.MAIN_DB_PREFIX.'user WHERE admin = 1 and statut = 1 ORDER BY entity LIMIT 1';
$resql = $db->query($sql);
if ($resql) {
$obj = $db->fetch_object($resql);
if ($obj) {
$userlogin = $obj->login;
echo "First admin user found is login '".$userlogin."', entity ".$obj->entity."\n";
}
2021-03-01 00:22:36 +01:00
} else {
dol_print_error($db);
}
}
// Check user login
$user = new User($db);
2021-10-08 11:54:38 +02:00
$result = $user->fetch('', $userlogin, '', 1);
if ($result < 0) {
echo "User Error: ".$user->error;
dol_syslog("cron_run_jobs.php:: User Error:".$user->error, LOG_ERR);
exit(-1);
} else {
if (empty($user->id)) {
echo "User login: ".$userlogin." does not exists";
dol_syslog("User login:".$userlogin." does not exists", LOG_ERR);
exit(-1);
2013-03-22 17:10:17 +01:00
}
}
2021-10-08 11:54:38 +02:00
// Reload langs
$langcode = (empty($conf->global->MAIN_LANG_DEFAULT) ? 'auto' : $conf->global->MAIN_LANG_DEFAULT);
if (!empty($user->conf->MAIN_LANG_DEFAULT)) {
$langcode = $user->conf->MAIN_LANG_DEFAULT;
}
if ($langs->getDefaultLang() != $langcode) {
$langs->setDefaultLang($langcode);
$langs->tab_translate = array();
2021-10-08 11:54:38 +02:00
}
// Language Management
$langs->loadLangs(array('main', 'admin', 'cron', 'dict'));
2021-10-08 11:54:38 +02:00
$user->getrights();
2013-03-22 17:10:17 +01:00
if (isset($argv[3]) && $argv[3]) {
2013-03-22 17:10:17 +01:00
$id = $argv[3];
}
// create a jobs object
$object = new Cronjob($db);
$filter = array();
if (!empty($id)) {
if (!is_numeric($id)) {
2018-09-03 11:56:05 +02:00
echo "Error: Bad value for parameter job id";
dol_syslog("cron_run_jobs.php Bad value for parameter job id", LOG_WARNING);
exit();
2018-09-03 11:56:05 +02:00
}
$filter['t.rowid'] = $id;
2013-03-22 17:10:17 +01:00
}
2022-07-25 18:45:02 +02:00
$result = $object->fetchAll('ASC,ASC,ASC', 't.priority,t.entity,t.rowid', 0, 0, 1, $filter, 0);
if ($result < 0) {
echo "Error: ".$object->error;
dol_syslog("cron_run_jobs.php fetch Error ".$object->error, LOG_ERR);
exit(-1);
2013-03-22 17:10:17 +01:00
}
2019-05-27 18:13:33 +02:00
// TODO Duplicate code. This sequence of code must be shared with code into public/cron/cron_run_jobs.php php page.
2016-01-08 15:45:23 +01:00
$nbofjobs = count($object->lines);
$nbofjobslaunchedok = 0;
$nbofjobslaunchedko = 0;
2013-03-22 17:10:17 +01:00
if (is_array($object->lines) && (count($object->lines) > 0)) {
$savconf = dol_clone($conf);
2019-05-27 18:13:33 +02:00
2016-01-08 15:45:23 +01:00
// Loop over job
foreach ($object->lines as $line) {
dol_syslog("cron_run_jobs.php cronjobid: ".$line->id." priority=".$line->priority." entity=".$line->entity." label=".$line->label, LOG_DEBUG);
2018-06-07 13:47:32 +02:00
echo "cron_run_jobs.php cronjobid: ".$line->id." priority=".$line->priority." entity=".$line->entity." label=".$line->label;
2017-08-03 11:22:37 +02:00
2019-05-27 18:13:33 +02:00
// Force reload of setup for the current entity
2021-03-01 00:22:36 +01:00
if ((empty($line->entity) ? 1 : $line->entity) != $conf->entity) {
dol_syslog("cron_run_jobs.php we work on another entity conf than ".$conf->entity." so we reload mysoc, langs, user and conf", LOG_DEBUG);
echo " -> we change entity so we reload mysoc, langs, user and conf";
2019-05-27 18:13:33 +02:00
$conf->entity = (empty($line->entity) ? 1 : $line->entity);
$conf->setValues($db); // This make also the $mc->setValues($conf); that reload $mc->sharings
$mysoc->setMysoc($conf);
// Force recheck that user is ok for the entity to process and reload permission for entity
2021-10-08 11:54:38 +02:00
if ($conf->entity != $user->entity) {
$result = $user->fetch('', $userlogin, '', 1);
2021-03-01 00:22:36 +01:00
if ($result < 0) {
echo "\nUser Error: ".$user->error."\n";
dol_syslog("cron_run_jobs.php:: User Error:".$user->error, LOG_ERR);
exit(-1);
} else {
2021-03-01 00:22:36 +01:00
if ($result == 0) {
echo "\nUser login: ".$userlogin." does not exists for entity ".$conf->entity."\n";
dol_syslog("User login:".$userlogin." does not exists", LOG_ERR);
exit(-1);
}
}
$user->getrights();
}
// Reload langs
$langcode = (empty($conf->global->MAIN_LANG_DEFAULT) ? 'auto' : $conf->global->MAIN_LANG_DEFAULT);
2021-03-01 00:22:36 +01:00
if (!empty($user->conf->MAIN_LANG_DEFAULT)) {
$langcode = $user->conf->MAIN_LANG_DEFAULT;
}
if ($langs->getDefaultLang() != $langcode) {
$langs->setDefaultLang($langcode);
$langs->tab_translate = array();
$langs->loadLangs(array('main', 'admin', 'cron', 'dict'));
2021-03-01 00:22:36 +01:00
}
2019-05-27 18:13:33 +02:00
}
2017-08-03 11:22:37 +02:00
if (!verifCond($line->test)) {
continue;
}
2016-01-08 15:45:23 +01:00
//If date_next_jobs is less of current date, execute the program, and store the execution time of the next execution in database
if (($line->datenextrun < $now) && (empty($line->datestart) || $line->datestart <= $now) && (empty($line->dateend) || $line->dateend >= $now)) {
2018-11-26 13:31:05 +01:00
echo " - qualified";
2018-06-07 13:47:32 +02:00
dol_syslog("cron_run_jobs.php line->datenextrun:".dol_print_date($line->datenextrun, 'dayhourrfc')." line->datestart:".dol_print_date($line->datestart, 'dayhourrfc')." line->dateend:".dol_print_date($line->dateend, 'dayhourrfc')." now:".dol_print_date($now, 'dayhourrfc'));
2017-08-03 11:22:37 +02:00
$cronjob = new Cronjob($db);
$result = $cronjob->fetch($line->id);
if ($result < 0) {
echo "Error cronjobid: ".$line->id." cronjob->fetch: ".$cronjob->error."\n";
echo "Failed to fetch job ".$line->id."\n";
dol_syslog("cron_run_jobs.php::fetch Error ".$cronjob->error, LOG_ERR);
exit(-1);
2016-01-08 15:45:23 +01:00
}
// Execute job
$result = $cronjob->run_jobs($userlogin);
if ($result < 0) {
echo "Error cronjobid: ".$line->id." cronjob->run_job: ".$cronjob->error."\n";
2016-09-29 14:02:54 +02:00
echo "At least one job failed. Go on menu Home-Setup-Admin tools to see result for each job.\n";
echo "You can also enable module Log if not yet enabled, run again and take a look into dolibarr.log file\n";
dol_syslog("cron_run_jobs.php::run_jobs Error ".$cronjob->error, LOG_ERR);
$nbofjobslaunchedko++;
2020-05-10 18:31:55 +02:00
$resultstring = 'KO';
} else {
$nbofjobslaunchedok++;
2020-05-10 18:31:55 +02:00
$resultstring = 'OK';
2016-01-08 15:45:23 +01:00
}
2020-05-10 18:31:55 +02:00
echo " - run_jobs ".$resultstring." result = ".$result;
2018-11-26 13:31:05 +01:00
2019-05-27 18:13:33 +02:00
// We re-program the next execution and stores the last execution time for this job
$result = $cronjob->reprogram_jobs($userlogin, $now);
if ($result < 0) {
echo "Error cronjobid: ".$line->id." cronjob->reprogram_job: ".$cronjob->error."\n";
2016-09-29 14:02:54 +02:00
echo "Enable module Log if not yet enabled, run again and take a look into dolibarr.log file\n";
dol_syslog("cron_run_jobs.php::reprogram_jobs Error ".$cronjob->error, LOG_ERR);
exit(-1);
2013-03-22 17:10:17 +01:00
}
2018-11-26 13:31:05 +01:00
echo " - reprogrammed\n";
} else {
2018-06-07 13:47:32 +02:00
echo " - not qualified\n";
dol_syslog("cron_run_jobs.php job not qualified line->datenextrun:".dol_print_date($line->datenextrun, 'dayhourrfc')." line->datestart:".dol_print_date($line->datestart, 'dayhourrfc')." line->dateend:".dol_print_date($line->dateend, 'dayhourrfc')." now:".dol_print_date($now, 'dayhourrfc'));
2016-09-10 12:22:23 +02:00
}
2016-01-08 15:45:23 +01:00
}
2019-05-27 18:13:33 +02:00
$conf = $savconf;
2020-05-21 15:05:19 +02:00
} else {
2018-04-23 16:49:27 +02:00
echo "cron_run_jobs.php no qualified job found\n";
}
$db->close();
2021-03-01 00:22:36 +01:00
if ($nbofjobslaunchedko) {
exit(1);
2021-03-01 00:22:36 +01:00
}
exit(0);
2018-08-31 22:41:51 +02:00
/**
* script cron usage
*
2019-05-16 14:38:01 +02:00
* @param string $path Path
* @param string $script_file Filename
2018-08-31 22:41:51 +02:00
* @return void
*/
function usage($path, $script_file)
{
print "Usage: ".$script_file." securitykey userlogin|'firstadmin' [cronjobid]\n";
print "The script return 0 when everything worked successfully.\n";
print "\n";
print "On Linux system, you can have cron jobs ran automatically by adding an entry into cron.\n";
print "For example, to run pending tasks each day at 3:30, you can add this line:\n";
print "30 3 * * * ".$path.$script_file." securitykey userlogin > ".DOL_DATA_ROOT."/".$script_file.".log\n";
print "For example, to run pending tasks every 5mn, you can add this line:\n";
print "*/5 * * * * ".$path.$script_file." securitykey userlogin > ".DOL_DATA_ROOT."/".$script_file.".log\n";
}