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