aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Deliver.php
blob: 394a7bf3ef8d3cf15cfa9324276a0c0a67d228e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php /** @file */

namespace Zotlabs\Daemon;

require_once('include/zot.php');
require_once('include/queue_fn.php');


class Deliver {
	
	static public function run($argc,$argv) {

		if($argc < 2)
			return;

		logger('deliver: invoked: ' . print_r($argv,true), LOGGER_DATA);

		for($x = 1; $x < $argc; $x ++) {

			if(! $argv[$x])
				continue;

			$dresult = null;
			$r = q("select * from outq where outq_hash = '%s' limit 1",
				dbesc($argv[$x])
			);
			if($r) {

				$notify = json_decode($r[0]['outq_notify'],true);

				// 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.

				if(($r[0]['outq_posturl'] === z_root() . '/post') && ($r[0]['outq_msg'])) {
					logger('deliver: local delivery', LOGGER_DEBUG);

					// 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)))));
							$dresult = zot_import($msg,z_root());
						}

						remove_queue_item($r[0]['outq_hash']);

						if($dresult && is_array($dresult)) {

							// delivery reports for local deliveries do not require encryption

							foreach($dresult as $xx) {
								if(is_array($xx) && array_key_exists('message_id',$xx)) {
									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'])
										);
									}
								}
							}
						}

						q("delete from dreport where dreport_queue = '%s'",
							dbesc($argv[$x])
						);
					}
				}

				// otherwise it's a remote delivery - call queue_deliver() with the $immediate flag

				queue_deliver($r[0],true);

			}
		}
	}
}