]> git.mxchange.org Git - friendica.git/blobdiff - include/cronhooks.php
Merge pull request #2758 from annando/1609-sql-charset
[friendica.git] / include / cronhooks.php
index 71cb0fb7b2f44a72caad66ecde5eb29f84cbc6c2..4bb1e5f65960b3b3c1bbad1077d34628388040b0 100644 (file)
@@ -19,39 +19,27 @@ function cronhooks_run(&$argv, &$argc){
 
        require_once('include/session.php');
        require_once('include/datetime.php');
-       require_once('include/pidfile.php');
 
        load_config('config');
        load_config('system');
 
        // Don't check this stuff if the function is called by the poller
        if (App::callstack() != "poller_run") {
-               $maxsysload = intval(get_config('system','maxloadavg'));
-               if($maxsysload < 1)
-                       $maxsysload = 50;
-
-               $load = current_load();
-               if($load) {
-                       if(intval($load) > $maxsysload) {
-                               logger('system: load ' . $load . ' too high. Cronhooks deferred to next scheduled run.');
-                               return;
-                       }
-               }
+               if (App::maxload_reached())
+                       return;
+               if (App::is_already_running('cronhooks', 'include/cronhooks.php', 1140))
+                       return;
+       }
 
-               $lockpath = get_lockpath();
-               if ($lockpath != '') {
-                       $pidfile = new pidfile($lockpath, 'cronhooks');
-                       if($pidfile->is_already_running()) {
-                               logger("cronhooks: Already running");
-                               if ($pidfile->running_time() > 19*60) {
-                                       $pidfile->kill();
-                                       logger("cronhooks: killed stale process");
-                                       // Calling a new instance
-                                       proc_run('php','include/cronhooks.php');
-                               }
-                               exit;
+       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;
        }
 
        $last = get_config('system','last_cronhook');
@@ -70,13 +58,17 @@ function cronhooks_run(&$argv, &$argc){
 
        $a->set_baseurl(get_config('system','url'));
 
-       load_hooks();
-
        logger('cronhooks: start');
 
        $d = datetime_convert();
 
-       call_hooks('cron', $d);
+       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);
 
        logger('cronhooks: end');