]> git.mxchange.org Git - friendica.git/blobdiff - include/queue.php
Merge pull request #2830 from annando/1610-account_type
[friendica.git] / include / queue.php
index 183ce0f9cd610ff80789e86c6cfc81a91f2a32b4..ad7079e959ebce2d3a767167bb69e7a0ce693f2b 100644 (file)
@@ -17,7 +17,6 @@ function queue_run(&$argv, &$argc){
                unset($db_host, $db_user, $db_pass, $db_data);
        };
 
-
        require_once("include/session.php");
        require_once("include/datetime.php");
        require_once('include/items.php');
@@ -45,55 +44,57 @@ function queue_run(&$argv, &$argc){
        $deadservers = array();
        $serverlist = array();
 
-       logger('queue: start');
+       if (!$queue_id) {
+
+               logger('queue: start');
 
-       // Handling the pubsubhubbub requests
-       proc_run('php','include/pubsubpublish.php');
+               // Handling the pubsubhubbub requests
+               proc_run(PRIORITY_HIGH,'include/pubsubpublish.php');
 
-       $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval')));
+               $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval')));
 
-       // If we are using the worker we don't need a delivery interval
-       if (get_config("system", "worker"))
-               $interval = false;
+               // If we are using the worker we don't need a delivery interval
+               if (get_config("system", "worker"))
+                       $interval = false;
 
-       $r = q("select * from deliverq where 1");
-       if($r) {
-               foreach($r as $rr) {
-                       logger('queue: deliverq');
-                       proc_run('php','include/delivery.php',$rr['cmd'],$rr['item'],$rr['contact']);
-                       if($interval)
+               $r = q("select * from deliverq where 1");
+               if($r) {
+                       foreach($r as $rr) {
+                               logger('queue: deliverq');
+                               proc_run(PRIORITY_HIGH,'include/delivery.php',$rr['cmd'],$rr['item'],$rr['contact']);
+                               if($interval)
                                @time_sleep_until(microtime(true) + (float) $interval);
+                       }
                }
-       }
 
-       $r = q("SELECT `queue`.*, `contact`.`name`, `contact`.`uid` FROM `queue`
-               INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id`
-               WHERE `queue`.`created` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
-       if($r) {
-               foreach($r as $rr) {
-                       logger('Removing expired queue item for ' . $rr['name'] . ', uid=' . $rr['uid']);
-                       logger('Expired queue data :' . $rr['content'], LOGGER_DATA);
+               $r = q("SELECT `queue`.*, `contact`.`name`, `contact`.`uid` FROM `queue`
+                       INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id`
+                       WHERE `queue`.`created` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
+               if($r) {
+                       foreach($r as $rr) {
+                               logger('Removing expired queue item for ' . $rr['name'] . ', uid=' . $rr['uid']);
+                               logger('Expired queue data :' . $rr['content'], LOGGER_DATA);
+                       }
+                       q("DELETE FROM `queue` WHERE `created` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
                }
-               q("DELETE FROM `queue` WHERE `created` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
-       }
-
-       if($queue_id) {
-               $r = q("SELECT `id` FROM `queue` WHERE `id` = %d LIMIT 1",
-                       intval($queue_id)
-               );
-       }
-       else {
 
                // For the first 12 hours we'll try to deliver every 15 minutes
                // After that, we'll only attempt delivery once per hour.
 
                $r = q("SELECT `id` FROM `queue` WHERE ((`created` > UTC_TIMESTAMP() - INTERVAL 12 HOUR && `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE) OR (`last` < UTC_TIMESTAMP() - INTERVAL 1 HOUR)) ORDER BY `cid`, `created`");
+       } else {
+               logger('queue: start for id '.$queue_id);
+
+               $r = q("SELECT `id` FROM `queue` WHERE `id` = %d LIMIT 1",
+                       intval($queue_id)
+               );
        }
-       if(! $r){
+
+       if (!$r){
                return;
        }
 
-       if(! $queue_id)
+       if (!$queue_id)
                call_hooks('queue_predeliver', $a, $r);
 
 
@@ -107,16 +108,17 @@ function queue_run(&$argv, &$argc){
                // queue_predeliver hooks may have changed the queue db details,
                // so check again if this entry still needs processing
 
-               if($queue_id) {
+               if($queue_id)
                        $qi = q("SELECT * FROM `queue` WHERE `id` = %d LIMIT 1",
-                               intval($queue_id)
-                       );
-               }
-               else {
+                               intval($queue_id));
+               elseif (get_config("system", "worker")) {
+                       logger('Call queue for id '.$q_item['id']);
+                       proc_run(PRIORITY_LOW, "include/queue.php", $q_item['id']);
+                       continue;
+               } else
                        $qi = q("SELECT * FROM `queue` WHERE `id` = %d AND `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE ",
-                               intval($q_item['id'])
-                       );
-               }
+                               intval($q_item['id']));
+
                if(! count($qi))
                        continue;
 
@@ -193,7 +195,7 @@ function queue_run(&$argv, &$argc){
                        case NETWORK_DIASPORA:
                                if($contact['notify']) {
                                        logger('queue: diaspora_delivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
-                                       $deliver_status = diaspora_transmit($owner,$contact,$data,$public,true);
+                                       $deliver_status = diaspora::transmit($owner,$contact,$data,$public,true);
 
                                        if($deliver_status == (-1)) {
                                                update_queue_time($q_item['id']);