]> git.mxchange.org Git - friendica.git/blob - mod/network.php
Revert "Use last entry for Content-Type"
[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\ForumManager;
24 use Friendica\Content\Nav;
25 use Friendica\Content\Pager;
26 use Friendica\Content\Widget;
27 use Friendica\Content\Text\HTML;
28 use Friendica\Core\ACL;
29 use Friendica\Core\Hook;
30 use Friendica\Core\Logger;
31 use Friendica\Core\Renderer;
32 use Friendica\Database\DBA;
33 use Friendica\DI;
34 use Friendica\Model\Contact;
35 use Friendica\Model\Group;
36 use Friendica\Model\Item;
37 use Friendica\Model\Post\Category;
38 use Friendica\Model\Profile;
39 use Friendica\Model\User;
40 use Friendica\Module\Contact as ModuleContact;
41 use Friendica\Module\Security\Login;
42 use Friendica\Util\DateTimeFormat;
43 use Friendica\Util\Strings;
44
45 function network_init(App $a)
46 {
47         if (!local_user()) {
48                 notice(DI::l10n()->t('Permission denied.'));
49                 return;
50         }
51
52         $is_a_date_query = false;
53
54         $group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0);
55
56         $cid = 0;
57         if (!empty($_GET['contactid'])) {
58                 $cid = $_GET['contactid'];
59                 $_GET['nets'] = '';
60                 $group_id = 0;
61         }
62
63         if ($a->argc > 1) {
64                 for ($x = 1; $x < $a->argc; $x ++) {
65                         if (DI::dtFormat()->isYearMonthDay($a->argv[$x])) {
66                                 $is_a_date_query = true;
67                                 break;
68                         }
69                 }
70         }
71
72         // convert query string to array. remove friendica args
73         $query_array = [];
74         parse_str(parse_url(DI::args()->getQueryString(), PHP_URL_QUERY), $query_array);
75
76         // fetch last used network view and redirect if needed
77         if (!$is_a_date_query) {
78                 $sel_nets = $_GET['nets'] ?? '';
79                 $sel_tabs = network_query_get_sel_tab($a);
80                 $sel_groups = network_query_get_sel_group($a);
81                 $last_sel_tabs = DI::pConfig()->get(local_user(), 'network.view', 'tab.selected');
82
83                 $remember_tab = ($sel_tabs[0] === 'active' && is_array($last_sel_tabs) && $last_sel_tabs[0] !== 'active');
84
85                 $net_baseurl = '/network';
86                 $net_args = [];
87
88                 if ($sel_groups !== false) {
89                         $net_baseurl .= '/' . $sel_groups;
90                 }
91
92                 if ($remember_tab) {
93                         // redirect if current selected tab is '/network' and
94                         // last selected tab is _not_ '/network?order=activity'.
95                         // and this isn't a date query
96
97                         $tab_args = [
98                                 'order=activity', //all
99                                 'order=post',     //postord
100                                 'conv=1',         //conv
101                                 'star=1',         //starred
102                         ];
103
104                         $k = array_search('active', $last_sel_tabs);
105
106                         if ($k != 3) {
107                                 // parse out tab queries
108                                 $dest_qa = [];
109                                 $dest_qs = $tab_args[$k];
110                                 parse_str($dest_qs, $dest_qa);
111                                 $net_args = array_merge($net_args, $dest_qa);
112                         } else {
113                                 $remember_tab = false;
114                         }
115                 }
116
117                 if ($sel_nets) {
118                         $net_args['nets'] = $sel_nets;
119                 }
120
121                 if ($remember_tab) {
122                         $net_args = array_merge($query_array, $net_args);
123                         $net_queries = http_build_query($net_args);
124
125                         $redir_url = ($net_queries ? $net_baseurl . '?' . $net_queries : $net_baseurl);
126
127                         DI::baseUrl()->redirect($redir_url);
128                 }
129         }
130
131         if (empty(DI::page()['aside'])) {
132                 DI::page()['aside'] = '';
133         }
134
135         if (!empty(User::getAccountTypeByString($a->argv[1] ?? ''))) {
136                 $accounttype = $a->argv[1];
137         } else {
138                 $accounttype = '';
139         }
140
141         DI::page()['aside'] .= Widget::accounts('network', $accounttype);
142         DI::page()['aside'] .= Group::sidebarWidget('network/0', 'network', 'standard', $group_id);
143         DI::page()['aside'] .= ForumManager::widget(local_user(), $cid);
144         DI::page()['aside'] .= Widget::postedByYear('network', local_user(), false);
145         DI::page()['aside'] .= Widget::networks('network', $_GET['nets'] ?? '');
146         DI::page()['aside'] .= Widget\SavedSearches::getHTML(DI::args()->getQueryString());
147         DI::page()['aside'] .= Widget::fileAs('network', $_GET['file'] ?? '');
148 }
149
150 /**
151  * Return selected tab from query
152  *
153  * urls -> returns
154  *        '/network'                => $no_active = 'active'
155  *        '/network?order=activity' => $activity_active = 'active'
156  *        '/network?order=post'     => $postord_active = 'active'
157  *        '/network?conv=1',        => $conv_active = 'active'
158  *        '/network?star=1',        => $starred_active = 'active'
159  *
160  * @param App $a
161  * @return array ($no_active, $activity_active, $postord_active, $conv_active, $starred_active);
162  */
163 function network_query_get_sel_tab(App $a)
164 {
165         $no_active = '';
166         $starred_active = '';
167         $all_active = '';
168         $conv_active = '';
169         $postord_active = '';
170
171         if (!empty($_GET['star'])) {
172                 $starred_active = 'active';
173         }
174
175         if (!empty($_GET['conv'])) {
176                 $conv_active = 'active';
177         }
178
179         if (($starred_active == '') && ($conv_active == '')) {
180                 $no_active = 'active';
181         }
182
183         if ($no_active == 'active' && !empty($_GET['order'])) {
184                 switch($_GET['order']) {
185                         case 'post' :     $postord_active = 'active'; $no_active=''; break;
186                         case 'activity' : $all_active     = 'active'; $no_active=''; break;
187                 }
188         }
189
190         return [$no_active, $all_active, $postord_active, $conv_active, $starred_active];
191 }
192
193 function network_query_get_sel_group(App $a)
194 {
195         $group = false;
196
197         if ($a->argc >= 2 && is_numeric($a->argv[1])) {
198                 $group = $a->argv[1];
199         }
200
201         return $group;
202 }
203
204 /**
205  * Sets the pager data and returns SQL
206  *
207  * @param App     $a      The global App
208  * @param Pager   $pager
209  * @return string SQL with the appropriate LIMIT clause
210  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
211  */
212 function networkPager(App $a, Pager $pager)
213 {
214         if (DI::mode()->isMobile()) {
215                 $itemspage_network = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
216                         DI::config()->get('system', 'itemspage_network_mobile'));
217         } else {
218                 $itemspage_network = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
219                         DI::config()->get('system', 'itemspage_network'));
220         }
221
222         //  now that we have the user settings, see if the theme forces
223         //  a maximum item number which is lower then the user choice
224         if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
225                 $itemspage_network = $a->force_max_items;
226         }
227
228         $pager->setItemsPerPage($itemspage_network);
229 }
230
231 /**
232  * Sets items as seen
233  *
234  * @param array $condition The array with the SQL condition
235  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
236  */
237 function networkSetSeen($condition)
238 {
239         if (empty($condition)) {
240                 return;
241         }
242
243         $unseen = Item::exists($condition);
244
245         if ($unseen) {
246                 Item::update(['unseen' => false], $condition);
247         }
248 }
249
250 /**
251  * Create the conversation HTML
252  *
253  * @param App     $a      The global App
254  * @param array   $items  Items of the conversation
255  * @param Pager   $pager
256  * @param string  $mode   Display mode for the conversation
257  * @param integer $update Used for the automatic reloading
258  * @param string  $ordering
259  * @return string HTML of the conversation
260  * @throws ImagickException
261  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
262  */
263 function networkConversation(App $a, $items, Pager $pager, $mode, $update, $ordering = '')
264 {
265         // Set this so that the conversation function can find out contact info for our wall-wall items
266         $a->page_contact = $a->contact;
267
268         if (!is_array($items)) {
269                 Logger::info('Expecting items to be an array.', ['items' => $items]);
270                 $items = [];
271         }
272
273         $o = conversation($a, $items, $mode, $update, false, $ordering, local_user());
274
275         if (!$update) {
276                 if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
277                         $o .= HTML::scrollLoader();
278                 } else {
279                         $o .= $pager->renderMinimal(count($items));
280                 }
281         }
282
283         return $o;
284 }
285
286 function network_content(App $a, $update = 0, $parent = 0)
287 {
288         if (!local_user()) {
289                 return Login::form();
290         }
291
292         /// @TODO Is this really necessary? $a is already available to hooks
293         $arr = ['query' => DI::args()->getQueryString()];
294         Hook::callAll('network_content_init', $arr);
295
296         if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll') && ($_GET['mode'] ?? '') != 'minimal') {
297                 $tpl = Renderer::getMarkupTemplate('infinite_scroll_head.tpl');
298                 $o = Renderer::replaceMacros($tpl, ['$reload_uri' => DI::args()->getQueryString()]);
299         } else {
300                 $o = '';
301         }
302
303         $account = User::getAccountTypeByString($a->argv[1] ?? '');
304
305         if (!empty($_GET['file'])) {
306                 $o .= networkFlatView($a, $update, $account);
307         } else {
308                 $o .= networkThreadedView($a, $update, $parent, $account);
309         }
310
311         if (!$update && ($o === '')) {
312                 notice(DI::l10n()->t("No items found"));
313         }
314
315         return $o;
316 }
317
318 /**
319  * Get the network content in flat view
320  *
321  * @param App     $a      The global App
322  * @param integer $update Used for the automatic reloading
323  * @return string HTML of the network content in flat view
324  * @throws ImagickException
325  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
326  * @global Pager  $pager
327  */
328 function networkFlatView(App $a, $update, $account)
329 {
330         global $pager;
331         // Rawmode is used for fetching new content at the end of the page
332         $rawmode = (isset($_GET['mode']) && ($_GET['mode'] == 'raw'));
333
334         $o = '';
335
336         $file = $_GET['file'] ?? '';
337
338         if (!$update && !$rawmode) {
339                 $tabs = network_tabs($a);
340                 $o .= $tabs;
341
342                 Nav::setSelected('network');
343
344                 $x = [
345                         'is_owner' => true,
346                         'allow_location' => $a->user['allow_location'],
347                         'default_location' => $a->user['default-location'],
348                         'nickname' => $a->user['nickname'],
349                         'lockstate' => (is_array($a->user) &&
350                         (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) ||
351                         strlen($a->user['deny_cid']) || strlen($a->user['deny_gid'])) ? 'lock' : 'unlock'),
352                         'default_perms' => ACL::getDefaultUserPermissions($a->user),
353                         'acl' => ACL::getFullSelectorHTML(DI::page(), $a->user, true),
354                         'bang' => '',
355                         'visitor' => 'block',
356                         'profile_uid' => local_user(),
357                         'content' => '',
358                 ];
359
360                 $o .= status_editor($a, $x);
361
362                 if (!DI::config()->get('theme', 'hide_eventlist')) {
363                         $o .= Profile::getBirthdays();
364                         $o .= Profile::getEventsReminderHTML();
365                 }
366         }
367
368         $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
369
370         networkPager($a, $pager);
371
372         if (strlen($file)) {
373                 $item_params = ['order' => ['uri-id' => true]];
374                 $term_condition = ['name' => $file, 'type' => Category::FILE, 'uid' => local_user()];
375                 $term_params = ['order' => ['uri-id' => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
376                 $result = DBA::select('category-view', ['uri-id'], $term_condition, $term_params);
377
378                 $posts = [];
379                 while ($term = DBA::fetch($result)) {
380                         $posts[] = $term['uri-id'];
381                 }
382                 DBA::close($result);
383
384                 if (count($posts) == 0) {
385                         return '';
386                 }
387                 $item_condition = ['uid' => local_user(), 'uri-id' => $posts];
388         } else {
389                 $item_params = ['order' => ['id' => true]];
390                 $item_condition = ['uid' => local_user()];
391                 $item_params['limit'] = [$pager->getStart(), $pager->getItemsPerPage()];
392
393                 networkSetSeen(['unseen' => true, 'uid' => local_user()]);
394         }
395
396         if (!empty($account)) {
397                 $item_condition['contact-type'] = $account;
398         }
399
400         $result = Item::selectForUser(local_user(), [], $item_condition, $item_params);
401         $items = Item::inArray($result);
402         $o .= networkConversation($a, $items, $pager, 'network-new', $update);
403
404         return $o;
405 }
406
407 /**
408  * Get the network content in threaded view
409  *
410  * @param  App     $a      The global App
411  * @param  integer $update Used for the automatic reloading
412  * @param  integer $parent
413  * @return string HTML of the network content in flat view
414  * @throws ImagickException
415  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
416  * @global Pager   $pager
417  */
418 function networkThreadedView(App $a, $update, $parent, $account)
419 {
420         /// @TODO this will have to be converted to a static property of the converted Module\Network class
421         global $pager;
422
423         // Rawmode is used for fetching new content at the end of the page
424         $rawmode = (isset($_GET['mode']) AND ($_GET['mode'] == 'raw'));
425
426         $last_received = isset($_GET['last_received']) ? DateTimeFormat::utc($_GET['last_received']) : '';
427         $last_commented = isset($_GET['last_commented']) ? DateTimeFormat::utc($_GET['last_commented']) : '';
428         $last_created = isset($_GET['last_created']) ? DateTimeFormat::utc($_GET['last_created']) : '';
429         $last_uriid = isset($_GET['last_uriid']) ? intval($_GET['last_uriid']) : 0;
430
431         $datequery = $datequery2 = '';
432
433         $gid = 0;
434
435         $default_permissions = [];
436
437         if ($a->argc > 1) {
438                 for ($x = 1; $x < $a->argc; $x ++) {
439                         if (DI::dtFormat()->isYearMonthDay($a->argv[$x])) {
440                                 if ($datequery) {
441                                         $datequery2 = Strings::escapeHtml($a->argv[$x]);
442                                 } else {
443                                         $datequery = Strings::escapeHtml($a->argv[$x]);
444                                         $_GET['order'] = 'post';
445                                 }
446                         } elseif (intval($a->argv[$x])) {
447                                 $gid = intval($a->argv[$x]);
448                                 $default_permissions['allow_gid'] = [$gid];
449                         }
450                 }
451         }
452
453         $o = '';
454
455         $cid   = intval($_GET['contactid'] ?? 0);
456         $star  = intval($_GET['star']      ?? 0);
457         $conv  = intval($_GET['conv']      ?? 0);
458         $order = Strings::escapeTags(($_GET['order'] ?? '') ?: 'activity');
459         $nets  =        $_GET['nets']      ?? '';
460
461         $allowedCids = [];
462         if ($cid) {
463                 $allowedCids[] = (int) $cid;
464         } elseif ($nets) {
465                 $condition = [
466                         'uid'     => local_user(),
467                         'network' => $nets,
468                         'self'    => false,
469                         'blocked' => false,
470                         'pending' => false,
471                         'archive' => false,
472                         'rel'     => [Contact::SHARING, Contact::FRIEND],
473                 ];
474                 $contactStmt = DBA::select('contact', ['id'], $condition);
475                 while ($contact = DBA::fetch($contactStmt)) {
476                         $allowedCids[] = (int) $contact['id'];
477                 }
478                 DBA::close($contactStmt);
479         }
480
481         if (count($allowedCids)) {
482                 $default_permissions['allow_cid'] = $allowedCids;
483         }
484
485         if (!$update && !$rawmode) {
486                 $tabs = network_tabs($a);
487                 $o .= $tabs;
488
489                 Nav::setSelected('network');
490
491                 $content = '';
492
493                 if ($cid) {
494                         // If $cid belongs to a communitity forum or a privat goup,.add a mention to the status editor
495                         $condition = ["`id` = ? AND (`forum` OR `prv`)", $cid];
496                         $contact = DBA::selectFirst('contact', ['addr'], $condition);
497                         if (!empty($contact['addr'])) {
498                                 $content = '!' . $contact['addr'];
499                         }
500                 }
501
502                 $x = [
503                         'is_owner' => true,
504                         'allow_location' => $a->user['allow_location'],
505                         'default_location' => $a->user['default-location'],
506                         'nickname' => $a->user['nickname'],
507                         'lockstate' => ($gid || $cid || $nets || (is_array($a->user) &&
508                         (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) ||
509                         strlen($a->user['deny_cid']) || strlen($a->user['deny_gid']))) ? 'lock' : 'unlock'),
510                         'default_perms' => ACL::getDefaultUserPermissions($a->user),
511                         'acl' => ACL::getFullSelectorHTML(DI::page(), $a->user, true, $default_permissions),
512                         'bang' => (($gid || $cid || $nets) ? '!' : ''),
513                         'visitor' => 'block',
514                         'profile_uid' => local_user(),
515                         'content' => $content,
516                 ];
517
518                 $o .= status_editor($a, $x);
519         }
520
521         $conditionFields = ['uid' => local_user()];
522         $conditionStrings = [];
523
524         if (!empty($account)) {
525                 $conditionFields['contact-type'] = $account;
526         }
527
528         if ($star) {
529                 $conditionFields['starred'] = true;
530         }
531         if ($conv) {
532                 $conditionFields['mention'] = true;
533         }
534         if ($nets) {
535                 $conditionFields['network'] = $nets;
536         }
537
538         if ($datequery) {
539                 $conditionStrings = DBA::mergeConditions($conditionStrings, ["`received` <= ? ", DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get())]);
540         }
541         if ($datequery2) {
542                 $conditionStrings = DBA::mergeConditions($conditionStrings, ["`received` >= ? ", DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get())]);
543         }
544
545         if ($gid) {
546                 $group = DBA::selectFirst('group', ['name'], ['id' => $gid, 'uid' => local_user()]);
547                 if (!DBA::isResult($group)) {
548                         if ($update) {
549                                 exit();
550                         }
551                         notice(DI::l10n()->t('No such group'));
552                         DI::baseUrl()->redirect('network/0');
553                         // NOTREACHED
554                 }
555
556                 $conditionStrings = DBA::mergeConditions($conditionStrings, ["`contact-id` IN (SELECT `contact-id` FROM `group_member` WHERE `gid` = ?)", $gid]);
557
558                 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [
559                         '$title' => DI::l10n()->t('Group: %s', $group['name'])
560                 ]) . $o;
561         } elseif ($cid) {
562                 $contact = Contact::getById($cid);
563                 if (DBA::isResult($contact)) {
564                         $conditionFields['contact-id'] = $cid;
565
566                         $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('viewcontact_template.tpl'), [
567                                 'contacts' => [ModuleContact::getContactTemplateVars($contact)],
568                                 'id' => 'network',
569                         ]) . $o;
570                 } else {
571                         notice(DI::l10n()->t('Invalid contact.'));
572                         DI::baseUrl()->redirect('network');
573                         // NOTREACHED
574                 }
575         } elseif (!$update && !DI::config()->get('theme', 'hide_eventlist')) {
576                 $o .= Profile::getBirthdays();
577                 $o .= Profile::getEventsReminderHTML();
578         }
579
580         // Normal conversation view
581         if ($order === 'post') {
582                 $ordering = '`received`';
583                 $order_mode = 'received';
584         } else {
585                 $ordering = '`commented`';
586                 $order_mode = 'commented';
587         }
588
589         $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
590
591         networkPager($a, $pager);
592
593         if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
594                 $pager->setPage(1);
595         }
596
597         // Currently only the order modes "received" and "commented" are in use
598         switch ($order_mode) {
599                 case 'received':
600                         if ($last_received != '') {
601                                 $conditionStrings = DBA::mergeConditions($conditionStrings, ["`received` < ?", $last_received]);
602                         }
603                         break;
604                 case 'commented':
605                         if ($last_commented != '') {
606                                 $conditionStrings = DBA::mergeConditions($conditionStrings, ["`commented` < ?", $last_commented]);
607                         }
608                         break;
609                 case 'created':
610                         if ($last_created != '') {
611                                 $conditionStrings = DBA::mergeConditions($conditionStrings, ["`created` < ?", $last_created]);
612                         }
613                         break;
614                 case 'uriid':
615                         if ($last_uriid > 0) {
616                                 $conditionStrings = DBA::mergeConditions($conditionStrings, ["`uri-id` < ?", $last_uriid]);
617                         }
618                         break;
619         }
620
621         // Fetch a page full of parent items for this page
622         if ($update) {
623                 if (!empty($parent)) {
624                         // Load only a single thread
625                         $conditionFields['parent'] = $parent;
626                 } elseif ($order === 'post') {
627                         // Only load new toplevel posts
628                         $conditionFields['unseen'] = true;
629                         $conditionFields['gravity'] = GRAVITY_PARENT;
630                 } else {
631                         // Load all unseen items
632                         $conditionFields['unseen'] = true;
633                 }
634
635                 $params = ['order' => [$order_mode => true], 'limit' => 100];
636                 $table = 'network-item-view';
637         } else {
638                 $params = ['order' => [$order_mode => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
639                 $table = 'network-thread-view';
640         }
641         $r = DBA::selectToArray($table, [], DBA::mergeConditions($conditionFields, $conditionStrings), $params);
642
643         return $o . network_display_post($a, $pager, (!$gid && !$cid && !$star), $update, $ordering, $r);
644 }
645
646 function network_display_post($a, $pager, $mark_all, $update, $ordering, $items)
647 {
648         $parents_str = '';
649
650         if (DBA::isResult($items)) {
651                 $parents_arr = [];
652
653                 foreach ($items as $item) {
654                         if (!in_array($item['parent'], $parents_arr) && ($item['parent'] > 0)) {
655                                 $parents_arr[] = $item['parent'];
656                         }
657                 }
658                 $parents_str = implode(', ', $parents_arr);
659         }
660
661         $pager->setQueryString(DI::args()->getQueryString());
662
663         // We aren't going to try and figure out at the item, group, and page
664         // level which items you've seen and which you haven't. If you're looking
665         // at the top level network page just mark everything seen.
666
667         if ($mark_all) {
668                 $condition = ['unseen' => true, 'uid' => local_user()];
669                 networkSetSeen($condition);
670         } elseif ($parents_str) {
671                 $condition = ["`uid` = ? AND `unseen` AND `parent` IN (" . DBA::escape($parents_str) . ")", local_user()];
672                 networkSetSeen($condition);
673         }
674
675         return networkConversation($a, $items, $pager, 'network', $update, $ordering);
676 }
677
678 /**
679  * Get the network tabs menu
680  *
681  * @param App $a The global App
682  * @return string Html of the networktab
683  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
684  */
685 function network_tabs(App $a)
686 {
687         // item filter tabs
688         /// @TODO fix this logic, reduce duplication
689         /// DI::page()['content'] .= '<div class="tabs-wrapper">';
690         list($no_active, $all_active, $post_active, $conv_active, $starred_active) = network_query_get_sel_tab($a);
691
692         // if no tabs are selected, defaults to activitys
693         if ($no_active == 'active') {
694                 $all_active = 'active';
695         }
696
697         $cmd = DI::args()->getCommand();
698
699         $def_param = [];
700         if (!empty($_GET['contactid'])) {
701                 $def_param['contactid'] = $_GET['contactid'];
702         }
703
704         // tabs
705         $tabs = [
706                 [
707                         'label' => DI::l10n()->t('Latest Activity'),
708                         'url'   => $cmd . '?' . http_build_query(array_merge($def_param, ['order' => 'activity'])),
709                         'sel'   => $all_active,
710                         'title' => DI::l10n()->t('Sort by latest activity'),
711                         'id'    => 'activity-order-tab',
712                         'accesskey' => 'e',
713                 ],
714                 [
715                         'label' => DI::l10n()->t('Latest Posts'),
716                         'url'   => $cmd . '?' . http_build_query(array_merge($def_param, ['order' => 'post'])),
717                         'sel'   => $post_active,
718                         'title' => DI::l10n()->t('Sort by post received date'),
719                         'id'    => 'post-order-tab',
720                         'accesskey' => 't',
721                 ],
722         ];
723
724         $tabs[] = [
725                 'label' => DI::l10n()->t('Personal'),
726                 'url'   => $cmd . '?' . http_build_query(array_merge($def_param, ['conv' => true])),
727                 'sel'   => $conv_active,
728                 'title' => DI::l10n()->t('Posts that mention or involve you'),
729                 'id'    => 'personal-tab',
730                 'accesskey' => 'r',
731         ];
732
733         $tabs[] = [
734                 'label' => DI::l10n()->t('Starred'),
735                 'url'   => $cmd . '?' . http_build_query(array_merge($def_param, ['star' => true])),
736                 'sel'   => $starred_active,
737                 'title' => DI::l10n()->t('Favourite Posts'),
738                 'id'    => 'starred-posts-tab',
739                 'accesskey' => 'm',
740         ];
741
742         // save selected tab, but only if not in file mode
743         if (empty($_GET['file'])) {
744                 DI::pConfig()->set(local_user(), 'network.view', 'tab.selected', [
745                         $all_active, $post_active, $conv_active, $starred_active
746                 ]);
747         }
748
749         $arr = ['tabs' => $tabs];
750         Hook::callAll('network_tabs', $arr);
751
752         $tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
753
754         return Renderer::replaceMacros($tpl, ['$tabs' => $arr['tabs']]);
755
756         // --- end item filter tabs
757 }