2011-08-16 07:23:17 +02:00
|
|
|
<?php
|
|
|
|
|
2011-08-15 07:59:34 +02:00
|
|
|
require_once("boot.php");
|
|
|
|
|
|
|
|
|
2012-11-05 09:28:54 +01:00
|
|
|
function cronhooks_run(&$argv, &$argc){
|
2011-08-15 07:59:34 +02:00
|
|
|
global $a, $db;
|
|
|
|
|
|
|
|
if(is_null($a)) {
|
|
|
|
$a = new App;
|
|
|
|
}
|
2014-04-04 10:48:02 +02:00
|
|
|
|
2011-08-15 07:59:34 +02:00
|
|
|
if(is_null($db)) {
|
2015-09-12 20:22:58 +02:00
|
|
|
@include(".htconfig.php");
|
|
|
|
require_once("include/dba.php");
|
|
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
};
|
2011-08-15 07:59:34 +02:00
|
|
|
|
|
|
|
require_once('include/session.php');
|
|
|
|
require_once('include/datetime.php');
|
|
|
|
|
|
|
|
load_config('config');
|
|
|
|
load_config('system');
|
|
|
|
|
2016-03-08 00:20:06 +01:00
|
|
|
// Don't check this stuff if the function is called by the poller
|
|
|
|
if (App::callstack() != "poller_run") {
|
2016-03-08 20:28:09 +01:00
|
|
|
if (App::maxload_reached())
|
|
|
|
return;
|
2016-03-08 22:28:49 +01:00
|
|
|
if (App::is_already_running('cronhooks', 'include/cronhooks.php', 1140))
|
2016-03-08 20:28:09 +01:00
|
|
|
return;
|
2014-04-04 10:48:02 +02:00
|
|
|
}
|
|
|
|
|
2015-09-12 20:22:58 +02:00
|
|
|
$last = get_config('system','last_cronhook');
|
|
|
|
|
|
|
|
$poll_interval = intval(get_config('system','cronhook_interval'));
|
|
|
|
if(! $poll_interval)
|
|
|
|
$poll_interval = 9;
|
|
|
|
|
|
|
|
if($last) {
|
|
|
|
$next = $last + ($poll_interval * 60);
|
|
|
|
if($next > time()) {
|
|
|
|
logger('cronhook intervall not reached');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-15 07:59:34 +02:00
|
|
|
$a->set_baseurl(get_config('system','url'));
|
|
|
|
|
|
|
|
load_hooks();
|
|
|
|
|
|
|
|
logger('cronhooks: start');
|
2014-04-04 10:48:02 +02:00
|
|
|
|
2011-08-15 07:59:34 +02:00
|
|
|
$d = datetime_convert();
|
|
|
|
|
|
|
|
call_hooks('cron', $d);
|
|
|
|
|
2014-05-21 07:28:33 +02:00
|
|
|
logger('cronhooks: end');
|
|
|
|
|
2015-09-12 20:22:58 +02:00
|
|
|
set_config('system','last_cronhook', time());
|
|
|
|
|
2011-08-15 07:59:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_search(__file__,get_included_files())===0){
|
2015-09-12 20:22:58 +02:00
|
|
|
cronhooks_run($_SERVER["argv"],$_SERVER["argc"]);
|
|
|
|
killme();
|
2011-08-15 07:59:34 +02:00
|
|
|
}
|