aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Hq.php
blob: 5c3ae9273076475756ef5496a8a8f7ede9ff5bbf (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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<?php
namespace Zotlabs\Module;

use App;
use Zotlabs\Widget\Messages;


require_once("include/bbcode.php");
require_once('include/security.php');
require_once('include/conversation.php');
require_once('include/acl_selectors.php');
require_once('include/items.php');


class Hq extends \Zotlabs\Web\Controller {

	function init() {
		if(! local_channel())
			return;
	}

	function get($update = 0, $load = false) {

		if(!local_channel()) {
			return;
		}

		App::$profile_uid = local_channel();

		$item_hash = '';

		if(argc() > 1 && argv(1) !== 'load') {
			$item_hash = unpack_link_id(argv(1));
		}

		if(isset($_REQUEST['mid'])) {
			$item_hash = unpack_link_id($_REQUEST['mid']);
		}

		if($item_hash === false) {
			notice(t('Malformed message id.') . EOL);
			return;
		}

		$item_normal = item_normal();
		$item_normal_update = item_normal_update();
		$sys = get_sys_channel();
		$sys_item = false;
		$sql_extra = '';
		$target_item = null;
		$o = '';

		if($item_hash) {
			// select the target item with a bias to our own item
			$sql_order = ((local_channel() > $sys['channel_id']) ? 'DESC' : 'ASC');

			$r = q("select id, uid, mid, parent_mid, thr_parent, verb, item_type, item_deleted, item_blocked from item where uid in (%d, %d) and mid = '%s' order by uid $sql_order limit 2",
				intval(local_channel()),
				intval($sys['channel_id']),
				dbesc($item_hash)
			);

			if($r) {
				$target_item = $r[0];
				if (intval($target_item['uid']) === intval($sys['channel_id'])) {
					$sys_item = true;
				}
			}

			$simple_update = '';
			if($update && $_SESSION['loadtime'])
				$simple_update = " AND (( item_unseen = 1 AND item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' )  OR item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ) ";

		}

		if(! $update) {
			$channel = App::get_channel();

			$channel_acl = [
				'allow_cid' => $channel['channel_allow_cid'],
				'allow_gid' => $channel['channel_allow_gid'],
				'deny_cid'  => $channel['channel_deny_cid'],
				'deny_gid'  => $channel['channel_deny_gid']
			];

			$x = [
				'is_owner'            => true,
				'profile_uid'         => $channel['channel_id'],
				'allow_location'      => ((intval(get_pconfig($channel['channel_id'],'system','use_browser_location'))) ? '1' : ''),
				'default_location'    => $channel['channel_location'],
				'nickname'            => $channel['channel_address'],
				'lockstate'           => (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
				'acl'                 => populate_acl($channel_acl,true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'),
				'permissions'         => $channel_acl,
				'bang'                => '',
				'visitor'             => true,
				'profile_uid'         => local_channel(),
				'return_path'         => 'hq',
				'expanded'            => true,
				'editor_autocomplete' => true,
				'bbco_autocomplete'   => 'bbcode',
				'bbcode'              => true,
				'jotnets'             => true,
				'reset'               => t('Reset form')
			];

			$a = '';
			$o .= status_editor($x, true, 'Hq');

		}

		if(! $update && ! $load) {

			nav_set_selected('HQ');

			if($target_item) {
				// if the target item is not a post (eg a like) we want to address its thread parent
				//$mid = ((($target_item['verb'] == ACTIVITY_LIKE) || ($target_item['verb'] == ACTIVITY_DISLIKE)) ? $target_item['thr_parent'] : $target_item['mid']);

				// if we got a decoded hash we must encode it again before handing to javascript
				$mid = gen_link_id($target_item['mid']);
			}
			else {
				$mid = '';
			}

			$o .= '<div id="live-hq"></div>' . "\r\n";
			$o .= "<script> var profile_uid = " . local_channel()
				. "; var netargs = '?f='; var profile_page = " . App::$pager['page'] . ";</script>\r\n";

			App::$page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),[
				'$baseurl' => z_root(),
				'$pgtype'  => 'hq',
				'$uid'     => local_channel(),
				'$gid'     => '0',
				'$cid'     => '0',
				'$cmin'    => '0',
				'$cmax'    => '99',
				'$star'    => '0',
				'$liked'   => '0',
				'$conv'    => '0',
				'$spam'    => '0',
				'$fh'      => '0',
				'$dm'      => '0',
				'$nouveau' => '0',
				'$wall'    => '0',
				'$page'    => '1',
				'$list'    => ((x($_REQUEST,'list')) ? intval($_REQUEST['list']) : 0),
				'$search'  => '',
				'$xchan'   => '',
				'$order'   => '',
				'$file'    => '',
				'$cats'    => '',
				'$tags'    => '',
				'$dend'    => '',
				'$dbegin'  => '',
				'$verb'    => '',
				'$net'     => '',
				'$mid'     => (($mid) ? urlencode($mid) : '')
			]);
		}

		if($load && $target_item) {

			if (!$sys_item) {
				$r = q("SELECT item.id AS item_id FROM item
					WHERE uid = %d
					AND mid = '%s'
					$item_normal
					LIMIT 1",
					intval(local_channel()),
					dbesc($target_item['parent_mid'])
				);
			}
			else {
				$sql_extra = item_permissions_sql($sys['channel_id']);

				$r = q("SELECT item.id AS item_id FROM item
					LEFT JOIN abook ON item.author_xchan = abook.abook_xchan
					WHERE mid = '%s' AND item.uid = %d $item_normal
					AND (abook.abook_blocked = 0 or abook.abook_flags is null)
					$sql_extra LIMIT 1",
					dbesc($target_item['parent_mid']),
					intval($sys['channel_id'])
				);
			}
		}
		elseif($update && $target_item) {
			if (!$sys_item) {
				$r = q("SELECT item.parent AS item_id FROM item
					WHERE uid = %d
					AND parent_mid = '%s'
					$item_normal_update
					$simple_update
					LIMIT 1",
					intval(local_channel()),
					dbesc($target_item['parent_mid'])
				);
			}
			else {
				$sql_extra = item_permissions_sql($sys['channel_id']);

				$r = q("SELECT item.parent AS item_id FROM item
					LEFT JOIN abook ON item.author_xchan = abook.abook_xchan
					WHERE mid = '%s' AND item.uid = %d $item_normal_update $simple_update
					AND (abook.abook_blocked = 0 or abook.abook_flags is null)
					$sql_extra LIMIT 1",
					dbesc($target_item['parent_mid']),
					intval($sys['channel_id'])
				);
			}
		}
		else {
			$r = [];
		}

		if($r) {
			$items = q("SELECT item.*, item.id AS item_id
				FROM item
				WHERE parent = '%s' $item_normal $sql_extra",
				dbesc($r[0]['item_id'])
			);

			xchan_query($items,true,(($sys_item) ? local_channel() : 0));
			$items = fetch_post_tags($items,true);
			$items = conv_sort($items,'created');
		}
		else {
			$items = [];
		}

		$o .= conversation($items, 'hq', $update, 'client');

		$o .= '<div id="content-complete"></div>';

		$_SESSION['loadtime'] = datetime_convert();

		return $o;

	}

	function post() {
		if (!local_channel())
			return;

		$options['offset'] = $_REQUEST['offset'] ?? 0;
		$options['type'] = $_REQUEST['type'] ?? '';
		$options['author'] = ((isset($_REQUEST['author'])) ? urldecode($_REQUEST['author']) : '');

		$ret = Messages::get_messages_page($options);

		json_return_and_die($ret);
	}

}