2011-06-03 10:16:17 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function update_queue_time($id) {
|
|
|
|
logger('queue: requeue item ' . $id);
|
2014-03-09 09:19:14 +01:00
|
|
|
q("UPDATE `queue` SET `last` = '%s' WHERE `id` = %d",
|
2011-06-03 10:16:17 +02:00
|
|
|
dbesc(datetime_convert()),
|
|
|
|
intval($id)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove_queue_item($id) {
|
|
|
|
logger('queue: remove queue item ' . $id);
|
2014-03-09 09:19:14 +01:00
|
|
|
q("DELETE FROM `queue` WHERE `id` = %d",
|
2011-06-03 10:16:17 +02:00
|
|
|
intval($id)
|
|
|
|
);
|
|
|
|
}
|
2011-10-21 12:33:34 +02:00
|
|
|
|
2016-11-24 04:34:11 +01:00
|
|
|
/**
|
|
|
|
* @brief Checks if the communication with a given contact had problems recently
|
|
|
|
*
|
|
|
|
* @param int $cid Contact id
|
|
|
|
*
|
|
|
|
* @return bool The communication with this contact has currently problems
|
|
|
|
*/
|
2012-05-08 00:54:49 +02:00
|
|
|
function was_recently_delayed($cid) {
|
2016-12-15 09:49:00 +01:00
|
|
|
$was_delayed = false;
|
2012-05-08 00:54:49 +02:00
|
|
|
|
2016-12-15 09:49:00 +01:00
|
|
|
// Are there queue entries that were recently added?
|
2016-12-14 20:50:39 +01:00
|
|
|
$r = q("SELECT `id` FROM `queue` WHERE `cid` = %d
|
2016-12-15 09:51:06 +01:00
|
|
|
AND `last` > UTC_TIMESTAMP() - INTERVAL 15 MINUTE LIMIT 1",
|
2012-05-08 00:54:49 +02:00
|
|
|
intval($cid)
|
|
|
|
);
|
2012-06-14 04:59:20 +02:00
|
|
|
|
2016-12-15 09:49:00 +01:00
|
|
|
$was_delayed = dbm::is_result($r);
|
|
|
|
|
|
|
|
// We set "term-date" to a current date if the communication has problems.
|
|
|
|
// If the communication works again we reset this value.
|
|
|
|
if ($was_delayed) {
|
|
|
|
$r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND `term-date` <= '1000-01-01' LIMIT 1",
|
|
|
|
intval($cid)
|
|
|
|
);
|
|
|
|
$was_delayed = !dbm::is_result($r);
|
|
|
|
}
|
2012-06-14 04:59:20 +02:00
|
|
|
|
2016-12-15 09:52:15 +01:00
|
|
|
return $was_delayed;
|
2012-05-08 00:54:49 +02:00
|
|
|
}
|
|
|
|
|
2011-10-21 12:33:34 +02:00
|
|
|
|
|
|
|
function add_to_queue($cid,$network,$msg,$batch = false) {
|
|
|
|
|
|
|
|
$max_queue = get_config('system','max_contact_queue');
|
2017-04-04 19:48:13 +02:00
|
|
|
if ($max_queue < 1) {
|
2011-10-21 12:33:34 +02:00
|
|
|
$max_queue = 500;
|
2017-04-04 19:48:13 +02:00
|
|
|
}
|
2011-10-21 12:33:34 +02:00
|
|
|
|
|
|
|
$batch_queue = get_config('system','max_batch_queue');
|
2017-04-04 19:48:13 +02:00
|
|
|
if ($batch_queue < 1) {
|
2011-10-21 12:33:34 +02:00
|
|
|
$batch_queue = 1000;
|
2017-04-04 19:48:13 +02:00
|
|
|
}
|
2011-10-21 12:33:34 +02:00
|
|
|
|
2014-03-09 09:19:14 +01:00
|
|
|
$r = q("SELECT COUNT(*) AS `total` FROM `queue` INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id`
|
2011-10-23 10:54:51 +02:00
|
|
|
WHERE `queue`.`cid` = %d AND `contact`.`self` = 0 ",
|
2011-10-21 12:33:34 +02:00
|
|
|
intval($cid)
|
|
|
|
);
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2017-04-04 19:48:13 +02:00
|
|
|
if ($batch && ($r[0]['total'] > $batch_queue)) {
|
2011-10-21 12:33:34 +02:00
|
|
|
logger('add_to_queue: too many queued items for batch server ' . $cid . ' - discarding message');
|
|
|
|
return;
|
2017-04-04 19:48:13 +02:00
|
|
|
} elseif ((! $batch) && ($r[0]['total'] > $max_queue)) {
|
2011-10-21 12:33:34 +02:00
|
|
|
logger('add_to_queue: too many queued items for contact ' . $cid . ' - discarding message');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
q("INSERT INTO `queue` ( `cid`, `network`, `created`, `last`, `content`, `batch`)
|
|
|
|
VALUES ( %d, '%s', '%s', '%s', '%s', %d) ",
|
|
|
|
intval($cid),
|
2011-10-23 10:54:51 +02:00
|
|
|
dbesc($network),
|
2011-10-21 12:33:34 +02:00
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc($msg),
|
|
|
|
intval(($batch) ? 1: 0)
|
|
|
|
);
|
2011-10-23 10:54:51 +02:00
|
|
|
|
2011-10-21 12:33:34 +02:00
|
|
|
}
|