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