I will never understand git ...
This commit is contained in:
parent
1aa8f56662
commit
521e213e7a
|
@ -1,54 +1,57 @@
|
||||||
<?php
|
<?php
|
||||||
|
namespace Friendica\Worker;
|
||||||
|
|
||||||
use Friendica\Core\Config;
|
use Friendica\Core\Config;
|
||||||
use Friendica\Core\Worker;
|
use Friendica\Core\Worker;
|
||||||
|
|
||||||
function cronhooks_run(&$argv, &$argc) {
|
Class CronHooks {
|
||||||
global $a;
|
static public function execute($hook = '') {
|
||||||
|
global $a;
|
||||||
|
|
||||||
require_once 'include/datetime.php';
|
require_once 'include/datetime.php';
|
||||||
|
|
||||||
if (($argc == 2) && is_array($a->hooks) && array_key_exists("cron", $a->hooks)) {
|
if (($hook != '') && is_array($a->hooks) && array_key_exists("cron", $a->hooks)) {
|
||||||
foreach ($a->hooks["cron"] as $hook) {
|
foreach ($a->hooks["cron"] as $single_hook) {
|
||||||
if ($hook[1] == $argv[1]) {
|
if ($single_hook[1] == $hook) {
|
||||||
logger("Calling cron hook '" . $hook[1] . "'", LOGGER_DEBUG);
|
logger("Calling cron hook '" . $hook . "'", LOGGER_DEBUG);
|
||||||
call_single_hook($a, $name, $hook, $data);
|
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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$a->set_baseurl(Config::get('system', 'url'));
|
$last = Config::get('system', 'last_cronhook');
|
||||||
|
|
||||||
logger('cronhooks: start');
|
$poll_interval = intval(Config::get('system', 'cronhook_interval'));
|
||||||
|
if (!$poll_interval) {
|
||||||
$d = datetime_convert();
|
$poll_interval = 9;
|
||||||
|
|
||||||
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);
|
|
||||||
Worker::add(PRIORITY_MEDIUM, "cronhooks", $hook[1]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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);
|
||||||
|
Worker::add(PRIORITY_MEDIUM, "CronHooks", $hook[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
logger('cronhooks: end');
|
||||||
|
|
||||||
|
Config::set('system', 'last_cronhook', time());
|
||||||
|
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
logger('cronhooks: end');
|
|
||||||
|
|
||||||
Config::set('system', 'last_cronhook', time());
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user