]> git.mxchange.org Git - friendica.git/blob - mod/network.php
Merge pull request #6219 from MrPetovan/task/remove-x
[friendica.git] / mod / network.php
1 <?php
2
3 /**
4  * @file mod/network.php
5  */
6
7 use Friendica\App;
8 use Friendica\Content\Feature;
9 use Friendica\Content\ForumManager;
10 use Friendica\Content\Nav;
11 use Friendica\Content\Pager;
12 use Friendica\Content\Widget;
13 use Friendica\Content\Text\HTML;
14 use Friendica\Core\ACL;
15 use Friendica\Core\Addon;
16 use Friendica\Core\Config;
17 use Friendica\Core\Hook;
18 use Friendica\Core\L10n;
19 use Friendica\Core\Logger;
20 use Friendica\Core\PConfig;
21 use Friendica\Core\Protocol;
22 use Friendica\Core\Renderer;
23 use Friendica\Database\DBA;
24 use Friendica\Model\Contact;
25 use Friendica\Model\Group;
26 use Friendica\Model\Item;
27 use Friendica\Model\Profile;
28 use Friendica\Module\Login;
29 use Friendica\Util\DateTimeFormat;
30 use Friendica\Util\Proxy as ProxyUtils;
31 use Friendica\Util\Strings;
32
33 require_once 'include/conversation.php';
34 require_once 'include/items.php';
35
36 function network_init(App $a)
37 {
38         if (!local_user()) {
39                 notice(L10n::t('Permission denied.') . EOL);
40                 return;
41         }
42
43         Hook::add('head', __FILE__, 'network_infinite_scroll_head');
44
45         $search = (!empty($_GET['search']) ? Strings::escapeHtml($_GET['search']) : '');
46
47         if (($search != '') && !empty($_GET['submit'])) {
48                 $a->internalRedirect('search?search=' . urlencode($search));
49         }
50
51         if (!empty($_GET['save'])) {
52                 $exists = DBA::exists('search', ['uid' => local_user(), 'term' => $search]);
53                 if (!$exists) {
54                         DBA::insert('search', ['uid' => local_user(), 'term' => $search]);
55                 }
56         }
57         if (!empty($_GET['remove'])) {
58                 DBA::delete('search', ['uid' => local_user(), 'term' => $search]);
59         }
60
61         $is_a_date_query = false;
62
63         $group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0);
64
65         $cid = 0;
66         if (!empty($_GET['cid'])) {
67                 $cid = $_GET['cid'];
68                 $_GET['nets'] = 'all';
69                 $group_id = 0;
70         }
71
72         if ($a->argc > 1) {
73                 for ($x = 1; $x < $a->argc; $x ++) {
74                         if (is_a_date_arg($a->argv[$x])) {
75                                 $is_a_date_query = true;
76                                 break;
77                         }
78                 }
79         }
80
81         // convert query string to array. remove friendica args
82         $query_array = [];
83         $query_string = str_replace($a->cmd . '?', '', $a->query_string);
84         parse_str($query_string, $query_array);
85         array_shift($query_array);
86
87         // fetch last used network view and redirect if needed
88         if (!$is_a_date_query) {
89                 $sel_nets = defaults($_GET, 'nets', false);
90                 $sel_tabs = network_query_get_sel_tab($a);
91                 $sel_groups = network_query_get_sel_group($a);
92                 $last_sel_tabs = PConfig::get(local_user(), 'network.view', 'tab.selected');
93
94                 $remember_tab = ($sel_tabs[0] === 'active' && is_array($last_sel_tabs) && $last_sel_tabs[0] !== 'active');
95
96                 $net_baseurl = '/network';
97                 $net_args = [];
98
99                 if ($sel_groups !== false) {
100                         $net_baseurl .= '/' . $sel_groups;
101                 }
102
103                 if ($remember_tab) {
104                         // redirect if current selected tab is '/network' and
105                         // last selected tab is _not_ '/network?f=&order=comment'.
106                         // and this isn't a date query
107
108                         $tab_baseurls = [
109                                 '',     //all
110                                 '',     //postord
111                                 '',     //conv
112                                 '/new', //new
113                                 '',     //starred
114                                 '',     //bookmarked
115                         ];
116                         $tab_args = [
117                                 'f=&order=comment', //all
118                                 'f=&order=post',    //postord
119                                 'f=&conv=1',        //conv
120                                 '',                 //new
121                                 'f=&star=1',        //starred
122                                 'f=&bmark=1',       //bookmarked
123                         ];
124
125                         $k = array_search('active', $last_sel_tabs);
126
127                         if ($k != 3) {
128                                 $net_baseurl .= $tab_baseurls[$k];
129
130                                 // parse out tab queries
131                                 $dest_qa = [];
132                                 $dest_qs = $tab_args[$k];
133                                 parse_str($dest_qs, $dest_qa);
134                                 $net_args = array_merge($net_args, $dest_qa);
135                         } else {
136                                 $remember_tab = false;
137                         }
138                 }
139
140                 if ($sel_nets !== false) {
141                         $net_args['nets'] = $sel_nets;
142                 }
143
144                 if ($remember_tab) {
145                         $net_args = array_merge($query_array, $net_args);
146                         $net_queries = build_querystring($net_args);
147
148                         $redir_url = ($net_queries ? $net_baseurl . '?' . $net_queries : $net_baseurl);
149
150                         $a->internalRedirect($redir_url);
151                 }
152         }
153
154         // If nets is set to all, unset it
155         if (!empty($_GET['nets']) && $_GET['nets'] === 'all') {
156                 unset($_GET['nets']);
157         }
158
159         if (empty($a->page['aside'])) {
160                 $a->page['aside'] = '';
161         }
162
163         $a->page['aside'] .= Group::sidebarWidget('network/0', 'network', 'standard', $group_id);
164         $a->page['aside'] .= ForumManager::widget(local_user(), $cid);
165         $a->page['aside'] .= posted_date_widget('network', local_user(), false);
166         $a->page['aside'] .= Widget::networks('network', defaults($_GET, 'nets', '') );
167         $a->page['aside'] .= saved_searches($search);
168         $a->page['aside'] .= Widget::fileAs('network', defaults($_GET, 'file', '') );
169 }
170
171 function saved_searches($search)
172 {
173         $srchurl = '/network?f='
174                 . (!empty($_GET['cid'])   ? '&cid='   . rawurlencode($_GET['cid'])   : '')
175                 . (!empty($_GET['star'])  ? '&star='  . rawurlencode($_GET['star'])  : '')
176                 . (!empty($_GET['bmark']) ? '&bmark=' . rawurlencode($_GET['bmark']) : '')
177                 . (!empty($_GET['conv'])  ? '&conv='  . rawurlencode($_GET['conv'])  : '')
178                 . (!empty($_GET['nets'])  ? '&nets='  . rawurlencode($_GET['nets'])  : '')
179                 . (!empty($_GET['cmin'])  ? '&cmin='  . rawurlencode($_GET['cmin'])  : '')
180                 . (!empty($_GET['cmax'])  ? '&cmax='  . rawurlencode($_GET['cmax'])  : '')
181                 . (!empty($_GET['file'])  ? '&file='  . rawurlencode($_GET['file'])  : '');
182         ;
183
184         $terms = DBA::select('search', ['id', 'term'], ['uid' => local_user()]);
185         $saved = [];
186
187         while ($rr = DBA::fetch($terms)) {
188                 $saved[] = [
189                         'id'          => $rr['id'],
190                         'term'        => $rr['term'],
191                         'encodedterm' => urlencode($rr['term']),
192                         'delete'      => L10n::t('Remove term'),
193                         'selected'    => ($search == $rr['term']),
194                 ];
195         }
196
197         $tpl = Renderer::getMarkupTemplate('saved_searches_aside.tpl');
198         $o = Renderer::replaceMacros($tpl, [
199                 '$title'     => L10n::t('Saved Searches'),
200                 '$add'       => L10n::t('add'),
201                 '$searchbox' => HTML::search($search, 'netsearch-box', $srchurl),
202                 '$saved'     => $saved,
203         ]);
204
205         return $o;
206 }
207
208 /**
209  * Return selected tab from query
210  *
211  * urls -> returns
212  *              '/network'                                      => $no_active = 'active'
213  *              '/network?f=&order=comment'     => $comment_active = 'active'
214  *              '/network?f=&order=post'        => $postord_active = 'active'
215  *              '/network?f=&conv=1',           => $conv_active = 'active'
216  *              '/network/new',                         => $new_active = 'active'
217  *              '/network?f=&star=1',           => $starred_active = 'active'
218  *              '/network?f=&bmark=1',          => $bookmarked_active = 'active'
219  *
220  * @return Array ($no_active, $comment_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active);
221  */
222 function network_query_get_sel_tab(App $a)
223 {
224         $no_active = '';
225         $starred_active = '';
226         $new_active = '';
227         $bookmarked_active = '';
228         $all_active = '';
229         $conv_active = '';
230         $postord_active = '';
231
232         if (($a->argc > 1 && $a->argv[1] === 'new') || ($a->argc > 2 && $a->argv[2] === 'new')) {
233                 $new_active = 'active';
234         }
235
236         if (!empty($_GET['star'])) {
237                 $starred_active = 'active';
238         }
239
240         if (!empty($_GET['bmark'])) {
241                 $bookmarked_active = 'active';
242         }
243
244         if (!empty($_GET['conv'])) {
245                 $conv_active = 'active';
246         }
247
248         if (($new_active == '') && ($starred_active == '') && ($bookmarked_active == '') && ($conv_active == '')) {
249                 $no_active = 'active';
250         }
251
252         if ($no_active == 'active' && !empty($_GET['order'])) {
253                 switch($_GET['order']) {
254                         case 'post'    : $postord_active = 'active'; $no_active=''; break;
255                         case 'comment' : $all_active     = 'active'; $no_active=''; break;
256                 }
257         }
258
259         return [$no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active];
260 }
261
262 function network_query_get_sel_group(App $a)
263 {
264         $group = false;
265
266         if ($a->argc >= 2 && is_numeric($a->argv[1])) {
267                 $group = $a->argv[1];
268         }
269
270         return $group;
271 }
272
273 /**
274  * @brief Sets the pager data and returns SQL
275  *
276  * @param App $a The global App
277  * @param integer $update Used for the automatic reloading
278  * @return string SQL with the appropriate LIMIT clause
279  */
280 function networkPager(App $a, Pager $pager, $update)
281 {
282         if ($update) {
283                 // only setup pagination on initial page view
284                 return ' LIMIT 100';
285         }
286
287         //  check if we serve a mobile device and get the user settings
288         //  accordingly
289         if ($a->is_mobile) {
290                 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network');
291                 $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
292         } else {
293                 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network');
294                 $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
295         }
296
297         //  now that we have the user settings, see if the theme forces
298         //  a maximum item number which is lower then the user choice
299         if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
300                 $itemspage_network = $a->force_max_items;
301         }
302
303         $pager->setItemsPerPage($itemspage_network);
304
305         return sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
306 }
307
308 /**
309  * @brief Sets items as seen
310  *
311  * @param array $condition The array with the SQL condition
312  */
313 function networkSetSeen($condition)
314 {
315         if (empty($condition)) {
316                 return;
317         }
318
319         $unseen = Item::exists($condition);
320
321         if ($unseen) {
322                 $r = Item::update(['unseen' => false], $condition);
323         }
324 }
325
326 /**
327  * @brief Create the conversation HTML
328  *
329  * @param App     $a      The global App
330  * @param array   $items  Items of the conversation
331  * @param string  $mode   Display mode for the conversation
332  * @param integer $update Used for the automatic reloading
333  * @return string HTML of the conversation
334  */
335 function networkConversation(App $a, $items, Pager $pager, $mode, $update, $ordering = '')
336 {
337         // Set this so that the conversation function can find out contact info for our wall-wall items
338         $a->page_contact = $a->contact;
339
340         if (!is_array($items)) {
341                 Logger::log("Expecting items to be an array. Got " . print_r($items, true));
342                 $items = [];
343         }
344
345         $o = conversation($a, $items, $pager, $mode, $update, false, $ordering, local_user());
346
347         if (!$update) {
348                 if (PConfig::get(local_user(), 'system', 'infinite_scroll')) {
349                         $o .= HTML::scrollLoader();
350                 } else {
351                         $o .= $pager->renderMinimal(count($items));
352                 }
353         }
354
355         return $o;
356 }
357
358 function network_content(App $a, $update = 0, $parent = 0)
359 {
360         if (!local_user()) {
361                 return Login::form();
362         }
363
364         /// @TODO Is this really necessary? $a is already available to hooks
365         $arr = ['query' => $a->query_string];
366         Addon::callHooks('network_content_init', $arr);
367
368         $flat_mode = false;
369
370         if ($a->argc > 1) {
371                 for ($x = 1; $x < $a->argc; $x ++) {
372                         if ($a->argv[$x] === 'new') {
373                                 $flat_mode = true;
374                         }
375                 }
376         }
377
378         if (!empty($_GET['file'])) {
379                 $flat_mode = true;
380         }
381
382         if ($flat_mode) {
383                 $o = networkFlatView($a, $update);
384         } else {
385                 $o = networkThreadedView($a, $update, $parent);
386         }
387
388         if ($o === '') {
389                 info("No items found");
390         }
391
392         return $o;
393 }
394
395 /**
396  * @brief Get the network content in flat view
397  *
398  * @param Pager   $pager
399  * @param App     $a      The global App
400  * @param integer $update Used for the automatic reloading
401  * @return string HTML of the network content in flat view
402  */
403 function networkFlatView(App $a, $update = 0)
404 {
405         global $pager;
406         // Rawmode is used for fetching new content at the end of the page
407         $rawmode = (isset($_GET['mode']) && ($_GET['mode'] == 'raw'));
408
409         if (isset($_GET['last_id'])) {
410                 $last_id = intval($_GET['last_id']);
411         } else {
412                 $last_id = 0;
413         }
414
415         $o = '';
416
417         $file = defaults($_GET, 'file', '');
418
419         if (!$update && !$rawmode) {
420                 $tabs = network_tabs($a);
421                 $o .= $tabs;
422
423                 Nav::setSelected('network');
424
425                 $x = [
426                         'is_owner' => true,
427                         'allow_location' => $a->user['allow_location'],
428                         'default_location' => $a->user['default-location'],
429                         'nickname' => $a->user['nickname'],
430                         'lockstate' => (is_array($a->user) &&
431                         (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) ||
432                         strlen($a->user['deny_cid']) || strlen($a->user['deny_gid'])) ? 'lock' : 'unlock'),
433                         'default_perms' => ACL::getDefaultUserPermissions($a->user),
434                         'acl' => ACL::getFullSelectorHTML($a->user, true),
435                         'bang' => '',
436                         'visitor' => 'block',
437                         'profile_uid' => local_user(),
438                         'content' => '',
439                 ];
440
441                 $o .= status_editor($a, $x);
442
443                 if (!Config::get('theme', 'hide_eventlist')) {
444                         $o .= Profile::getBirthdays();
445                         $o .= Profile::getEventsReminderHTML();
446                 }
447         }
448
449         $pager = new Pager($a->query_string);
450
451         /// @TODO Figure out why this variable is unused
452         $pager_sql = networkPager($a, $pager, $update);
453
454         if (strlen($file)) {
455                 $condition = ["`term` = ? AND `otype` = ? AND `type` = ? AND `uid` = ?",
456                         $file, TERM_OBJ_POST, TERM_FILE, local_user()];
457                 $params = ['order' => ['tid' => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
458                 $result = DBA::select('term', ['oid'], $condition);
459
460                 $posts = [];
461                 while ($term = DBA::fetch($result)) {
462                         $posts[] = $term['oid'];
463                 }
464                 DBA::close($result);
465
466                 if (count($posts) == 0) {
467                         return '';
468                 }
469                 $condition = ['uid' => local_user(), 'id' => $posts];
470         } else {
471                 $condition = ['uid' => local_user()];
472         }
473
474         $params = ['order' => ['id' => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
475         $result = Item::selectForUser(local_user(), [], $condition, $params);
476         $items = Item::inArray($result);
477
478         $condition = ['unseen' => true, 'uid' => local_user()];
479         networkSetSeen($condition);
480
481         $o .= networkConversation($a, $items, $pager, 'network-new', $update);
482
483         return $o;
484 }
485
486 /**
487  * @brief Get the network content in threaded view
488  *
489  * @global Pager   $pager
490  * @param  App     $a      The global App
491  * @param  integer $update Used for the automatic reloading
492  * @param  integer $parent
493  * @return string HTML of the network content in flat view
494  */
495 function networkThreadedView(App $a, $update, $parent)
496 {
497         /// @TODO this will have to be converted to a static property of the converted Module\Network class
498         global $pager;
499
500         // Rawmode is used for fetching new content at the end of the page
501         $rawmode = (isset($_GET['mode']) AND ( $_GET['mode'] == 'raw'));
502
503         if (isset($_GET['last_received']) && isset($_GET['last_commented']) && isset($_GET['last_created']) && isset($_GET['last_id'])) {
504                 $last_received = DateTimeFormat::utc($_GET['last_received']);
505                 $last_commented = DateTimeFormat::utc($_GET['last_commented']);
506                 $last_created = DateTimeFormat::utc($_GET['last_created']);
507                 $last_id = intval($_GET['last_id']);
508         } else {
509                 $last_received = '';
510                 $last_commented = '';
511                 $last_created = '';
512                 $last_id = 0;
513         }
514
515         $datequery = $datequery2 = '';
516
517         $gid = 0;
518
519         $default_permissions = [];
520
521         if ($a->argc > 1) {
522                 for ($x = 1; $x < $a->argc; $x ++) {
523                         if (is_a_date_arg($a->argv[$x])) {
524                                 if ($datequery) {
525                                         $datequery2 = Strings::escapeHtml($a->argv[$x]);
526                                 } else {
527                                         $datequery = Strings::escapeHtml($a->argv[$x]);
528                                         $_GET['order'] = 'post';
529                                 }
530                         } elseif (intval($a->argv[$x])) {
531                                 $gid = intval($a->argv[$x]);
532                                 $default_permissions = ['allow_gid' => '<' . $gid . '>'];
533                         }
534                 }
535         }
536
537         $o = '';
538
539         $cid   = intval(defaults($_GET, 'cid'  , 0));
540         $star  = intval(defaults($_GET, 'star' , 0));
541         $bmark = intval(defaults($_GET, 'bmark', 0));
542         $conv  = intval(defaults($_GET, 'conv' , 0));
543         $order = Strings::escapeTags(defaults($_GET, 'order', 'comment'));
544         $nets  =        defaults($_GET, 'nets' , '');
545
546         if ($cid) {
547                 $default_permissions = ['allow_cid' => '<' . intval($cid) . '>'];
548         }
549
550         if ($nets) {
551                 $r = DBA::select('contact', ['id'], ['uid' => local_user(), 'network' => $nets], ['self' => false]);
552
553                 $str = '';
554                 while ($rr = DBA::fetch($r)) {
555                         $str .= '<' . $rr['id'] . '>';
556                 }
557                 if (strlen($str)) {
558                         $default_permissions = ['allow_cid' => $str];
559                 }
560         }
561
562         if (!$update && !$rawmode) {
563                 $tabs = network_tabs($a);
564                 $o .= $tabs;
565
566                 if ($gid && ($t = Contact::getOStatusCountByGroupId($gid)) && !PConfig::get(local_user(), 'system', 'nowarn_insecure')) {
567                         notice(L10n::tt("Warning: This group contains %s member from a network that doesn't allow non public messages.",
568                                 "Warning: This group contains %s members from a network that doesn't allow non public messages.",
569                                 $t) . EOL);
570                         notice(L10n::t("Messages in this group won't be send to these receivers.").EOL);
571                 }
572
573                 Nav::setSelected('network');
574
575                 $content = '';
576
577                 if ($cid) {
578                         // If $cid belongs to a communitity forum or a privat goup,.add a mention to the status editor
579                         $condition = ["`id` = ? AND (`forum` OR `prv`)", $cid];
580                         $contact = DBA::selectFirst('contact', ['addr', 'nick'], $condition);
581                         if (DBA::isResult($contact)) {
582                                 if ($contact['addr'] != '') {
583                                         $content = '!' . $contact['addr'];
584                                 } else {
585                                         $content = '!' . $contact['nick'] . '+' . $cid;
586                                 }
587                         }
588                 }
589
590                 $x = [
591                         'is_owner' => true,
592                         'allow_location' => $a->user['allow_location'],
593                         'default_location' => $a->user['default-location'],
594                         'nickname' => $a->user['nickname'],
595                         'lockstate' => ($gid || $cid || $nets || (is_array($a->user) &&
596                         (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) ||
597                         strlen($a->user['deny_cid']) || strlen($a->user['deny_gid']))) ? 'lock' : 'unlock'),
598                         'default_perms' => ACL::getDefaultUserPermissions($a->user),
599                         'acl' => ACL::getFullSelectorHTML($a->user, true, $default_permissions),
600                         'bang' => (($gid || $cid || $nets) ? '!' : ''),
601                         'visitor' => 'block',
602                         'profile_uid' => local_user(),
603                         'content' => $content,
604                 ];
605
606                 $o .= status_editor($a, $x);
607         }
608
609         // We don't have to deal with ACLs on this page. You're looking at everything
610         // that belongs to you, hence you can see all of it. We will filter by group if
611         // desired.
612
613         $sql_post_table = '';
614         $sql_options = ($star ? " AND `thread`.`starred` " : '');
615         $sql_options .= ($bmark ? sprintf(" AND `thread`.`post-type` = %d ", Item::PT_PAGE) : '');
616         $sql_extra = $sql_options;
617         $sql_extra2 = '';
618         $sql_extra3 = '';
619         $sql_table = '`thread`';
620         $sql_parent = '`iid`';
621         $sql_order = '';
622
623         if ($update) {
624                 $sql_table = '`item`';
625                 $sql_parent = '`parent`';
626                 $sql_post_table = " INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`";
627         }
628
629         $sql_nets = (($nets) ? sprintf(" AND $sql_table.`network` = '%s' ", DBA::escape($nets)) : '');
630         $sql_tag_nets = (($nets) ? sprintf(" AND `item`.`network` = '%s' ", DBA::escape($nets)) : '');
631
632         if ($gid) {
633                 $group = DBA::selectFirst('group', ['name'], ['id' => $gid, 'uid' => local_user()]);
634                 if (!DBA::isResult($group)) {
635                         if ($update) {
636                                 killme();
637                         }
638                         notice(L10n::t('No such group') . EOL);
639                         $a->internalRedirect('network/0');
640                         // NOTREACHED
641                 }
642
643                 $contacts = Group::expand([$gid]);
644
645                 if ((is_array($contacts)) && count($contacts)) {
646                         $contact_str_self = '';
647
648                         $contact_str = implode(',', $contacts);
649                         $self = DBA::selectFirst('contact', ['id'], ['uid' => local_user(), 'self' => true]);
650                         if (DBA::isResult($self)) {
651                                 $contact_str_self = $self['id'];
652                         }
653
654                         $sql_post_table .= " INNER JOIN `item` AS `temp1` ON `temp1`.`id` = " . $sql_table . "." . $sql_parent;
655                         $sql_extra3 .= " AND (`thread`.`contact-id` IN ($contact_str) ";
656                         $sql_extra3 .= " OR (`thread`.`contact-id` = '$contact_str_self' AND `temp1`.`allow_gid` LIKE '" . Strings::protectSprintf('%<' . intval($gid) . '>%') . "' AND `temp1`.`private`))";
657                 } else {
658                         $sql_extra3 .= " AND false ";
659                         info(L10n::t('Group is empty'));
660                 }
661
662                 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [
663                         '$title' => L10n::t('Group: %s', $group['name'])
664                 ]) . $o;
665         } elseif ($cid) {
666                 $fields = ['id', 'name', 'network', 'writable', 'nurl',
667                         'forum', 'prv', 'contact-type', 'addr', 'thumb', 'location'];
668                 $condition = ["`id` = ? AND (NOT `blocked` OR `pending`)", $cid];
669                 $contact = DBA::selectFirst('contact', $fields, $condition);
670                 if (DBA::isResult($contact)) {
671                         $sql_extra = " AND " . $sql_table . ".`contact-id` = " . intval($cid);
672
673                         $entries[0] = [
674                                 'id' => 'network',
675                                 'name' => htmlentities($contact['name']),
676                                 'itemurl' => defaults($contact, 'addr', $contact['nurl']),
677                                 'thumb' => ProxyUtils::proxifyUrl($contact['thumb'], false, ProxyUtils::SIZE_THUMB),
678                                 'details' => $contact['location'],
679                         ];
680
681                         $entries[0]['account_type'] = Contact::getAccountType($contact);
682
683                         $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('viewcontact_template.tpl'), [
684                                 'contacts' => $entries,
685                                 'id' => 'network',
686                         ]) . $o;
687
688                         if ($contact['network'] === Protocol::OSTATUS && $contact['writable'] && !PConfig::get(local_user(),'system','nowarn_insecure')) {
689                                 notice(L10n::t('Private messages to this person are at risk of public disclosure.') . EOL);
690                         }
691                 } else {
692                         notice(L10n::t('Invalid contact.') . EOL);
693                         $a->internalRedirect('network');
694                         // NOTREACHED
695                 }
696         }
697
698         if (!$gid && !$cid && !$update && !Config::get('theme', 'hide_eventlist')) {
699                 $o .= Profile::getBirthdays();
700                 $o .= Profile::getEventsReminderHTML();
701         }
702
703         if ($datequery) {
704                 $sql_extra3 .= Strings::protectSprintf(sprintf(" AND $sql_table.created <= '%s' ",
705                                 DBA::escape(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));
706         }
707         if ($datequery2) {
708                 $sql_extra3 .= Strings::protectSprintf(sprintf(" AND $sql_table.created >= '%s' ",
709                                 DBA::escape(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
710         }
711
712         if ($conv) {
713                 $sql_extra3 .= " AND $sql_table.`mention`";
714         }
715
716         // Normal conversation view
717         if ($order === 'post') {
718                 $ordering = '`created`';
719                 $order_mode = 'created';
720         } else {
721                 $ordering = '`commented`';
722                 $order_mode = 'commented';
723         }
724
725         $sql_order = "$sql_table.$ordering";
726
727         if (!empty($_GET['offset'])) {
728                 $sql_range = sprintf(" AND $sql_order <= '%s'", DBA::escape($_GET['offset']));
729         } else {
730                 $sql_range = '';
731         }
732
733         $pager = new Pager($a->query_string);
734
735         $pager_sql = networkPager($a, $pager, $update);
736
737         $last_date = '';
738
739         switch ($order_mode) {
740                 case 'received':
741                         if ($last_received != '') {
742                                 $last_date = $last_received;
743                                 $sql_range .= sprintf(" AND $sql_table.`received` < '%s'", DBA::escape($last_received));
744                                 $pager->setPage(1);
745                                 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
746                         }
747                         break;
748                 case 'commented':
749                         if ($last_commented != '') {
750                                 $last_date = $last_commented;
751                                 $sql_range .= sprintf(" AND $sql_table.`commented` < '%s'", DBA::escape($last_commented));
752                                 $pager->setPage(1);
753                                 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
754                         }
755                         break;
756                 case 'created':
757                         if ($last_created != '') {
758                                 $last_date = $last_created;
759                                 $sql_range .= sprintf(" AND $sql_table.`created` < '%s'", DBA::escape($last_created));
760                                 $pager->setPage(1);
761                                 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
762                         }
763                         break;
764                 case 'id':
765                         if (($last_id > 0) && ($sql_table == '`thread`')) {
766                                 $sql_range .= sprintf(" AND $sql_table.`iid` < '%s'", DBA::escape($last_id));
767                                 $pager->setPage(1);
768                                 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
769                         }
770                         break;
771         }
772
773         // Fetch a page full of parent items for this page
774         if ($update) {
775                 if (!empty($parent)) {
776                         // Load only a single thread
777                         $sql_extra4 = "`item`.`id` = ".intval($parent);
778                 } else {
779                         // Load all unseen items
780                         $sql_extra4 = "`item`.`unseen`";
781                         if (Config::get("system", "like_no_comment")) {
782                                 $sql_extra4 .= " AND `item`.`gravity` IN (" . GRAVITY_PARENT . "," . GRAVITY_COMMENT . ")";
783                         }
784                         if ($order === 'post') {
785                                 // Only show toplevel posts when updating posts in this order mode
786                                 $sql_extra4 .= " AND `item`.`id` = `item`.`parent`";
787                         }
788                 }
789
790                 $r = q("SELECT `item`.`parent-uri` AS `uri`, `item`.`parent` AS `item_id`, $sql_order AS `order_date`
791                         FROM `item` $sql_post_table
792                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
793                                 AND (NOT `contact`.`blocked` OR `contact`.`pending`)
794                                 AND (`item`.`gravity` != %d
795                                         OR `contact`.`uid` = `item`.`uid` AND `contact`.`self`
796                                         OR `contact`.`rel` IN (%d, %d) AND NOT `contact`.`readonly`)
797                         LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = %d
798                         WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`deleted`
799                         AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
800                         AND NOT `item`.`moderated` AND $sql_extra4
801                         $sql_extra3 $sql_extra $sql_range $sql_nets
802                         ORDER BY `order_date` DESC LIMIT 100",
803                         intval(GRAVITY_PARENT),
804                         intval(Contact::SHARING),
805                         intval(Contact::FRIEND),
806                         intval(local_user()),
807                         intval(local_user())
808                 );
809         } else {
810                 $r = q("SELECT `item`.`uri`, `thread`.`iid` AS `item_id`, $sql_order AS `order_date`
811                         FROM `thread` $sql_post_table
812                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
813                                 AND (NOT `contact`.`blocked` OR `contact`.`pending`)
814                         STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
815                                 AND (`item`.`gravity` != %d
816                                         OR `contact`.`uid` = `item`.`uid` AND `contact`.`self`
817                                         OR `contact`.`rel` IN (%d, %d) AND NOT `contact`.`readonly`)
818                         LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = %d
819                         WHERE `thread`.`uid` = %d AND `thread`.`visible` AND NOT `thread`.`deleted`
820                         AND NOT `thread`.`moderated`
821                         AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
822                         $sql_extra2 $sql_extra3 $sql_range $sql_extra $sql_nets
823                         ORDER BY `order_date` DESC $pager_sql",
824                         intval(GRAVITY_PARENT),
825                         intval(Contact::SHARING),
826                         intval(Contact::FRIEND),
827                         intval(local_user()),
828                         intval(local_user())
829                 );
830         }
831
832         // Only show it when unfiltered (no groups, no networks, ...)
833         if (in_array($nets, ['', Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS]) && (strlen($sql_extra . $sql_extra2 . $sql_extra3) == 0)) {
834                 if (DBA::isResult($r)) {
835                         $top_limit = current($r)['order_date'];
836                         $bottom_limit = end($r)['order_date'];
837                         if (empty($_SESSION['network_last_top_limit']) || ($_SESSION['network_last_top_limit'] < $top_limit)) {
838                                 $_SESSION['network_last_top_limit'] = $top_limit;
839                         }
840                 } else {
841                         $top_limit = $bottom_limit = DateTimeFormat::utcNow();
842                 }
843
844                 // When checking for updates we need to fetch from the newest date to the newest date before
845                 // Only do this, when the last stored date isn't too long ago (10 times the update interval)
846                 $browser_update = PConfig::get(local_user(), 'system', 'update_interval', 40000) / 1000;
847
848                 if (($browser_update > 0) && $update && !empty($_SESSION['network_last_date']) &&
849                         (($bottom_limit < $_SESSION['network_last_date']) || ($top_limit == $bottom_limit)) &&
850                         ((time() - $_SESSION['network_last_date_timestamp']) < ($browser_update * 10))) {
851                         $bottom_limit = $_SESSION['network_last_date'];
852                 }
853                 $_SESSION['network_last_date'] = defaults($_SESSION, 'network_last_top_limit', $top_limit);
854                 $_SESSION['network_last_date_timestamp'] = time();
855
856                 if ($last_date > $top_limit) {
857                         $top_limit = $last_date;
858                 } elseif ($pager->getPage() == 1) {
859                         // Highest possible top limit when we are on the first page
860                         $top_limit = DateTimeFormat::utcNow();
861                 }
862
863                 $items = DBA::p("SELECT `item`.`parent-uri` AS `uri`, 0 AS `item_id`, `item`.$ordering AS `order_date`, `author`.`url` AS `author-link` FROM `item`
864                         STRAIGHT_JOIN (SELECT `oid` FROM `term` WHERE `term` IN
865                                 (SELECT SUBSTR(`term`, 2) FROM `search` WHERE `uid` = ? AND `term` LIKE '#%') AND `otype` = ? AND `type` = ? AND `uid` = 0) AS `term`
866                         ON `item`.`id` = `term`.`oid`
867                         STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `item`.`author-id`
868                         WHERE `item`.`uid` = 0 AND `item`.$ordering < ? AND `item`.$ordering > ?
869                                 AND NOT `author`.`hidden` AND NOT `author`.`blocked`" . $sql_tag_nets,
870                         local_user(), TERM_OBJ_POST, TERM_HASHTAG,
871                         $top_limit, $bottom_limit);
872
873                 $data = DBA::toArray($items);
874
875                 if (count($data) > 0) {
876                         $tag_top_limit = current($data)['order_date'];
877                         if ($_SESSION['network_last_date'] < $tag_top_limit) {
878                                 $_SESSION['network_last_date'] = $tag_top_limit;
879                         }
880
881                         Logger::log('Tagged items: ' . count($data) . ' - ' . $bottom_limit . ' - ' . $top_limit . ' - ' . local_user().' - '.(int)$update);
882                         $s = [];
883                         foreach ($r as $item) {
884                                 $s[$item['uri']] = $item;
885                         }
886                         foreach ($data as $item) {
887                                 // Don't show hash tag posts from blocked or ignored contacts
888                                 $condition = ["`nurl` = ? AND `uid` = ? AND (`blocked` OR `readonly`)",
889                                         Strings::normaliseLink($item['author-link']), local_user()];
890                                 if (!DBA::exists('contact', $condition)) {
891                                         $s[$item['uri']] = $item;
892                                 }
893                         }
894                         $r = $s;
895                 }
896         }
897
898         $parents_str = '';
899         $date_offset = '';
900
901         $items = $r;
902
903         if (DBA::isResult($items)) {
904                 $parents_arr = [];
905
906                 foreach ($items as $item) {
907                         if ($date_offset < $item['order_date']) {
908                                 $date_offset = $item['order_date'];
909                         }
910                         if (!in_array($item['item_id'], $parents_arr) && ($item['item_id'] > 0)) {
911                                 $parents_arr[] = $item['item_id'];
912                         }
913                 }
914                 $parents_str = implode(', ', $parents_arr);
915         }
916
917         if (!empty($_GET['offset'])) {
918                 $date_offset = $_GET['offset'];
919         }
920
921         $query_string = $a->query_string;
922         if ($date_offset && !preg_match('/[?&].offset=/', $query_string)) {
923                 $query_string .= '&offset=' . urlencode($date_offset);
924         }
925
926         $pager->setQueryString($query_string);
927
928         // We aren't going to try and figure out at the item, group, and page
929         // level which items you've seen and which you haven't. If you're looking
930         // at the top level network page just mark everything seen.
931
932         if (!$gid && !$cid && !$star) {
933                 $condition = ['unseen' => true, 'uid' => local_user()];
934                 networkSetSeen($condition);
935         } elseif ($parents_str) {
936                 $condition = ["`uid` = ? AND `unseen` AND `parent` IN (" . DBA::escape($parents_str) . ")", local_user()];
937                 networkSetSeen($condition);
938         }
939
940
941         $mode = 'network';
942         $o .= networkConversation($a, $items, $pager, $mode, $update, $ordering);
943
944         return $o;
945 }
946
947 /**
948  * @brief Get the network tabs menu
949  *
950  * @param App $a The global App
951  * @return string Html of the networktab
952  */
953 function network_tabs(App $a)
954 {
955         // item filter tabs
956         /// @TODO fix this logic, reduce duplication
957         /// $a->page['content'] .= '<div class="tabs-wrapper">';
958         list($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active) = network_query_get_sel_tab($a);
959
960         // if no tabs are selected, defaults to comments
961         if ($no_active == 'active') {
962                 $all_active = 'active';
963         }
964
965         $cmd = $a->cmd;
966
967         // tabs
968         $tabs = [
969                 [
970                         'label' => L10n::t('Commented Order'),
971                         'url'   => str_replace('/new', '', $cmd) . '?f=&order=comment' . (!empty($_GET['cid']) ? '&cid=' . $_GET['cid'] : ''),
972                         'sel'   => $all_active,
973                         'title' => L10n::t('Sort by Comment Date'),
974                         'id'    => 'commented-order-tab',
975                         'accesskey' => 'e',
976                 ],
977                 [
978                         'label' => L10n::t('Posted Order'),
979                         'url'   => str_replace('/new', '', $cmd) . '?f=&order=post' . (!empty($_GET['cid']) ? '&cid=' . $_GET['cid'] : ''),
980                         'sel'   => $postord_active,
981                         'title' => L10n::t('Sort by Post Date'),
982                         'id'    => 'posted-order-tab',
983                         'accesskey' => 't',
984                 ],
985         ];
986
987         $tabs[] = [
988                 'label' => L10n::t('Personal'),
989                 'url'   => str_replace('/new', '', $cmd) . (!empty($_GET['cid']) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1',
990                 'sel'   => $conv_active,
991                 'title' => L10n::t('Posts that mention or involve you'),
992                 'id'    => 'personal-tab',
993                 'accesskey' => 'r',
994         ];
995
996         if (Feature::isEnabled(local_user(), 'new_tab')) {
997                 $tabs[] = [
998                         'label' => L10n::t('New'),
999                         'url'   => 'network/new' . (!empty($_GET['cid']) ? '/?f=&cid=' . $_GET['cid'] : ''),
1000                         'sel'   => $new_active,
1001                         'title' => L10n::t('Activity Stream - by date'),
1002                         'id'    => 'activitiy-by-date-tab',
1003                         'accesskey' => 'w',
1004                 ];
1005         }
1006
1007         if (Feature::isEnabled(local_user(), 'link_tab')) {
1008                 $tabs[] = [
1009                         'label' => L10n::t('Shared Links'),
1010                         'url'   => str_replace('/new', '', $cmd) . (!empty($_GET['cid']) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1',
1011                         'sel'   => $bookmarked_active,
1012                         'title' => L10n::t('Interesting Links'),
1013                         'id'    => 'shared-links-tab',
1014                         'accesskey' => 'b',
1015                 ];
1016         }
1017
1018         $tabs[] = [
1019                 'label' => L10n::t('Starred'),
1020                 'url'   => str_replace('/new', '', $cmd) . (!empty($_GET['cid']) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1',
1021                 'sel'   => $starred_active,
1022                 'title' => L10n::t('Favourite Posts'),
1023                 'id'    => 'starred-posts-tab',
1024                 'accesskey' => 'm',
1025         ];
1026
1027         // save selected tab, but only if not in file mode
1028         if (empty($_GET['file'])) {
1029                 PConfig::set(local_user(), 'network.view', 'tab.selected', [
1030                         $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active
1031                 ]);
1032         }
1033
1034         $arr = ['tabs' => $tabs];
1035         Addon::callHooks('network_tabs', $arr);
1036
1037         $tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
1038
1039         return Renderer::replaceMacros($tpl, ['$tabs' => $arr['tabs']]);
1040
1041         // --- end item filter tabs
1042 }
1043
1044 /**
1045  * Network hook into the HTML head to enable infinite scroll.
1046  *
1047  * Since the HTML head is built after the module content has been generated, we need to retrieve the base query string
1048  * of the page to make the correct asynchronous call. This is obtained through the Pager that was instantiated in
1049  * networkThreadedView or networkFlatView.
1050  *
1051  * @global Pager  $pager
1052  * @param  App    $a
1053  * @param  string $htmlhead The head tag HTML string
1054  */
1055 function network_infinite_scroll_head(App $a, &$htmlhead)
1056 {
1057         /// @TODO this will have to be converted to a static property of the converted Module\Network class
1058         global $pager;
1059
1060         if (PConfig::get(local_user(), 'system', 'infinite_scroll')
1061                 && defaults($_GET, 'mode', '') != 'minimal'
1062         ) {
1063                 $tpl = Renderer::getMarkupTemplate('infinite_scroll_head.tpl');
1064                 $htmlhead .= Renderer::replaceMacros($tpl, [
1065                         '$pageno'     => $pager->getPage(),
1066                         '$reload_uri' => $pager->getBaseQueryString()
1067                 ]);
1068         }
1069 }