friendica/include/cronhooks.php

55 lines
1.2 KiB
PHP
Raw Normal View History

2011-08-16 07:23:17 +02:00
<?php
use Friendica\Core\Config;
2017-11-05 13:15:53 +01:00
use Friendica\Core\Worker;
function cronhooks_run(&$argv, &$argc) {
2017-02-27 00:16:49 +01:00
global $a;
require_once 'include/datetime.php';
if (($argc == 2) && is_array($a->hooks) && 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;
}
$last = Config::get('system', 'last_cronhook');
$poll_interval = intval(Config::get('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;
}
}
$a->set_baseurl(Config::get('system', 'url'));
logger('cronhooks: start');
$d = datetime_convert();
if (is_array($a->hooks) && array_key_exists("cron", $a->hooks)) {
foreach ($a->hooks["cron"] as $hook) {
logger("Calling cronhooks for '" . $hook[1] . "'", LOGGER_DEBUG);
2017-11-05 13:15:53 +01:00
Worker::add(PRIORITY_MEDIUM, "cronhooks", $hook[1]);
}
2017-02-27 00:16:49 +01:00
}
logger('cronhooks: end');
Config::set('system', 'last_cronhook', time());
return;
}