2011-06-03 10:16:17 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function update_queue_time($id) {
|
|
|
|
logger('queue: requeue item ' . $id);
|
|
|
|
q("UPDATE `queue` SET `last` = '%s' WHERE `id` = %d LIMIT 1",
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
intval($id)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove_queue_item($id) {
|
|
|
|
logger('queue: remove queue item ' . $id);
|
|
|
|
q("DELETE FROM `queue` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($id)
|
|
|
|
);
|
|
|
|
}
|
2011-10-21 12:33:34 +02:00
|
|
|
|
2012-05-08 00:54:49 +02:00
|
|
|
function was_recently_delayed($cid) {
|
|
|
|
|
|
|
|
$r = q("SELECT `id` FROM `queue` WHERE `cid` = %d
|
|
|
|
and last > UTC_TIMESTAMP() - interval 15 minute limit 1",
|
|
|
|
intval($cid)
|
|
|
|
);
|
2012-05-08 03:36:28 +02:00
|
|
|
if(count($r))
|
|
|
|
return true;
|
2012-06-14 04:59:20 +02:00
|
|
|
|
|
|
|
$r = q("select `term-date` from contact where id = %d and `term-date` != '' and `term-date` != '0000-00-00 00:00:00' limit 1",
|
|
|
|
intval($cid)
|
|
|
|
);
|
|
|
|
if(count($r))
|
|
|
|
return true;
|
|
|
|
|
2012-05-08 03:36:28 +02:00
|
|
|
return false;
|
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');
|
|
|
|
if($max_queue < 1)
|
|
|
|
$max_queue = 500;
|
|
|
|
|
|
|
|
$batch_queue = get_config('system','max_batch_queue');
|
|
|
|
if($batch_queue < 1)
|
|
|
|
$batch_queue = 1000;
|
|
|
|
|
2011-10-23 10:54:51 +02:00
|
|
|
$r = q("SELECT COUNT(*) AS `total` FROM `queue` left join `contact` ON `queue`.`cid` = `contact`.`id`
|
|
|
|
WHERE `queue`.`cid` = %d AND `contact`.`self` = 0 ",
|
2011-10-21 12:33:34 +02:00
|
|
|
intval($cid)
|
|
|
|
);
|
|
|
|
if($r && count($r)) {
|
|
|
|
if($batch && ($r[0]['total'] > $batch_queue)) {
|
|
|
|
logger('add_to_queue: too many queued items for batch server ' . $cid . ' - discarding message');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
elseif((! $batch) && ($r[0]['total'] > $max_queue)) {
|
|
|
|
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
|
|
|
}
|