aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Widget/Conversations.php
blob: 3dc260b5027cf63cddf165e2f86091351ff333f9 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php

namespace Zotlabs\Widget;

class Conversations {

	function widget($arr) {

		if (! local_channel())
			return;

		switch(argv(1)) {
			case 'inbox':
				$mailbox = 'inbox';
				$header = t('Received Messages');
				break;
			case 'outbox':
				$mailbox = 'outbox';
				$header = t('Sent Messages');
				break;
			default:
				$mailbox = 'combined';
				$header = t('Conversations');
				break;
		}

		$o = '';

		// private_messages_list() can do other more complicated stuff, for now keep it simple
		$r = self::private_messages_list(local_channel(), $mailbox, \App::$pager['start'], \App::$pager['itemspage']);

		if(! $r) {
			info( t('No messages.') . EOL);
			return $o;
		}

		$messages = [];

		foreach($r as $rr) {

			$selected = ((argc() == 3) ? intval(argv(2)) == intval($rr['id']) : $r[0]['id'] == $rr['id']);

			$messages[] = [
				'mailbox'      => $mailbox,
				'id'           => $rr['id'],
				'from_name'    => $rr['from']['xchan_name'],
				'from_url'     => chanlink_hash($rr['from_xchan']),
				'from_photo'   => $rr['from']['xchan_photo_s'],
				'to_name'      => $rr['to']['xchan_name'],
				'to_url'       => chanlink_hash($rr['to_xchan']),
				'to_photo'     => $rr['to']['xchan_photo_s'],
				'subject'      => (($rr['seen']) ? $rr['title'] : '<strong>' . $rr['title'] . '</strong>'),
				'delete'       => t('Delete conversation'),
				'body'         => $rr['body'],
				'date'         => datetime_convert('UTC',date_default_timezone_get(),$rr['created'], 'c'),
				'seen'         => $rr['seen'],
				'selected'     => ((argv(1) != 'new') ? $selected : '')
			];
		}

		$tpl = get_markup_template('mail_head.tpl');
		$o .= replace_macros($tpl, [
			'$header' => $header,
			'$messages' => $messages
		]);

		return $o;
	}

	function private_messages_list($uid, $mailbox = '', $start = 0, $numitems = 0) {

		$where = '';
		$limit = '';

		$t0 = dba_timer();

		if($numitems)
			$limit = " LIMIT " . intval($numitems) . " OFFSET " . intval($start);

		if($mailbox !== '') {
			$x = q("select channel_hash from channel where channel_id = %d limit 1",
				intval($uid)
			);

			if(! $x)
				return array();

			$channel_hash = dbesc($x[0]['channel_hash']);
			$local_channel = intval(local_channel());

			switch($mailbox) {

				case 'inbox':
					$sql = "SELECT * FROM mail WHERE channel_id = $local_channel AND from_xchan != '$channel_hash' ORDER BY created DESC $limit";
					break;

				case 'outbox':
					$sql = "SELECT * FROM mail WHERE channel_id = $local_channel AND from_xchan = '$channel_hash' ORDER BY created DESC $limit";
					break;

				case 'combined':
				default:
					$parents = q("SELECT mail.parent_mid FROM mail LEFT JOIN conv ON mail.conv_guid = conv.guid WHERE mail.mid = mail.parent_mid AND mail.channel_id = %d ORDER BY conv.updated DESC $limit",
						intval($local_channel)
					);
					break;
			}

		}

		$r = null;

		if($parents) {
			foreach($parents as $parent) {
				$all = q("SELECT * FROM mail WHERE parent_mid = '%s' AND channel_id = %d ORDER BY created DESC limit 1",
					dbesc($parent['parent_mid']),
					intval($local_channel)
				);

				if($all) {
					foreach($all as $single) {
						$r[] = $single;
					}
				}
			}
		}
		elseif($sql) {
			$r = q($sql);
		}

		if(! $r) {
			return array();
		}

		$chans = array();
		foreach($r as $rr) {
			$s = "'" . dbesc(trim($rr['from_xchan'])) . "'";
			if(! in_array($s,$chans))
				$chans[] = $s;
			$s = "'" . dbesc(trim($rr['to_xchan'])) . "'";
			if(! in_array($s,$chans))
				$chans[] = $s;
		}

		$c = q("select * from xchan where xchan_hash in (" . protect_sprintf(implode(',',$chans)) . ")");

		foreach($r as $k => $rr) {
			$r[$k]['from'] = find_xchan_in_array($rr['from_xchan'],$c);
			$r[$k]['to']   = find_xchan_in_array($rr['to_xchan'],$c);
			$r[$k]['seen'] = intval($rr['mail_seen']);
			if(intval($r[$k]['mail_obscured'])) {
				if($r[$k]['title'])
					$r[$k]['title'] = base64url_decode(str_rot47($r[$k]['title']));
				if($r[$k]['body'])
					$r[$k]['body'] = base64url_decode(str_rot47($r[$k]['body']));
			}
		}

		return $r;
	}

}