fixed cron execution of modules with week day setted

This commit is contained in:
alejandro.campos@artica.es 2022-10-24 17:23:08 +02:00
parent 61b3bc724a
commit 8bf3de92ae
1 changed files with 13 additions and 2 deletions
pandora_console/include

View File

@ -89,23 +89,34 @@ function cron_next_execution($cron, $module_interval, $module_id)
'id_agente_modulo', 'id_agente_modulo',
$module_id $module_id
); );
$cron_elems = explode(' ', $cron);
if (isset($cron_elems[4]) === true) {
$cron_elems[4] = '*';
}
$cron = implode(' ', $cron_elems);
$cur_time = ($last_execution !== false) ? $last_execution : time(); $cur_time = ($last_execution !== false) ? $last_execution : time();
$nex_time = cron_next_execution_date($cron, $cur_time, $module_interval); $nex_time = cron_next_execution_date($cron, $cur_time, $module_interval);
$nex_wday = (int) date('w', $nex_time); $nex_wday = (int) date('w', $nex_time);
// Check the wday values to avoid infinite loop. // Check the wday values to avoid infinite loop.
$wday_int = cron_get_interval($wday); $wday_int = cron_get_interval($wday);
if ($wday_int['down'] !== '*' && ($wday_int['down'] > 6 || ($wday_int['up'] !== false && $wday_int['up'] > 6))) { if ($wday_int['down'] !== '*' && ($wday_int['down'] > 6 || ($wday_int['up'] !== false && $wday_int['up'] > 6))) {
$wday = '*'; $wday = '*';
} }
// Check day of the way. // Check week day.
while (!cron_check_interval($nex_wday, $wday)) { while (!cron_check_interval($nex_wday, $wday)) {
// If it does not acomplish the day of the week, go to the next day. // If it does not acomplish the day of the week, go to the next day.
$nex_time += SECONDS_1DAY; $nex_time += SECONDS_1DAY;
$nex_time = cron_next_execution_date($cron, $nex_time, 0);
$nex_wday = (int) date('w', $nex_time); $nex_wday = (int) date('w', $nex_time);
} }
$nex_time = cron_next_execution_date($cron, $nex_time, 0);
return ($nex_time - $cur_time); return ($nex_time - $cur_time);
} }