streams/include/deliver.php

88 lines
2.4 KiB
PHP
Raw Normal View History

2013-02-26 01:09:40 +00:00
<?php /** @file */
require_once('include/cli_startup.php');
require_once('include/zot.php');
2015-12-15 08:42:19 +00:00
require_once('include/queue_fn.php');
function deliver_run($argv, $argc) {
cli_startup();
$a = get_app();
if($argc < 2)
return;
2014-07-02 05:02:36 +00:00
logger('deliver: invoked: ' . print_r($argv,true), LOGGER_DATA);
for($x = 1; $x < $argc; $x ++) {
2015-09-22 09:32:04 +00:00
$dresult = null;
$r = q("select * from outq where outq_hash = '%s' limit 1",
dbesc($argv[$x])
);
if($r) {
2015-03-10 02:57:35 +00:00
$notify = json_decode($r[0]['outq_notify'],true);
2015-11-16 01:28:45 +00:00
// Messages without an outq_msg will need to go via the web, even if it's a
// local delivery. This includes conversation requests and refresh packets.
2015-11-16 01:28:45 +00:00
if(($r[0]['outq_posturl'] === z_root() . '/post') && ($r[0]['outq_msg'])) {
2014-07-02 05:02:36 +00:00
logger('deliver: local delivery', LOGGER_DEBUG);
2012-12-03 04:54:20 +00:00
// local delivery
// we should probably batch these and save a few delivery processes
if($r[0]['outq_msg']) {
$m = json_decode($r[0]['outq_msg'],true);
if(array_key_exists('message_list',$m)) {
foreach($m['message_list'] as $mm) {
$msg = array('body' => json_encode(array('success' => true, 'pickup' => array(array('notify' => $notify,'message' => $mm)))));
zot_import($msg,z_root());
}
}
else {
$msg = array('body' => json_encode(array('success' => true, 'pickup' => array(array('notify' => $notify,'message' => $m)))));
2015-09-22 09:32:04 +00:00
$dresult = zot_import($msg,z_root());
}
2015-12-15 08:42:19 +00:00
remove_queue_item($r[0]['outq_hash']);
2015-12-15 08:42:19 +00:00
2015-09-22 09:32:04 +00:00
if($dresult && is_array($dresult)) {
foreach($dresult as $xx) {
if(is_array($xx) && array_key_exists('message_id',$xx)) {
2015-10-17 20:26:55 +00:00
if(delivery_report_is_storable($xx)) {
q("insert into dreport ( dreport_mid, dreport_site, dreport_recip, dreport_result, dreport_time, dreport_xchan ) values ( '%s', '%s','%s','%s','%s','%s' ) ",
dbesc($xx['message_id']),
dbesc($xx['location']),
dbesc($xx['recipient']),
dbesc($xx['status']),
dbesc(datetime_convert($xx['date'])),
dbesc($xx['sender'])
);
}
2015-09-22 09:32:04 +00:00
}
}
}
2015-12-18 21:46:03 +00:00
q("delete from dreport where dreport_queue = '%s'",
2015-09-22 09:32:04 +00:00
dbesc($argv[$x])
);
}
}
2015-12-31 20:30:49 +00:00
// otherwise it's a remote delivery - call queue_deliver() with the $immediate flag
queue_deliver($r[0],true);
}
}
}
if (array_search(__file__,get_included_files())===0){
deliver_run($argv,$argc);
killme();
}