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