2 function network_init(&$a) {
4 notice( t('Permission denied.') . EOL);
8 $is_a_date_query = false;
11 for($x = 1; $x < $a->argc; $x ++) {
12 if(is_a_date_arg($a->argv[$x])) {
13 $is_a_date_query = true;
19 // convert query string to array. remove friendica args
20 $query_array = array();
21 $query_string = str_replace($a->cmd."?", "", $a->query_string);
22 parse_str($query_string, $query_array);
23 array_shift($query_array);
26 // fetch last used network view and redirect if needed
27 if(! $is_a_date_query) {
28 $sel_tabs = network_query_get_sel_tab($a);
29 $sel_nets = network_query_get_sel_net();
30 $sel_groups = network_query_get_sel_group($a);
31 $last_sel_tabs = get_pconfig(local_user(), 'network.view','tab.selected');
32 $last_sel_nets = get_pconfig(local_user(), 'network.view', 'net.selected');
33 $last_sel_groups = get_pconfig(local_user(), 'network.view', 'group.selected');
35 $remember_tab = ($sel_tabs[0] === 'active' && is_array($last_sel_tabs) && $last_sel_tabs[0] !== 'active');
36 $remember_net = ($sel_nets === false && $last_sel_nets && $last_sel_nets !== 'all');
37 $remember_group = ($sel_groups === false && $last_sel_groups && $last_sel_groups != 0);
39 $net_baseurl = '/network';
43 $net_baseurl .= '/' . $last_sel_groups; // Note that the group number must come before the "/new" tab selection
45 else if($sel_groups !== false) {
46 $net_baseurl .= '/' . $sel_groups;
50 // redirect if current selected tab is '/network' and
51 // last selected tab is _not_ '/network?f=&order=comment'.
52 // and this isn't a date query
54 $tab_baseurls = array(
64 'f=&order=comment', //all
65 'f=&order=post', //postord
68 'f=&star=1', //starred
69 'f=&bmark=1', //bookmarked
73 $k = array_search('active', $last_sel_tabs);
75 $net_baseurl .= $tab_baseurls[$k];
77 // parse out tab queries
79 $dest_qs = $tab_args[$k];
80 parse_str( $dest_qs, $dest_qa);
81 $net_args = array_merge($net_args, $dest_qa);
83 else if($sel_tabs[4] === 'active') {
84 // The '/new' tab is selected
85 $net_baseurl .= '/new';
89 $net_args['nets'] = $last_sel_nets;
91 else if($sel_nets!==false) {
92 $net_args['nets'] = $sel_nets;
95 if($remember_tab || $remember_net || $remember_group) {
96 $net_args = array_merge($query_array, $net_args);
97 $net_queries = build_querystring($net_args);
99 $redir_url = ($net_queries ? $net_baseurl."?".$net_queries : $net_baseurl);
101 goaway($a->get_baseurl() . $redir_url);
105 if(x($_GET['nets']) && $_GET['nets'] === 'all')
106 unset($_GET['nets']);
108 $group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0);
110 set_pconfig(local_user(), 'network.view', 'group.selected', $group_id);
112 require_once('include/group.php');
113 require_once('include/contact_widgets.php');
114 require_once('include/items.php');
116 if(! x($a->page,'aside'))
117 $a->page['aside'] = '';
119 $search = ((x($_GET,'search')) ? escape_tags($_GET['search']) : '');
121 if(x($_GET,'save')) {
122 $r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1",
123 intval(local_user()),
127 q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ",
128 intval(local_user()),
133 if(x($_GET,'remove')) {
134 q("delete from `search` where `uid` = %d and `term` = '%s'",
135 intval(local_user()),
140 // search terms header
141 if(x($_GET,'search')) {
142 $a->page['content'] .= replace_macros(get_markup_template("section_title.tpl"),array(
143 '$title' => sprintf( t('Search Results For: %s'), $search)
147 $a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network',true,$group_id) : '');
148 $a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false);
149 $a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
150 $a->page['aside'] .= saved_searches($search);
151 $a->page['aside'] .= fileas_widget($a->get_baseurl(true) . '/network',(x($_GET, 'file') ? $_GET['file'] : ''));
155 function saved_searches($search) {
157 if(! feature_enabled(local_user(),'savedsearch'))
162 $srchurl = '/network?f='
163 . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '')
164 . ((x($_GET,'star')) ? '&star=' . $_GET['star'] : '')
165 . ((x($_GET,'bmark')) ? '&bmark=' . $_GET['bmark'] : '')
166 . ((x($_GET,'conv')) ? '&conv=' . $_GET['conv'] : '')
167 . ((x($_GET,'nets')) ? '&nets=' . $_GET['nets'] : '')
168 . ((x($_GET,'cmin')) ? '&cmin=' . $_GET['cmin'] : '')
169 . ((x($_GET,'cmax')) ? '&cmax=' . $_GET['cmax'] : '')
170 . ((x($_GET,'file')) ? '&file=' . $_GET['file'] : '');
175 $r = q("select `id`,`term` from `search` WHERE `uid` = %d",
185 'term' => $rr['term'],
186 'encodedterm' => urlencode($rr['term']),
187 'delete' => t('Remove term'),
188 'selected' => ($search==$rr['term']),
194 $tpl = get_markup_template("saved_searches_aside.tpl");
195 $o = replace_macros($tpl, array(
196 '$title' => t('Saved Searches'),
198 '$searchbox' => search($search,'netsearch-box',$srchurl,true),
207 * Return selected tab from query
210 * '/network' => $no_active = 'active'
211 * '/network?f=&order=comment' => $comment_active = 'active'
212 * '/network?f=&order=post' => $postord_active = 'active'
213 * '/network?f=&conv=1', => $conv_active = 'active'
214 * '/network/new', => $new_active = 'active'
215 * '/network?f=&star=1', => $starred_active = 'active'
216 * '/network?f=&bmark=1', => $bookmarked_active = 'active'
217 * '/network?f=&spam=1', => $spam_active = 'active'
219 * @return Array ( $no_active, $comment_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active );
221 function network_query_get_sel_tab($a) {
223 $starred_active = '';
225 $bookmarked_active = '';
230 $postord_active = '';
232 if(($a->argc > 1 && $a->argv[1] === 'new')
233 || ($a->argc > 2 && $a->argv[2] === 'new')) {
234 $new_active = 'active';
237 if(x($_GET,'search')) {
238 $search_active = 'active';
241 if(x($_GET,'star')) {
242 $starred_active = 'active';
245 if(x($_GET,'bmark')) {
246 $bookmarked_active = 'active';
249 if(x($_GET,'conv')) {
250 $conv_active = 'active';
253 if(x($_GET,'spam')) {
254 $spam_active = 'active';
259 if (($new_active == '')
260 && ($starred_active == '')
261 && ($bookmarked_active == '')
262 && ($conv_active == '')
263 && ($search_active == '')
264 && ($spam_active == '')) {
265 $no_active = 'active';
268 if ($no_active=='active' && x($_GET,'order')) {
269 switch($_GET['order']){
270 case 'post': $postord_active = 'active'; $no_active=''; break;
271 case 'comment' : $all_active = 'active'; $no_active=''; break;
275 return array($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active);
279 * Return selected network from query
281 function network_query_get_sel_net() {
284 if(x($_GET,'nets')) {
285 $network = $_GET['nets'];
291 function network_query_get_sel_group($a) {
294 if($a->argc >= 2 && is_numeric($a->argv[1])) {
295 $group = $a->argv[1];
302 function network_content(&$a, $update = 0) {
304 require_once('include/conversation.php');
307 $_SESSION['return_url'] = $a->query_string;
311 // TODO:is this really necessary? $a is already available to hooks
312 $arr = array('query' => $a->query_string);
313 call_hooks('network_content_init', $arr);
316 $datequery = $datequery2 = '';
323 for($x = 1; $x < $a->argc; $x ++) {
324 if(is_a_date_arg($a->argv[$x])) {
326 $datequery2 = escape_tags($a->argv[$x]);
328 $datequery = escape_tags($a->argv[$x]);
329 $_GET['order'] = 'post';
332 elseif($a->argv[$x] === 'new') {
335 elseif(intval($a->argv[$x])) {
336 $group = intval($a->argv[$x]);
337 $def_acl = array('allow_gid' => '<' . $group . '>');
345 // TODO: fix this logic, reduce duplication
346 //$a->page['content'] .= '<div class="tabs-wrapper">';
348 list($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) = network_query_get_sel_tab($a);
349 // if no tabs are selected, defaults to comments
350 if ($no_active=='active') $all_active='active';
352 $cmd = (($datequery) ? '' : $a->cmd);
353 $len_naked_cmd = strlen(str_replace('/new','',$cmd));
358 'label' => t('Commented Order'),
359 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
361 'title'=> t('Sort by Comment Date'),
364 'label' => t('Posted Order'),
365 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
366 'sel'=>$postord_active,
367 'title' => t('Sort by Post Date'),
371 if(feature_enabled(local_user(),'personal_tab')) {
373 'label' => t('Personal'),
374 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1',
375 'sel' => $conv_active,
376 'title' => t('Posts that mention or involve you'),
380 if(feature_enabled(local_user(),'new_tab')) {
383 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ($len_naked_cmd ? '/' : '') . 'new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''),
384 'sel' => $new_active,
385 'title' => t('Activity Stream - by date'),
389 if(feature_enabled(local_user(),'link_tab')) {
391 'label' => t('Shared Links'),
392 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1',
393 'sel'=>$bookmarked_active,
394 'title'=> t('Interesting Links'),
398 if(feature_enabled(local_user(),'star_posts')) {
400 'label' => t('Starred'),
401 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1',
402 'sel'=>$starred_active,
403 'title' => t('Favourite Posts'),
407 // save selected tab, but only if not in search or file mode
408 if(!x($_GET,'search') && !x($_GET,'file')) {
409 set_pconfig( local_user(), 'network.view','tab.selected',array($all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) );
412 $arr = array('tabs' => $tabs);
413 call_hooks('network_tabs', $arr);
415 $o .= replace_macros(get_markup_template('common_tabs.tpl'), array('$tabs'=> $arr['tabs']));
417 // --- end item filter tabs
419 $contact_id = $a->cid;
421 require_once('include/acl_selectors.php');
423 $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0);
424 $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0);
425 $bmark = ((x($_GET,'bmark')) ? intval($_GET['bmark']) : 0);
426 $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment');
427 $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0);
428 $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0);
429 $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0);
430 $nets = ((x($_GET,'nets')) ? $_GET['nets'] : '');
431 $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0);
432 $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99);
433 $file = ((x($_GET,'file')) ? $_GET['file'] : '');
437 if(x($_GET,'search') || x($_GET,'file'))
440 $def_acl = array('allow_cid' => '<' . intval($cid) . '>');
443 $r = q("select id from contact where uid = %d and network = '%s' and self = 0",
444 intval(local_user()),
451 $str .= '<' . $rr['id'] . '>';
453 $def_acl = array('allow_cid' => $str);
455 set_pconfig(local_user(), 'network.view', 'net.selected', ($nets ? $nets : 'all'));
459 if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
460 notice( sprintf( tt('Warning: This group contains %s member from an insecure network.',
461 'Warning: This group contains %s members from an insecure network.',
463 notice( t('Private messages to this group are at risk of public disclosure.') . EOL);
467 nav_set_selected('network');
469 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
474 $contact = q("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `forum`", intval($cid), intval(local_user()));
476 $content = "@".$contact[0]["nick"]."+".$cid;
481 'allow_location' => $a->user['allow_location'],
482 'default_location' => $a->user['default-location'],
483 'nickname' => $a->user['nickname'],
484 'lockstate'=> ((($group) || ($cid) || ($nets) || (is_array($a->user) &&
485 ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) ||
486 (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))) ? 'lock' : 'unlock'),
487 'default_perms' => get_acl_permissions($a->user),
488 'acl' => populate_acl((($group || $cid || $nets) ? $def_acl : $a->user), $celeb),
489 'bang' => (($group || $cid || $nets) ? '!' : ''),
490 'visitor' => 'block',
491 'profile_uid' => local_user(),
492 'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
493 'content' => $content,
496 $o .= status_editor($a,$x);
500 // We don't have to deal with ACLs on this page. You're looking at everything
501 // that belongs to you, hence you can see all of it. We will filter by group if
504 $sql_post_table = "";
505 $sql_options = (($star) ? " and starred = 1 " : '');
506 $sql_options .= (($bmark) ? " and bookmark = 1 " : '');
507 $sql_extra = $sql_options;
510 $sql_table = "`thread`";
511 $sql_parent = "`iid`";
513 if ($nouveau OR strlen($file) OR $update) {
514 $sql_table = "`item`";
515 $sql_parent = "`parent`";
518 $sql_nets = (($nets) ? sprintf(" and $sql_table.`network` = '%s' ", dbesc($nets)) : '');
521 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
523 intval($_SESSION['uid'])
528 notice( t('No such group') . EOL );
529 goaway($a->get_baseurl(true) . '/network/0');
533 $contacts = expand_groups(array($group));
535 $contact_str_self = "";
537 if((is_array($contacts)) && count($contacts)) {
538 $contact_str = implode(',',$contacts);
539 $self = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", intval($_SESSION['uid']));
541 $contact_str_self = ",".$self[0]["id"];
544 $contact_str = ' 0 ';
545 info( t('Group is empty'));
548 //$sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item` WHERE (`contact-id` IN ($contact_str) OR `allow_gid` like '".protect_sprintf('%<'.intval($group).'>%')."') and deleted = 0 ORDER BY `created` DESC) AS `temp1` ON $sql_table.$sql_parent = `temp1`.`parent` ";
550 $sql_extra3 .= " AND `contact-id` IN ($contact_str$contact_str_self) ";
551 $sql_extra3 .= " AND EXISTS (SELECT id FROM `item` WHERE (`contact-id` IN ($contact_str)
552 OR `allow_gid` like '".protect_sprintf('%<'.intval($group).'>%')."') and deleted = 0
553 AND parent = $sql_table.$sql_parent) ";
555 $o = replace_macros(get_markup_template("section_title.tpl"),array(
556 '$title' => sprintf( t('Group: %s'), $r[0]['name'])
562 $r = q("SELECT `id`,`name`,`network`,`writable`,`nurl` FROM `contact` WHERE `id` = %d
563 AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
567 $sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item`
568 WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." and deleted = 0
569 ORDER BY `item`.`received` DESC) AS `temp1`
570 ON $sql_table.$sql_parent = `temp1`.`parent` ";
573 $o = replace_macros(get_markup_template("section_title.tpl"),array(
574 '$title' => sprintf( t('Contact: %s'), $r[0]['name'])
577 if($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
578 notice( t('Private messages to this person are at risk of public disclosure.') . EOL);
583 notice( t('Invalid contact.') . EOL);
584 goaway($a->get_baseurl(true) . '/network');
589 if((! $group) && (! $cid) && (! $update) && (! get_config('theme','hide_eventlist'))) {
590 $o .= get_birthdays();
595 $sql_extra3 .= protect_sprintf(sprintf(" AND $sql_table.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
598 $sql_extra3 .= protect_sprintf(sprintf(" AND $sql_table.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
601 //$sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` ");
602 $sql_extra2 = (($nouveau) ? '' : $sql_extra2);
603 $sql_extra3 = (($nouveau) ? '' : $sql_extra3);
605 $order_mode = "received";
608 if(x($_GET,'search')) {
609 $search = escape_tags($_GET['search']);
611 if(strpos($search,'#') === 0) {
613 $search = substr($search,1);
616 if (get_config('system','only_tag_search'))
622 $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` ",
623 dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval(local_user()));
624 $sql_order = "`item`.`id`";
627 if (get_config('system','use_fulltext_engine'))
628 $sql_extra = sprintf(" AND MATCH (`item`.`body`, `item`.`title`) AGAINST ('%s' in boolean mode) ", dbesc(protect_sprintf($search)));
630 $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
631 $sql_order = "`item`.`received`";
632 $order_mode = "received";
636 $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` ",
637 dbesc(protect_sprintf($file)), intval(TERM_OBJ_POST), intval(TERM_FILE), intval(local_user()));
638 $sql_order = "`item`.`id`";
643 $sql_extra3 .= " AND `mention`";
647 // only setup pagination on initial page view
652 if(get_config('system', 'old_pager')) {
653 $r = q("SELECT COUNT(*) AS `total`
654 FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = $sql_table.`contact-id`
655 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
656 WHERE $sql_table.`uid` = %d AND $sql_table.`visible` = 1 AND $sql_table.`deleted` = 0
657 $sql_extra2 $sql_extra3
658 $sql_extra $sql_nets ",
659 intval($_SESSION['uid'])
663 $a->set_pager_total($r[0]['total']);
667 // check if we serve a mobile device and get the user settings
670 $itemspage_network = get_pconfig(local_user(),'system','itemspage_mobile_network');
671 $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
673 $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
674 $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
676 // now that we have the user settings, see if the theme forces
677 // a maximum item number which is lower then the user choice
678 if(($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network))
679 $itemspage_network = $a->force_max_items;
681 $a->set_pager_itemspage($itemspage_network);
682 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
686 $simple_update = (($update) ? " and `item`.`unseen` = 1 " : '');
688 if ($sql_order == "")
689 $sql_order = "`item`.`received`";
691 // "New Item View" - show all items unthreaded in reverse created date order
692 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`,
693 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
694 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
695 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
696 FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
697 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
698 WHERE `item`.`uid` = %d AND `item`.`visible` = 1
699 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
702 ORDER BY $sql_order DESC $pager_sql ",
703 intval($_SESSION['uid'])
706 $update_unseen = ' WHERE uid = ' . intval($_SESSION['uid']) . " AND unseen = 1 $sql_extra $sql_nets";
709 // Normal conversation view
712 if($order === 'post') {
713 $ordering = "`created`";
714 if ($sql_order == "")
715 $order_mode = "created";
717 $ordering = "`commented`";
718 if ($sql_order == "")
719 $order_mode = "commented";
722 if ($sql_order == "")
723 $sql_order = "$sql_table.$ordering";
725 if (($_GET["offset"] != ""))
726 $sql_extra3 .= sprintf(" AND $sql_order <= '%s'", dbesc($_GET["offset"]));
728 // Fetch a page full of parent items for this page
730 if (!get_config("system", "like_no_comment"))
731 $sql_extra4 = "(`item`.`deleted` = 0 OR `item`.`verb` = '".ACTIVITY_LIKE."' OR `item`.`verb` = '".ACTIVITY_DISLIKE."')";
733 $sql_extra4 = "`item`.`deleted` = 0 AND `item`.`verb` = '".ACTIVITY_POST."'";
735 $r = q("SELECT `item`.`parent` AS `item_id`, `item`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
736 FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
737 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
738 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND $sql_extra4
739 AND `item`.`moderated` = 0 AND `item`.`unseen` = 1
740 $sql_extra3 $sql_extra $sql_nets ORDER BY `item_id` DESC LIMIT 100",
744 $r = q("SELECT `thread`.`iid` AS `item_id`, `thread`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
745 FROM $sql_table $sql_post_table STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
746 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
747 WHERE `thread`.`uid` = %d AND `thread`.`visible` = 1 AND `thread`.`deleted` = 0
748 AND `thread`.`moderated` = 0
749 $sql_extra2 $sql_extra3 $sql_extra $sql_nets
750 ORDER BY $sql_order DESC $pager_sql ",
755 // Then fetch all the children of the parents that are on this page
757 $parents_arr = array();
763 if(! in_array($rr['item_id'],$parents_arr))
764 $parents_arr[] = $rr['item_id'];
766 $parents_str = implode(", ", $parents_arr);
768 // splitted into separate queries to avoid the problem with very long threads
769 // so always the last X comments are loaded
770 // This problem can occur expecially with imported facebook posts
771 $max_comments = get_config("system", "max_comments");
772 if ($max_comments == 0)
777 foreach ($parents_arr AS $parents) {
778 // $sql_extra ORDER BY `item`.`commented` DESC LIMIT %d",
779 $thread_items = q("SELECT `item`.*, `item`.`id` AS `item_id`, `item`.`network` AS `item_network`,
780 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`, `contact`.`writable`,
781 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
782 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
783 FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
784 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
785 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
786 AND `item`.`moderated` = 0
787 AND `item`.`parent` = %d
788 ORDER BY `item`.`commented` DESC LIMIT %d",
789 intval(local_user()),
791 intval($max_comments + 1)
793 $items = array_merge($items, $thread_items);
795 $items = conv_sort($items,$ordering);
800 if ($_GET["offset"] == "")
801 $date_offset = $items[0][$order_mode];
803 $date_offset = $_GET["offset"];
805 $a->page_offset = $date_offset;
808 $update_unseen = ' WHERE uid = ' . intval(local_user()) . ' AND unseen = 1 AND parent IN ( ' . dbesc($parents_str) . ' )';
811 // We aren't going to try and figure out at the item, group, and page
812 // level which items you've seen and which you haven't. If you're looking
813 // at the top level network page just mark everything seen.
816 // The $update_unseen is a bit unreliable if you have stuff coming into your stream from a new contact -
817 // and other feeds that bring in stuff from the past. One can't find it all.
818 // I'm reviving this block to mark everything seen on page 1 of the network as a temporary measure.
819 // The correct solution is to implement a network notifications box just like the system notifications popup
820 // with the ability in the popup to "mark all seen".
821 // Several people are complaining because there are unseen messages they can't find and as time goes
822 // on they just get buried deeper. It has happened to me a couple of times also.
825 if((! $group) && (! $cid) && (! $star)) {
826 $r = q("UPDATE `item` SET `unseen` = 0
827 WHERE `unseen` = 1 AND `uid` = %d",
833 $r = q("UPDATE `item` SET `unseen` = 0 $update_unseen");
836 // Set this so that the conversation function can find out contact info for our wall-wall items
837 $a->page_contact = $a->contact;
839 $mode = (($nouveau) ? 'network-new' : 'network');
841 $o .= conversation($a,$items,$mode,$update);
844 if(get_pconfig(local_user(),'system','infinite_scroll')) {
845 $o .= scroll_loader();
846 } elseif(!get_config('system', 'old_pager')) {
847 $o .= alt_pager($a,count($items));