2011-08-16 07:23:17 +02:00
|
|
|
<?php
|
|
|
|
|
2017-01-18 22:45:32 +01:00
|
|
|
use \Friendica\Core\Config;
|
2011-08-15 07:59:34 +02:00
|
|
|
|
2012-11-05 09:28:54 +01:00
|
|
|
function cronhooks_run(&$argv, &$argc){
|
2017-02-27 00:16:49 +01:00
|
|
|
global $a;
|
2011-08-15 07:59:34 +02:00
|
|
|
|
|
|
|
require_once('include/datetime.php');
|
|
|
|
|
2016-08-02 06:28:34 +02:00
|
|
|
if (($argc == 2) AND is_array($a->hooks) AND array_key_exists("cron", $a->hooks)) {
|
|
|
|
foreach ($a->hooks["cron"] as $hook)
|
|
|
|
if ($hook[1] == $argv[1]) {
|
|
|
|
logger("Calling cron hook '".$hook[1]."'", LOGGER_DEBUG);
|
|
|
|
call_single_hook($a, $name, $hook, $data);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-14 16:17:21 +01:00
|
|
|
$last = get_config('system', 'last_cronhook');
|
2015-09-12 20:22:58 +02:00
|
|
|
|
|
|
|
$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'));
|
|
|
|
|
|
|
|
logger('cronhooks: start');
|
2014-04-04 10:48:02 +02:00
|
|
|
|
2011-08-15 07:59:34 +02:00
|
|
|
$d = datetime_convert();
|
|
|
|
|
2017-02-27 00:16:49 +01:00
|
|
|
if (is_array($a->hooks) AND array_key_exists("cron", $a->hooks)) {
|
2016-08-02 06:28:34 +02:00
|
|
|
foreach ($a->hooks["cron"] as $hook) {
|
|
|
|
logger("Calling cronhooks for '".$hook[1]."'", LOGGER_DEBUG);
|
|
|
|
proc_run(PRIORITY_MEDIUM, "include/cronhooks.php", $hook[1]);
|
|
|
|
}
|
2017-02-27 00:16:49 +01:00
|
|
|
}
|
2011-08-15 07:59:34 +02:00
|
|
|
|
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;
|
|
|
|
}
|