]> git.mxchange.org Git - friendica.git/blob - include/queue_fn.php
2168d42d78c6657af60e2e08a38ff5c38687589b
[friendica.git] / include / queue_fn.php
1 <?php
2
3 function update_queue_time($id) {
4         logger('queue: requeue item ' . $id);
5         q("UPDATE `queue` SET `last` = '%s' WHERE `id` = %d LIMIT 1",
6                 dbesc(datetime_convert()),
7                 intval($id)
8         );
9 }
10
11 function remove_queue_item($id) {
12         logger('queue: remove queue item ' . $id);
13         q("DELETE FROM `queue` WHERE `id` = %d LIMIT 1",
14                 intval($id)
15         );
16 }
17
18
19 function add_to_queue($cid,$network,$msg,$batch = false) {
20
21         $max_queue = get_config('system','max_contact_queue');
22         if($max_queue < 1)
23                 $max_queue = 500;
24
25         $batch_queue = get_config('system','max_batch_queue');
26         if($batch_queue < 1)
27                 $batch_queue = 1000;
28
29         $r = q("SELECT COUNT(*) AS `total` FROM `queue` left join `contact` WHERE ``queue`.`cid` = %d AND `contact`.`self` = 0 ",
30                 intval($cid)
31         );
32         if($r && count($r)) {
33                 if($batch &&  ($r[0]['total'] > $batch_queue)) {
34                         logger('add_to_queue: too many queued items for batch server ' . $cid . ' - discarding message');
35                         return;
36                 }
37                 elseif((! $batch) && ($r[0]['total'] > $max_queue)) {
38                         logger('add_to_queue: too many queued items for contact ' . $cid . ' - discarding message');
39                         return;
40                 }
41         }
42
43         q("INSERT INTO `queue` ( `cid`, `network`, `created`, `last`, `content`, `batch`)
44                 VALUES ( %d, '%s', '%s', '%s', '%s', %d) ",
45                 intval($cid),
46                 dbesc(datetime_convert()),
47                 dbesc(datetime_convert()),
48                 dbesc($msg),
49                 intval(($batch) ? 1: 0)
50         );
51 }