]> git.mxchange.org Git - friendica.git/blob - include/queue_fn.php
Fix unused code in include
[friendica.git] / include / queue_fn.php
1 <?php
2
3 use Friendica\Core\Config;
4 use Friendica\Database\DBM;
5
6 function update_queue_time($id) {
7         logger('queue: requeue item ' . $id);
8         q("UPDATE `queue` SET `last` = '%s' WHERE `id` = %d",
9                 dbesc(datetime_convert()),
10                 intval($id)
11         );
12 }
13
14 function remove_queue_item($id) {
15         logger('queue: remove queue item ' . $id);
16         dba::delete('queue', array('id' => $id));
17 }
18
19 /**
20  * @brief Checks if the communication with a given contact had problems recently
21  *
22  * @param int $cid Contact id
23  *
24  * @return bool The communication with this contact has currently problems
25  */
26 function was_recently_delayed($cid) {
27         // Are there queue entries that were recently added?
28         $r = q("SELECT `id` FROM `queue` WHERE `cid` = %d
29                 AND `last` > UTC_TIMESTAMP() - INTERVAL 15 MINUTE LIMIT 1",
30                 intval($cid)
31         );
32
33         $was_delayed = DBM::is_result($r);
34
35         // We set "term-date" to a current date if the communication has problems.
36         // If the communication works again we reset this value.
37         if ($was_delayed) {
38                 $r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND `term-date` <= '1000-01-01' LIMIT 1",
39                         intval($cid)
40                 );
41                 $was_delayed = !DBM::is_result($r);
42         }
43
44         return $was_delayed;
45 }
46
47
48 function add_to_queue($cid,$network,$msg,$batch = false) {
49
50         $max_queue = Config::get('system','max_contact_queue');
51         if ($max_queue < 1) {
52                 $max_queue = 500;
53         }
54
55         $batch_queue = Config::get('system','max_batch_queue');
56         if ($batch_queue < 1) {
57                 $batch_queue = 1000;
58         }
59
60         $r = q("SELECT COUNT(*) AS `total` FROM `queue` INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id`
61                 WHERE `queue`.`cid` = %d AND `contact`.`self` = 0 ",
62                 intval($cid)
63         );
64         if (DBM::is_result($r)) {
65                 if ($batch &&  ($r[0]['total'] > $batch_queue)) {
66                         logger('add_to_queue: too many queued items for batch server ' . $cid . ' - discarding message');
67                         return;
68                 } elseif ((! $batch) && ($r[0]['total'] > $max_queue)) {
69                         logger('add_to_queue: too many queued items for contact ' . $cid . ' - discarding message');
70                         return;
71                 }
72         }
73
74         q("INSERT INTO `queue` ( `cid`, `network`, `created`, `last`, `content`, `batch`)
75                 VALUES ( %d, '%s', '%s', '%s', '%s', %d) ",
76                 intval($cid),
77                 dbesc($network),
78                 dbesc(datetime_convert()),
79                 dbesc(datetime_convert()),
80                 dbesc($msg),
81                 intval(($batch) ? 1: 0)
82         );
83
84 }