2011-08-16 01:23:17 -04:00
|
|
|
<?php
|
|
|
|
|
2017-01-18 16:45:32 -05:00
|
|
|
use \Friendica\Core\Config;
|
2011-08-15 01:59:34 -04:00
|
|
|
|
2017-01-18 16:45:32 -05:00
|
|
|
require_once("boot.php");
|
2011-08-15 01:59:34 -04:00
|
|
|
|
2012-11-05 03:28:54 -05:00
|
|
|
function cronhooks_run(&$argv, &$argc){
|
2011-08-15 01:59:34 -04:00
|
|
|
global $a, $db;
|
|
|
|
|
|
|
|
if(is_null($a)) {
|
|
|
|
$a = new App;
|
|
|
|
}
|
2014-04-04 04:48:02 -04:00
|
|
|
|
2011-08-15 01:59:34 -04:00
|
|
|
if(is_null($db)) {
|
2015-09-12 14:22:58 -04: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 01:59:34 -04:00
|
|
|
|
|
|
|
require_once('include/session.php');
|
|
|
|
require_once('include/datetime.php');
|
|
|
|
|
2017-01-18 16:45:32 -05:00
|
|
|
Config::load();
|
2011-08-15 01:59:34 -04:00
|
|
|
|
2016-03-07 18:20:06 -05:00
|
|
|
// Don't check this stuff if the function is called by the poller
|
|
|
|
if (App::callstack() != "poller_run") {
|
2016-12-13 04:16:36 -05:00
|
|
|
if ($a->maxload_reached())
|
2016-03-08 14:28:09 -05:00
|
|
|
return;
|
2016-03-08 16:28:49 -05:00
|
|
|
if (App::is_already_running('cronhooks', 'include/cronhooks.php', 1140))
|
2016-03-08 14:28:09 -05:00
|
|
|
return;
|
2014-04-04 04:48:02 -04:00
|
|
|
}
|
|
|
|
|
2016-08-02 00:28:34 -04:00
|
|
|
load_hooks();
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-09-12 14:22:58 -04: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 01:59:34 -04:00
|
|
|
$a->set_baseurl(get_config('system','url'));
|
|
|
|
|
|
|
|
logger('cronhooks: start');
|
2014-04-04 04:48:02 -04:00
|
|
|
|
2011-08-15 01:59:34 -04:00
|
|
|
$d = datetime_convert();
|
|
|
|
|
2016-08-02 00:28:34 -04:00
|
|
|
if (get_config("system", "worker") AND is_array($a->hooks) AND array_key_exists("cron", $a->hooks)) {
|
|
|
|
foreach ($a->hooks["cron"] as $hook) {
|
|
|
|
logger("Calling cronhooks for '".$hook[1]."'", LOGGER_DEBUG);
|
|
|
|
proc_run(PRIORITY_MEDIUM, "include/cronhooks.php", $hook[1]);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
call_hooks('cron', $d);
|
2011-08-15 01:59:34 -04:00
|
|
|
|
2014-05-21 01:28:33 -04:00
|
|
|
logger('cronhooks: end');
|
|
|
|
|
2015-09-12 14:22:58 -04:00
|
|
|
set_config('system','last_cronhook', time());
|
|
|
|
|
2011-08-15 01:59:34 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_search(__file__,get_included_files())===0){
|
2015-09-12 14:22:58 -04:00
|
|
|
cronhooks_run($_SERVER["argv"],$_SERVER["argc"]);
|
|
|
|
killme();
|
2011-08-15 01:59:34 -04:00
|
|
|
}
|