]> git.mxchange.org Git - friendica.git/blob - mod/network.php
Merge pull request #3112 from Quix0r/rewrites/coding-convention
[friendica.git] / mod / network.php
1 <?php
2 function network_init(App $a) {
3         if (! local_user()) {
4                 notice( t('Permission denied.') . EOL);
5                 return;
6         }
7
8         $is_a_date_query = false;
9         if (x($_GET['cid']) && intval($_GET['cid']) != 0) {
10                 $cid = $_GET['cid'];
11         }
12
13         if ($a->argc > 1) {
14                 for ($x = 1; $x < $a->argc; $x ++) {
15                         if (is_a_date_arg($a->argv[$x])) {
16                                 $is_a_date_query = true;
17                                 break;
18                         }
19                 }
20         }
21
22         // convert query string to array. remove friendica args
23         $query_array = array();
24         $query_string = str_replace($a->cmd."?", "", $a->query_string);
25         parse_str($query_string, $query_array);
26         array_shift($query_array);
27
28         // fetch last used network view and redirect if needed
29         if (! $is_a_date_query) {
30                 $sel_tabs = network_query_get_sel_tab($a);
31                 $sel_nets = network_query_get_sel_net();
32                 $sel_groups = network_query_get_sel_group($a);
33                 $last_sel_tabs = get_pconfig(local_user(), 'network.view','tab.selected');
34                 $last_sel_nets = get_pconfig(local_user(), 'network.view', 'net.selected');
35                 $last_sel_groups = get_pconfig(local_user(), 'network.view', 'group.selected');
36
37                 $remember_tab = ($sel_tabs[0] === 'active' && is_array($last_sel_tabs) && $last_sel_tabs[0] !== 'active');
38                 $remember_net = ($sel_nets === false && $last_sel_nets && $last_sel_nets !== 'all');
39                 $remember_group = ($sel_groups === false && $last_sel_groups && $last_sel_groups != 0);
40
41                 $net_baseurl = '/network';
42                 $net_args = array();
43
44                 if ($remember_group) {
45                         $net_baseurl .= '/' . $last_sel_groups; // Note that the group number must come before the "/new" tab selection
46                 } elseif ($sel_groups !== false) {
47                         $net_baseurl .= '/' . $sel_groups;
48                 }
49
50                 if ($remember_tab) {
51                         // redirect if current selected tab is '/network' and
52                         // last selected tab is _not_ '/network?f=&order=comment'.
53                         // and this isn't a date query
54
55                         $tab_baseurls = array(
56                                 '',             //all
57                                 '',             //postord
58                                 '',             //conv
59                                 '/new',         //new
60                                 '',             //starred
61                                 '',             //bookmarked
62                                 '',             //spam
63                         );
64                         $tab_args = array(
65                                 'f=&order=comment',     //all
66                                 'f=&order=post',        //postord
67                                 'f=&conv=1',            //conv
68                                 '',                     //new
69                                 'f=&star=1',            //starred
70                                 'f=&bmark=1',           //bookmarked
71                                 'f=&spam=1',            //spam
72                         );
73
74                         $k = array_search('active', $last_sel_tabs);
75
76                         $net_baseurl .= $tab_baseurls[$k];
77
78                         // parse out tab queries
79                         $dest_qa = array();
80                         $dest_qs = $tab_args[$k];
81                         parse_str( $dest_qs, $dest_qa);
82                         $net_args = array_merge($net_args, $dest_qa);
83                 }
84                 else if ($sel_tabs[4] === 'active') {
85                         // The '/new' tab is selected
86                         $net_baseurl .= '/new';
87                 }
88
89                 if ($remember_net) {
90                         $net_args['nets'] = $last_sel_nets;
91                 }
92                 else if ($sel_nets!==false) {
93                         $net_args['nets'] = $sel_nets;
94                 }
95
96                 if ($remember_tab || $remember_net || $remember_group) {
97                         $net_args = array_merge($query_array, $net_args);
98                         $net_queries = build_querystring($net_args);
99
100                         $redir_url = ($net_queries ? $net_baseurl."?".$net_queries : $net_baseurl);
101
102                         goaway(App::get_baseurl() . $redir_url);
103                 }
104         }
105
106         if (x($_GET['nets']) && $_GET['nets'] === 'all')
107                 unset($_GET['nets']);
108
109         $group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0);
110
111         set_pconfig(local_user(), 'network.view', 'group.selected', $group_id);
112
113         require_once('include/group.php');
114         require_once('include/contact_widgets.php');
115         require_once('include/items.php');
116         require_once('include/ForumManager.php');
117
118         if (! x($a->page,'aside'))
119                 $a->page['aside'] = '';
120
121         $search = ((x($_GET,'search')) ? escape_tags($_GET['search']) : '');
122
123         if (x($_GET,'save')) {
124                 $r = qu("SELECT * FROM `search` WHERE `uid` = %d AND `term` = '%s' LIMIT 1",
125                         intval(local_user()),
126                         dbesc($search)
127                 );
128                 if (! dbm::is_result($r)) {
129                         q("INSERT INTO `search` ( `uid`,`term` ) VALUES ( %d, '%s') ",
130                                 intval(local_user()),
131                                 dbesc($search)
132                         );
133                 }
134         }
135         if (x($_GET,'remove')) {
136                 q("DELETE FROM `search` WHERE `uid` = %d AND `term` = '%s'",
137                         intval(local_user()),
138                         dbesc($search)
139                 );
140         }
141
142         // search terms header
143         if (x($_GET,'search')) {
144                 $a->page['content'] .= replace_macros(get_markup_template("section_title.tpl"),array(
145                         '$title' => sprintf( t('Results for: %s'), $search)
146                 ));
147         }
148
149         $a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network','standard',$group_id) : '');
150         $a->page['aside'] .= (feature_enabled(local_user(),'forumlist_widget') ? ForumManager::widget(local_user(),$cid) : '');
151         $a->page['aside'] .= posted_date_widget('network',local_user(),false);
152         $a->page['aside'] .= networks_widget('network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
153         $a->page['aside'] .= saved_searches($search);
154         $a->page['aside'] .= fileas_widget('network',(x($_GET, 'file') ? $_GET['file'] : ''));
155
156 }
157
158 function saved_searches($search) {
159
160         if (! feature_enabled(local_user(),'savedsearch'))
161                 return '';
162
163         $a = get_app();
164
165         $srchurl = '/network?f='
166                 . ((x($_GET,'cid'))   ? '&cid='   . $_GET['cid']   : '')
167                 . ((x($_GET,'star'))  ? '&star='  . $_GET['star']  : '')
168                 . ((x($_GET,'bmark')) ? '&bmark=' . $_GET['bmark'] : '')
169                 . ((x($_GET,'conv'))  ? '&conv='  . $_GET['conv']  : '')
170                 . ((x($_GET,'nets'))  ? '&nets='  . $_GET['nets']  : '')
171                 . ((x($_GET,'cmin'))  ? '&cmin='  . $_GET['cmin']  : '')
172                 . ((x($_GET,'cmax'))  ? '&cmax='  . $_GET['cmax']  : '')
173                 . ((x($_GET,'file'))  ? '&file='  . $_GET['file']  : '');
174         ;
175
176         $o = '';
177
178         $r = qu("SELECT `id`,`term` FROM `search` WHERE `uid` = %d",
179                 intval(local_user())
180         );
181
182         $saved = array();
183
184         if (dbm::is_result($r)) {
185                 foreach ($r as $rr) {
186                         $saved[] = array(
187                                 'id'          => $rr['id'],
188                                 'term'        => $rr['term'],
189                                 'encodedterm' => urlencode($rr['term']),
190                                 'delete'      => t('Remove term'),
191                                 'selected'    => ($search==$rr['term']),
192                         );
193                 }
194         }
195
196
197         $tpl = get_markup_template("saved_searches_aside.tpl");
198         $o = replace_macros($tpl, array(
199                 '$title'     => t('Saved Searches'),
200                 '$add'       => t('add'),
201                 '$searchbox' => search($search,'netsearch-box',$srchurl,true),
202                 '$saved'     => $saved,
203         ));
204
205         return $o;
206
207 }
208
209 /**
210  * Return selected tab from query
211  *
212  * urls -> returns
213  *              '/network'                                      => $no_active = 'active'
214  *              '/network?f=&order=comment'     => $comment_active = 'active'
215  *              '/network?f=&order=post'        => $postord_active = 'active'
216  *              '/network?f=&conv=1',           => $conv_active = 'active'
217  *              '/network/new',                         => $new_active = 'active'
218  *              '/network?f=&star=1',           => $starred_active = 'active'
219  *              '/network?f=&bmark=1',          => $bookmarked_active = 'active'
220  *              '/network?f=&spam=1',           => $spam_active = 'active'
221  *
222  * @return Array ( $no_active, $comment_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active );
223  */
224 function network_query_get_sel_tab(App $a) {
225         $no_active='';
226         $starred_active = '';
227         $new_active = '';
228         $bookmarked_active = '';
229         $all_active = '';
230         $search_active = '';
231         $conv_active = '';
232         $spam_active = '';
233         $postord_active = '';
234
235         if (($a->argc > 1 && $a->argv[1] === 'new')
236                 || ($a->argc > 2 && $a->argv[2] === 'new')) {
237                         $new_active = 'active';
238         }
239
240         if (x($_GET,'search')) {
241                 $search_active = 'active';
242         }
243
244         if (x($_GET,'star')) {
245                 $starred_active = 'active';
246         }
247
248         if (x($_GET,'bmark')) {
249                 $bookmarked_active = 'active';
250         }
251
252         if (x($_GET,'conv')) {
253                 $conv_active = 'active';
254         }
255
256         if (x($_GET,'spam')) {
257                 $spam_active = 'active';
258         }
259
260
261
262         if (($new_active == '')
263                 && ($starred_active == '')
264                 && ($bookmarked_active == '')
265                 && ($conv_active == '')
266                 && ($search_active == '')
267                 && ($spam_active == '')) {
268                         $no_active = 'active';
269         }
270
271         if ($no_active=='active' && x($_GET,'order')) {
272                 switch($_GET['order']){
273                  case 'post': $postord_active = 'active'; $no_active=''; break;
274                  case 'comment' : $all_active = 'active'; $no_active=''; break;
275                 }
276         }
277
278         return array($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active);
279 }
280
281 /**
282  * @brief Return selected network from query
283  * @return string Name of the selected network
284  */
285 function network_query_get_sel_net() {
286         $network = false;
287
288         if (x($_GET,'nets')) {
289                 $network = $_GET['nets'];
290         }
291
292         return $network;
293 }
294
295 function network_query_get_sel_group(App $a) {
296         $group = false;
297
298         if ($a->argc >= 2 && is_numeric($a->argv[1])) {
299                 $group = $a->argv[1];
300         }
301
302         return $group;
303 }
304
305
306 function network_content(App $a, $update = 0) {
307
308         require_once('include/conversation.php');
309
310         if (! local_user()) {
311                 $_SESSION['return_url'] = $a->query_string;
312                 return login(false);
313         }
314
315         // Rawmode is used for fetching new content at the end of the page
316         $rawmode = (isset($_GET["mode"]) AND ($_GET["mode"] == "raw"));
317
318         /// @TODO Is this really necessary? $a is already available to hooks
319         $arr = array('query' => $a->query_string);
320         call_hooks('network_content_init', $arr);
321
322
323         $datequery = $datequery2 = '';
324
325         $group = 0;
326
327         $nouveau = false;
328
329         if ($a->argc > 1) {
330                 for ($x = 1; $x < $a->argc; $x ++) {
331                         if (is_a_date_arg($a->argv[$x])) {
332                                 if ($datequery) {
333                                         $datequery2 = escape_tags($a->argv[$x]);
334                                 } else {
335                                         $datequery = escape_tags($a->argv[$x]);
336                                         $_GET['order'] = 'post';
337                                 }
338                         } elseif ($a->argv[$x] === 'new') {
339                                 $nouveau = true;
340                         } elseif (intval($a->argv[$x])) {
341                                 $group = intval($a->argv[$x]);
342                                 $def_acl = array('allow_gid' => '<' . $group . '>');
343                         }
344                 }
345         }
346
347         $o = '';
348
349
350
351         $contact_id = $a->cid;
352
353         require_once('include/acl_selectors.php');
354
355         $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0);
356         $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0);
357         $bmark = ((x($_GET,'bmark')) ? intval($_GET['bmark']) : 0);
358         $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment');
359         $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0);
360         $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0);
361         $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0);
362         $nets = ((x($_GET,'nets')) ? $_GET['nets'] : '');
363         $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0);
364         $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99);
365         $file = ((x($_GET,'file')) ? $_GET['file'] : '');
366
367
368
369         if (x($_GET,'search') || x($_GET,'file'))
370                 $nouveau = true;
371         if ($cid)
372                 $def_acl = array('allow_cid' => '<' . intval($cid) . '>');
373
374         if ($nets) {
375                 $r = qu("SELECT `id` FROM `contact` WHERE `uid` = %d AND network = '%s' AND `self` = 0",
376                         intval(local_user()),
377                         dbesc($nets)
378                 );
379
380                 $str = '';
381                 if (dbm::is_result($r))
382                         foreach ($r as $rr)
383                                 $str .= '<' . $rr['id'] . '>';
384                 if (strlen($str))
385                         $def_acl = array('allow_cid' => $str);
386         }
387         set_pconfig(local_user(), 'network.view', 'net.selected', ($nets ? $nets : 'all'));
388
389         if (!$update AND !$rawmode) {
390                 $tabs = network_tabs($a);
391                 $o .= $tabs;
392
393                 if ($group) {
394                         if (($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
395                                 notice(sprintf(tt("Warning: This group contains %s member from a network that doesn't allow non public messages.",
396                                                 "Warning: This group contains %s members from a network that doesn't allow non public messages.",
397                                                 $t), $t).EOL);
398                                 notice(t("Messages in this group won't be send to these receivers.").EOL);
399                         }
400                 }
401
402                 nav_set_selected('network');
403
404                 $content = "";
405
406                 if ($cid) {
407                         // If $cid belongs to a communitity forum or a privat goup,.add a mention to the status editor
408                         $contact = qu("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND (`forum` OR `prv`) ",
409                                 intval($cid),
410                                 intval(local_user())
411                         );
412                         if ($contact)
413                                 $content = "@".$contact[0]["nick"]."+".$cid;
414                 }
415
416                 $x = array(
417                         'is_owner' => true,
418                         'allow_location' => $a->user['allow_location'],
419                         'default_location' => $a->user['default-location'],
420                         'nickname' => $a->user['nickname'],
421                         'lockstate'=> ((($group) || ($cid) || ($nets) || (is_array($a->user) &&
422                                         ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) ||
423                                         (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))) ? 'lock' : 'unlock'),
424                         'default_perms' => get_acl_permissions($a->user),
425                         'acl'   => populate_acl((($group || $cid || $nets) ? $def_acl : $a->user), true),
426                         'bang'  => (($group || $cid || $nets) ? '!' : ''),
427                         'visitor' => 'block',
428                         'profile_uid' => local_user(),
429                         'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
430                         'content' => $content,
431                 );
432
433                 $o .= status_editor($a,$x);
434
435         }
436
437         // We don't have to deal with ACLs on this page. You're looking at everything
438         // that belongs to you, hence you can see all of it. We will filter by group if
439         // desired.
440
441         $sql_post_table = "";
442         $sql_options  = (($star) ? " AND `thread`.`starred` " : '');
443         $sql_options .= (($bmark) ? " AND `thread`.`bookmark` " : '');
444         $sql_extra = $sql_options;
445         $sql_extra2 = "";
446         $sql_extra3 = "";
447         $sql_table = "`thread`";
448         $sql_parent = "`iid`";
449
450         if ($nouveau OR strlen($file) OR $update) {
451                 $sql_table = "`item`";
452                 $sql_parent = "`parent`";
453                 $sql_post_table = " INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`";
454         }
455
456         $sql_nets = (($nets) ? sprintf(" and $sql_table.`network` = '%s' ", dbesc($nets)) : '');
457
458         if ($group) {
459                 $r = qu("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
460                         intval($group),
461                         intval($_SESSION['uid'])
462                 );
463                 if (! dbm::is_result($r)) {
464                         if ($update)
465                                 killme();
466                         notice( t('No such group') . EOL );
467                         goaway('network/0');
468                         // NOTREACHED
469                 }
470
471                 $contacts = expand_groups(array($group));
472                 $gcontacts = expand_groups(array($group), false, true);
473
474                 if ((is_array($contacts)) && count($contacts)) {
475                         $contact_str_self = "";
476                         $gcontact_str_self = "";
477
478                         $contact_str = implode(',',$contacts);
479                         $gcontact_str = implode(',',$gcontacts);
480                         $self = qu("SELECT `contact`.`id`, `gcontact`.`id` AS `gid` FROM `contact`
481                                         INNER JOIN `gcontact` ON `gcontact`.`nurl` = `contact`.`nurl`
482                                         WHERE `uid` = %d AND `self`", intval($_SESSION['uid']));
483                         if (count($self)) {
484                                 $contact_str_self = $self[0]["id"];
485                                 $gcontact_str_self = $self[0]["gid"];
486                         }
487
488                         $sql_post_table .= " INNER JOIN `item` AS `temp1` ON `temp1`.`id` = ".$sql_table.".".$sql_parent;
489                         $sql_extra3 .= " AND (`thread`.`contact-id` IN ($contact_str) ";
490                         $sql_extra3 .= " OR (`thread`.`contact-id` = '$contact_str_self' AND `temp1`.`allow_gid` LIKE '".protect_sprintf('%<'.intval($group).'>%')."' AND `temp1`.`private`))";
491                 } else {
492                         $sql_extra3 .= " AND false ";
493                         info( t('Group is empty'));
494                 }
495
496                 $o = replace_macros(get_markup_template("section_title.tpl"),array(
497                         '$title' => sprintf( t('Group: %s'), $r[0]['name'])
498                 )) . $o;
499
500         }
501         elseif ($cid) {
502
503                 $r = qu("SELECT `id`,`name`,`network`,`writable`,`nurl`, `forum`, `prv`, `contact-type`, `addr`, `thumb`, `location` FROM `contact` WHERE `id` = %d
504                                 AND (NOT `blocked` OR `pending`) LIMIT 1",
505                         intval($cid)
506                 );
507                 if (dbm::is_result($r)) {
508                         $sql_extra = " AND ".$sql_table.".`contact-id` = ".intval($cid);
509
510                         $entries[0] = array(
511                                 'id' => 'network',
512                                 'name' => htmlentities($r[0]['name']),
513                                 'itemurl' => (($r[0]['addr']) ? ($r[0]['addr']) : ($r[0]['nurl'])),
514                                 'thumb' => proxy_url($r[0]['thumb'], false, PROXY_SIZE_THUMB),
515                                 'details' => $r[0]['location'],
516                         );
517
518                         $entries[0]["account_type"] = account_type($r[0]);
519
520                         $o = replace_macros(get_markup_template("viewcontact_template.tpl"),array(
521                                 'contacts' => $entries,
522                                 'id' => 'network',
523                         )) . $o;
524
525                         if ($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
526                                 notice( t('Private messages to this person are at risk of public disclosure.') . EOL);
527                         }
528
529                 }
530                 else {
531                         notice( t('Invalid contact.') . EOL);
532                         goaway('network');
533                         // NOTREACHED
534                 }
535         }
536
537         if ((! $group) && (! $cid) && (! $update) && (! get_config('theme','hide_eventlist'))) {
538                 $o .= get_birthdays();
539                 $o .= get_events();
540         }
541
542         if ($datequery) {
543                 $sql_extra3 .= protect_sprintf(sprintf(" AND $sql_table.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
544         }
545         if ($datequery2) {
546                 $sql_extra3 .= protect_sprintf(sprintf(" AND $sql_table.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
547         }
548
549         //$sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` ");
550         $sql_extra2 = (($nouveau) ? '' : $sql_extra2);
551         $sql_extra3 = (($nouveau) ? '' : $sql_extra3);
552         $sql_order = "";
553         $order_mode = "received";
554         $tag = false;
555
556         if (x($_GET,'search')) {
557                 $search = escape_tags($_GET['search']);
558
559                 if (strpos($search,'#') === 0) {
560                         $tag = true;
561                         $search = substr($search,1);
562                 }
563
564                 if (get_config('system','only_tag_search'))
565                         $tag = true;
566
567                 if ($tag) {
568                         $sql_extra = "";
569
570                         $sql_post_table .= sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
571                                         dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval(local_user()));
572                         $sql_order = "`item`.`id`";
573                         $order_mode = "id";
574                 } else {
575                         // Disabled until final decision what to do with this
576                         //if (get_config('system','use_fulltext_engine'))
577                         //      $sql_extra = sprintf(" AND MATCH (`item`.`body`, `item`.`title`) AGAINST ('%s' in boolean mode) ", dbesc(protect_sprintf($search)));
578                         //else
579                                 $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
580                         $sql_order = "`item`.`id`";
581                         $order_mode = "id";
582                 }
583         }
584         if (strlen($file)) {
585                 $sql_post_table .= sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
586                                 dbesc(protect_sprintf($file)), intval(TERM_OBJ_POST), intval(TERM_FILE), intval(local_user()));
587                 $sql_order = "`item`.`id`";
588                 $order_mode = "id";
589         }
590
591         if ($conv)
592                 $sql_extra3 .= " AND $sql_table.`mention`";
593
594         if ($update) {
595
596                 // only setup pagination on initial page view
597                 $pager_sql = '';
598
599         } else {
600                 //  check if we serve a mobile device and get the user settings
601                 //  accordingly
602                 if ($a->is_mobile) {
603                         $itemspage_network = get_pconfig(local_user(),'system','itemspage_mobile_network');
604                         $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
605                 } else {
606                         $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
607                         $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
608                 }
609
610                 //  now that we have the user settings, see if the theme forces
611                 //  a maximum item number which is lower then the user choice
612                 if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network))
613                         $itemspage_network = $a->force_max_items;
614
615                 $a->set_pager_itemspage($itemspage_network);
616                 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
617         }
618
619         if ($nouveau) {
620                 $simple_update = (($update) ? " AND `item`.`unseen` " : '');
621
622                 if ($sql_order == "")
623                         $sql_order = "`item`.`id`";
624
625                 // "New Item View" - show all items unthreaded in reverse created date order
626                 $items = qu("SELECT %s FROM $sql_table $sql_post_table %s
627                         WHERE %s AND `item`.`uid` = %d
628                         $simple_update
629                         $sql_extra $sql_nets
630                         ORDER BY $sql_order DESC $pager_sql ",
631                         item_fieldlists(), item_joins(), item_condition(),
632                         intval($_SESSION['uid'])
633                 );
634
635                 $update_unseen = ' WHERE uid = ' . intval($_SESSION['uid']) . " AND unseen = 1 $sql_extra $sql_nets";
636         } else {
637
638                 // Normal conversation view
639
640
641                 if ($order === 'post') {
642                         $ordering = "`created`";
643                         if ($sql_order == "")
644                                 $order_mode = "created";
645                 } else {
646                         $ordering = "`commented`";
647                         if ($sql_order == "")
648                                 $order_mode = "commented";
649                 }
650
651                 if ($sql_order == "")
652                         $sql_order = "$sql_table.$ordering";
653
654                 if (($_GET["offset"] != ""))
655                         $sql_extra3 .= sprintf(" AND $sql_order <= '%s'", dbesc($_GET["offset"]));
656
657                 // Fetch a page full of parent items for this page
658                 if ($update) {
659                         if (get_config("system", "like_no_comment"))
660                                 $sql_extra4 = " AND `item`.`verb` = '".ACTIVITY_POST."'";
661                         else
662                                 $sql_extra4 = "";
663
664                         $r = qu("SELECT `item`.`parent` AS `item_id`, `item`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
665                                 FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
666                                 AND (NOT `contact`.`blocked` OR `contact`.`pending`)
667                                 WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`deleted` $sql_extra4
668                                 AND NOT `item`.`moderated` AND `item`.`unseen`
669                                 $sql_extra3 $sql_extra $sql_nets
670                                 ORDER BY `item_id` DESC LIMIT 100",
671                                 intval(local_user())
672                         );
673                 } else {
674                         $r = qu("SELECT `thread`.`iid` AS `item_id`, `thread`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
675                                 FROM $sql_table $sql_post_table STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
676                                 AND (NOT `contact`.`blocked` OR `contact`.`pending`)
677                                 WHERE `thread`.`uid` = %d AND `thread`.`visible` AND NOT `thread`.`deleted`
678                                 AND NOT `thread`.`moderated`
679                                 $sql_extra2 $sql_extra3 $sql_extra $sql_nets
680                                 ORDER BY $sql_order DESC $pager_sql ",
681                                 intval(local_user())
682                         );
683                 }
684
685                 // Then fetch all the children of the parents that are on this page
686
687                 $parents_arr = array();
688                 $parents_str = '';
689                 $date_offset = "";
690
691                 if (dbm::is_result($r)) {
692                         foreach ($r as $rr)
693                                 if (! in_array($rr['item_id'],$parents_arr))
694                                         $parents_arr[] = $rr['item_id'];
695
696                         $parents_str = implode(", ", $parents_arr);
697
698                         // splitted into separate queries to avoid the problem with very long threads
699                         // so always the last X comments are loaded
700                         // This problem can occur expecially with imported facebook posts
701                         $max_comments = get_config("system", "max_comments");
702                         if ($max_comments == 0)
703                                 $max_comments = 100;
704
705                         $items = array();
706
707                         foreach ($parents_arr AS $parents) {
708                                 $thread_items = qu(item_query()." AND `item`.`uid` = %d
709                                         AND `item`.`parent` = %d
710                                         ORDER BY `item`.`commented` DESC LIMIT %d",
711                                         intval(local_user()),
712                                         intval($parents),
713                                         intval($max_comments + 1)
714                                 );
715
716                                 if (dbm::is_result($thread_items))
717                                         $items = array_merge($items, $thread_items);
718                         }
719                         $items = conv_sort($items,$ordering);
720                 } else {
721                         $items = array();
722                 }
723
724                 if ($_GET["offset"] == "")
725                         $date_offset = $items[0][$order_mode];
726                 else
727                         $date_offset = $_GET["offset"];
728
729                 $a->page_offset = $date_offset;
730
731                 if ($parents_str)
732                         $update_unseen = ' WHERE uid = ' . intval(local_user()) . ' AND unseen = 1 AND parent IN ( ' . dbesc($parents_str) . ' )';
733         }
734
735         // We aren't going to try and figure out at the item, group, and page
736         // level which items you've seen and which you haven't. If you're looking
737         // at the top level network page just mark everything seen.
738
739
740 // The $update_unseen is a bit unreliable if you have stuff coming into your stream from a new contact -
741 // and other feeds that bring in stuff from the past. One can't find it all.
742 // I'm reviving this block to mark everything seen on page 1 of the network as a temporary measure.
743 // The correct solution is to implement a network notifications box just like the system notifications popup
744 // with the ability in the popup to "mark all seen".
745 // Several people are complaining because there are unseen messages they can't find and as time goes
746 // on they just get buried deeper. It has happened to me a couple of times also.
747
748
749         if (!$group && !$cid && !$star) {
750
751                 $unseen = q("SELECT `id` FROM `item` WHERE `unseen` AND `uid` = %d LIMIT 1",
752                                 intval(local_user()));
753
754                 if (dbm::is_result($unseen)) {
755                         $r = q("UPDATE `item` SET `unseen` = 0
756                                 WHERE `unseen` = 1 AND `uid` = %d",
757                                 intval(local_user())
758                         );
759                 }
760         } elseif ($update_unseen) {
761
762                 $unseen = q("SELECT `id` FROM `item` ".$update_unseen. " LIMIT 1");
763
764                 if (dbm::is_result($unseen)) {
765                         $r = q("UPDATE `item` SET `unseen` = 0 $update_unseen");
766                 }
767         }
768
769         // Set this so that the conversation function can find out contact info for our wall-wall items
770         $a->page_contact = $a->contact;
771
772         $mode = (($nouveau) ? 'network-new' : 'network');
773
774         $o .= conversation($a, $items, $mode, $update);
775
776         if (!$update) {
777                 if (get_pconfig(local_user(), 'system', 'infinite_scroll')) {
778                         $o .= scroll_loader();
779                 } else {
780                         $o .= alt_pager($a, count($items));
781                 }
782         }
783
784         return $o;
785 }
786
787 /**
788  * @brief Get the network tabs menu
789  *
790  * @param app $a The global App
791  * @return string Html of the networktab
792  */
793 function network_tabs(App $a) {
794         // item filter tabs
795         /// @TODO fix this logic, reduce duplication
796         /// $a->page['content'] .= '<div class="tabs-wrapper">';
797
798         list($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) = network_query_get_sel_tab($a);
799         // if no tabs are selected, defaults to comments
800         if ($no_active=='active') $all_active='active';
801
802         $cmd = (($datequery) ? '' : $a->cmd);
803         $len_naked_cmd = strlen(str_replace('/new','',$cmd));
804
805         // tabs
806         $tabs = array(
807                 array(
808                         'label' => t('Commented Order'),
809                         'url'   => str_replace('/new', '', $cmd) . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
810                         'sel'   => $all_active,
811                         'title' => t('Sort by Comment Date'),
812                         'id'    => 'commented-order-tab',
813                         'accesskey' => "e",
814                 ),
815                 array(
816                         'label' => t('Posted Order'),
817                         'url'   => str_replace('/new', '', $cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
818                         'sel'   => $postord_active,
819                         'title' => t('Sort by Post Date'),
820                         'id'    => 'posted-order-tab',
821                         'accesskey' => "t",
822                 ),
823         );
824
825         if (feature_enabled(local_user(),'personal_tab')) {
826                 $tabs[] = array(
827                         'label' => t('Personal'),
828                         'url'   => str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1',
829                         'sel'   => $conv_active,
830                         'title' => t('Posts that mention or involve you'),
831                         'id'    => 'personal-tab',
832                         'accesskey' => "r",
833                 );
834         }
835
836         if (feature_enabled(local_user(),'new_tab')) {
837                 $tabs[] = array(
838                         'label' => t('New'),
839                         'url'   => str_replace('/new', '', $cmd) . ($len_naked_cmd ? '/' : '') . 'new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''),
840                         'sel'   => $new_active,
841                         'title' => t('Activity Stream - by date'),
842                         'id'    => 'activitiy-by-date-tab',
843                         'accesskey' => "w",
844                 );
845         }
846
847         if (feature_enabled(local_user(),'link_tab')) {
848                 $tabs[] = array(
849                         'label' => t('Shared Links'),
850                         'url'   => str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1',
851                         'sel'   => $bookmarked_active,
852                         'title' => t('Interesting Links'),
853                         'id'    => 'shared-links-tab',
854                         'accesskey' => "b",
855                 );
856         }
857
858         if (feature_enabled(local_user(),'star_posts')) {
859                 $tabs[] = array(
860                         'label' => t('Starred'),
861                         'url'   => str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1',
862                         'sel'   => $starred_active,
863                         'title' => t('Favourite Posts'),
864                         'id'    => 'starred-posts-tab',
865                         'accesskey' => "m",
866                 );
867         }
868
869         // save selected tab, but only if not in search or file mode
870         if (!x($_GET,'search') && !x($_GET,'file')) {
871                 set_pconfig( local_user(), 'network.view','tab.selected',array($all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) );
872         }
873
874         $arr = array('tabs' => $tabs);
875         call_hooks('network_tabs', $arr);
876
877         $tpl = get_markup_template('common_tabs.tpl');
878
879         return replace_macros($tpl, array('$tabs' => $arr['tabs']));
880
881         // --- end item filter tabs
882 }