4 function network_init(&$a) {
6 notice( t('Permission denied.') . EOL);
10 $is_a_date_query = false;
13 for($x = 1; $x < $a->argc; $x ++) {
14 if(is_a_date_arg($a->argv[$x])) {
15 $is_a_date_query = true;
21 // convert query string to array and remove first element (which is friendica args)
22 $query_array = array();
23 parse_str($a->query_string, $query_array);
24 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;
92 if($remember_tab || $remember_net || $remember_group) {
93 $net_args = array_merge($query_array, $net_args);
94 $net_queries = build_querystring($net_args);
96 // groups filter is in form of "network/nnn". Add it to $dest_url, if it's possible
97 //if ($a->argc==2 && is_numeric($a->argv[1]) && strpos($net_baseurl, "/",1)===false){
98 // $net_baseurl .= "/".$a->argv[1];
101 $redir_url = ($net_queries ? $net_baseurl."?".$net_queries : $net_baseurl);
102 goaway($a->get_baseurl() . $redir_url);
106 /* $sel_tabs = network_query_get_sel_tab($a);
107 $last_sel_tabs = get_pconfig(local_user(), 'network.view','tab.selected');
108 if (is_array($last_sel_tabs)){
110 '/network?f=&order=comment',//all
111 '/network?f=&order=post', //postord
112 '/network?f=&conv=1', //conv
113 '/network/new', //new
114 '/network?f=&star=1', //starred
115 '/network?f=&bmark=1', //bookmarked
116 '/network?f=&spam=1', //spam
119 // redirect if current selected tab is 'no_active' and
120 // last selected tab is _not_ 'all_active'.
121 // and this isn't a date query
123 if ($sel_tabs[0] == 'active' && $last_sel_tabs[0]!='active' && (! $is_a_date_query)) {
124 $k = array_search('active', $last_sel_tabs);
126 // merge tab querystring with request querystring
128 list($dest_url,$dest_qs) = explode("?", $tab_urls[$k]);
129 parse_str( $dest_qs, $dest_qa);
130 $dest_qa = array_merge($query_array, $dest_qa);
131 $dest_qs = build_querystring($dest_qa);
133 // groups filter is in form of "network/nnn". Add it to $dest_url, if it's possible
134 if ($a->argc==2 && is_numeric($a->argv[1]) && strpos($dest_url, "/",1)===false){
135 $dest_url .= "/".$a->argv[1];
138 goaway($a->get_baseurl() . $dest_url."?".$dest_qs);
142 if(x($_GET['nets']) && $_GET['nets'] === 'all')
143 unset($_GET['nets']);
145 $group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0);
147 set_pconfig(local_user(), 'network.view', 'group.selected', $group_id);
149 require_once('include/group.php');
150 require_once('include/contact_widgets.php');
151 require_once('include/items.php');
153 if(! x($a->page,'aside'))
154 $a->page['aside'] = '';
156 $search = ((x($_GET,'search')) ? escape_tags($_GET['search']) : '');
158 if(x($_GET,'save')) {
159 $r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1",
160 intval(local_user()),
164 q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ",
165 intval(local_user()),
170 if(x($_GET,'remove')) {
171 q("delete from `search` where `uid` = %d and `term` = '%s' limit 1",
172 intval(local_user()),
179 // search terms header
180 if(x($_GET,'search')) {
181 $a->page['content'] .= '<h2>' . t('Search Results For:') . ' ' . $search . '</h2>';
184 $a->page['aside'] .= group_side('network/0','network',true,$group_id);
185 $a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false);
186 $a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
187 $a->page['aside'] .= saved_searches($search);
188 $a->page['aside'] .= fileas_widget($a->get_baseurl(true) . '/network',(x($_GET, 'file') ? $_GET['file'] : ''));
192 function saved_searches($search) {
196 $srchurl = '/network?f='
197 . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '')
198 . ((x($_GET,'star')) ? '&star=' . $_GET['star'] : '')
199 . ((x($_GET,'bmark')) ? '&bmark=' . $_GET['bmark'] : '')
200 . ((x($_GET,'conv')) ? '&conv=' . $_GET['conv'] : '')
201 . ((x($_GET,'nets')) ? '&nets=' . $_GET['nets'] : '')
202 . ((x($_GET,'cmin')) ? '&cmin=' . $_GET['cmin'] : '')
203 . ((x($_GET,'cmax')) ? '&cmax=' . $_GET['cmax'] : '')
204 . ((x($_GET,'file')) ? '&file=' . $_GET['file'] : '');
209 $r = q("select `id`,`term` from `search` WHERE `uid` = %d",
219 'term' => $rr['term'],
220 'encodedterm' => urlencode($rr['term']),
221 'delete' => t('Remove term'),
222 'selected' => ($search==$rr['term']),
228 $tpl = get_markup_template("saved_searches_aside.tpl");
229 $o = replace_macros($tpl, array(
230 '$title' => t('Saved Searches'),
232 '$searchbox' => search($search,'netsearch-box',$srchurl,true),
241 * Return selected tab from query
244 * '/network' => $no_active = 'active'
245 * '/network?f=&order=comment' => $comment_active = 'active'
246 * '/network?f=&order=post' => $postord_active = 'active'
247 * '/network?f=&conv=1', => $conv_active = 'active'
248 * '/network/new', => $new_active = 'active'
249 * '/network?f=&star=1', => $starred_active = 'active'
250 * '/network?f=&bmark=1', => $bookmarked_active = 'active'
251 * '/network?f=&spam=1', => $spam_active = 'active'
253 * @return Array ( $no_active, $comment_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active );
255 function network_query_get_sel_tab($a) {
257 $starred_active = '';
259 $bookmarked_active = '';
264 $postord_active = '';
266 if(($a->argc > 1 && $a->argv[1] === 'new')
267 || ($a->argc > 2 && $a->argv[2] === 'new')) {
268 $new_active = 'active';
271 if(x($_GET,'search')) {
272 $search_active = 'active';
275 if(x($_GET,'star')) {
276 $starred_active = 'active';
279 if(x($_GET,'bmark')) {
280 $bookmarked_active = 'active';
283 if(x($_GET,'conv')) {
284 $conv_active = 'active';
287 if(x($_GET,'spam')) {
288 $spam_active = 'active';
293 if (($new_active == '')
294 && ($starred_active == '')
295 && ($bookmarked_active == '')
296 && ($conv_active == '')
297 && ($search_active == '')
298 && ($spam_active == '')) {
299 $no_active = 'active';
302 if ($no_active=='active' && x($_GET,'order')) {
303 switch($_GET['order']){
304 case 'post': $postord_active = 'active'; $no_active=''; break;
305 case 'comment' : $all_active = 'active'; $no_active=''; break;
309 return array($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active);
313 * Return selected network from query
315 function network_query_get_sel_net() {
318 if(x($_GET,'nets')) {
319 $network = $_GET['nets'];
325 function network_query_get_sel_group($a) {
328 if($a->argc >= 2 && is_numeric($a->argv[1])) {
329 $group = $a->argv[1];
336 function network_content(&$a, $update = 0) {
338 require_once('include/conversation.php');
341 $_SESSION['return_url'] = $a->query_string;
345 $arr = array('query' => $a->query_string);
347 call_hooks('network_content_init', $arr);
350 $datequery = $datequery2 = '';
357 for($x = 1; $x < $a->argc; $x ++) {
358 if(is_a_date_arg($a->argv[$x])) {
360 $datequery2 = escape_tags($a->argv[$x]);
362 $datequery = escape_tags($a->argv[$x]);
363 $_GET['order'] = 'post';
366 elseif($a->argv[$x] === 'new') {
369 elseif(intval($a->argv[$x])) {
370 $group = intval($a->argv[$x]);
371 $def_acl = array('allow_gid' => '<' . $group . '>');
380 // TODO: fix this logic, reduce duplication
381 //$a->page['content'] .= '<div class="tabs-wrapper">';
383 list($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) = network_query_get_sel_tab($a);
384 // if no tabs are selected, defaults to comments
385 if ($no_active=='active') $all_active='active';
386 //echo "<pre>"; var_dump($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active); killme();
388 $cmd = (($datequery) ? '' : $a->cmd);
389 $len_naked_cmd = strlen(str_replace('/new','',$cmd));
394 'label' => t('Commented Order'),
395 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
397 'title'=> t('Sort by Comment Date'),
400 'label' => t('Posted Order'),
401 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
402 'sel'=>$postord_active,
403 'title' => t('Sort by Post Date'),
407 'label' => t('Personal'),
408 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&conv=1',
409 'sel' => $conv_active,
410 'title' => t('Posts that mention or involve you'),
414 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ($len_naked_cmd ? '/' : '') . 'new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''),
415 'sel' => $new_active,
416 'title' => t('Activity Stream - by date'),
419 'label' => t('Starred'),
420 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&star=1',
421 'sel'=>$starred_active,
422 'title' => t('Favourite Posts'),
425 'label' => t('Shared Links'),
426 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&bmark=1',
427 'sel'=>$bookmarked_active,
428 'title'=> t('Interesting Links'),
431 // 'label' => t('Spam'),
432 // 'url'=>$a->get_baseurl(true) . '/network?f=&spam=1'
433 // 'sel'=> $spam_active,
434 // 'title' => t('Posts flagged as SPAM'),
439 // save selected tab, but only if not in search or file mode
440 if(!x($_GET,'search') && !x($_GET,'file')) {
441 set_pconfig( local_user(), 'network.view','tab.selected',array($all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active) );
444 $arr = array('tabs' => $tabs);
445 call_hooks('network_tabs', $arr);
447 $o .= replace_macros(get_markup_template('common_tabs.tpl'), array('$tabs'=> $arr['tabs']));
449 // --- end item filter tabs
455 $contact_id = $a->cid;
457 require_once('include/acl_selectors.php');
459 $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0);
460 $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0);
461 $bmark = ((x($_GET,'bmark')) ? intval($_GET['bmark']) : 0);
462 $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment');
463 $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0);
464 $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0);
465 $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0);
466 $nets = ((x($_GET,'nets')) ? $_GET['nets'] : '');
467 $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0);
468 $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99);
469 $file = ((x($_GET,'file')) ? $_GET['file'] : '');
473 if(x($_GET,'search') || x($_GET,'file'))
476 $def_acl = array('allow_cid' => '<' . intval($cid) . '>');
479 $r = q("select id from contact where uid = %d and network = '%s' and self = 0",
480 intval(local_user()),
487 $str .= '<' . $rr['id'] . '>';
489 $def_acl = array('allow_cid' => $str);
491 set_pconfig(local_user(), 'network.view', 'net.selected', ($nets ? $nets : 'all'));
495 if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
496 notice( sprintf( tt('Warning: This group contains %s member from an insecure network.',
497 'Warning: This group contains %s members from an insecure network.',
499 notice( t('Private messages to this group are at risk of public disclosure.') . EOL);
503 nav_set_selected('network');
505 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
509 'allow_location' => $a->user['allow_location'],
510 'default_location' => $a->user['default-location'],
511 'nickname' => $a->user['nickname'],
512 'lockstate' => ((($group) || ($cid) || ($nets) || (is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))) ? 'lock' : 'unlock'),
513 'acl' => populate_acl((($group || $cid || $nets) ? $def_acl : $a->user), $celeb),
514 'bang' => (($group || $cid || $nets) ? '!' : ''),
515 'visitor' => 'block',
516 'profile_uid' => local_user()
519 $o .= status_editor($a,$x);
524 // We don't have to deal with ACL's on this page. You're looking at everything
525 // that belongs to you, hence you can see all of it. We will filter by group if
529 $sql_options = (($star) ? " and starred = 1 " : '');
530 $sql_options .= (($bmark) ? " and bookmark = 1 " : '');
532 $sql_nets = (($nets) ? sprintf(" and `contact`.`network` = '%s' ", dbesc($nets)) : '');
534 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` $sql_options ) ";
537 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
539 intval($_SESSION['uid'])
544 notice( t('No such group') . EOL );
545 goaway($a->get_baseurl(true) . '/network');
549 $contacts = expand_groups(array($group));
550 if((is_array($contacts)) && count($contacts)) {
551 $contact_str = implode(',',$contacts);
554 $contact_str = ' 0 ';
555 info( t('Group is empty'));
558 $sql_extra = " AND `item`.`parent` IN ( SELECT DISTINCT(`parent`) FROM `item` WHERE 1 $sql_options AND ( `contact-id` IN ( $contact_str ) OR `allow_gid` like '" . protect_sprintf('%<' . intval($group) . '>%') . "' ) and deleted = 0 ) ";
559 $o = '<h2>' . t('Group: ') . $r[0]['name'] . '</h2>' . $o;
563 $r = q("SELECT `id`,`name`,`network`,`writable`,`nurl` FROM `contact` WHERE `id` = %d
564 AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
568 $sql_extra = " AND `item`.`parent` IN ( SELECT DISTINCT(`parent`) FROM `item` WHERE 1 $sql_options AND `contact-id` = " . intval($cid) . " and deleted = 0 ) ";
569 $o = '<h2>' . t('Contact: ') . $r[0]['name'] . '</h2>' . $o;
570 if($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
571 notice( t('Private messages to this person are at risk of public disclosure.') . EOL);
576 notice( t('Invalid contact.') . EOL);
577 goaway($a->get_baseurl(true) . '/network');
582 if((! $group) && (! $cid) && (! $update) && (! get_config('theme','hide_eventlist'))) {
583 $o .= get_birthdays();
588 // The special div is needed for liveUpdate to kick in for this page.
589 // We only launch liveUpdate if you aren't filtering in some incompatible
590 // way and also you aren't writing a comment (discovered in javascript).
592 $o .= '<div id="live-network"></div>' . "\r\n";
593 $o .= "<script> var profile_uid = " . $_SESSION['uid']
594 . "; var netargs = '" . substr($a->cmd,8)
596 . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '')
597 . ((x($_GET,'search')) ? '&search=' . $_GET['search'] : '')
598 . ((x($_GET,'star')) ? '&star=' . $_GET['star'] : '')
599 . ((x($_GET,'order')) ? '&order=' . $_GET['order'] : '')
600 . ((x($_GET,'bmark')) ? '&bmark=' . $_GET['bmark'] : '')
601 . ((x($_GET,'liked')) ? '&liked=' . $_GET['liked'] : '')
602 . ((x($_GET,'conv')) ? '&conv=' . $_GET['conv'] : '')
603 . ((x($_GET,'spam')) ? '&spam=' . $_GET['spam'] : '')
604 . ((x($_GET,'nets')) ? '&nets=' . $_GET['nets'] : '')
605 . ((x($_GET,'cmin')) ? '&cmin=' . $_GET['cmin'] : '')
606 . ((x($_GET,'cmax')) ? '&cmax=' . $_GET['cmax'] : '')
607 . ((x($_GET,'file')) ? '&file=' . $_GET['file'] : '')
609 . "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
615 $sql_extra3 .= protect_sprintf(sprintf(" AND item.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
618 $sql_extra3 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
621 $sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` ");
622 $sql_extra3 = (($nouveau) ? '' : $sql_extra3);
624 if(x($_GET,'search')) {
625 $search = escape_tags($_GET['search']);
626 if (get_config('system','use_fulltext_engine')) {
627 if(strpos($search,'#') === 0)
628 $sql_extra .= sprintf(" AND (MATCH(tag) AGAINST ('".'"%s"'."' in boolean mode)) ",
629 dbesc(protect_sprintf($search))
632 $sql_extra .= sprintf(" AND (MATCH(`item`.`body`) AGAINST ('".'"%s"'."' in boolean mode) or MATCH(tag) AGAINST ('".'"%s"'."' in boolean mode)) ",
633 dbesc(protect_sprintf($search)),
634 dbesc(protect_sprintf($search))
637 $sql_extra .= sprintf(" AND ( `item`.`body` like '%s' OR `item`.`tag` like '%s' ) ",
638 dbesc(protect_sprintf('%' . $search . '%')),
639 dbesc(protect_sprintf('%]' . $search . '[%'))
644 $sql_extra .= file_tag_file_query('item',unxmlify($file));
648 $myurl = $a->get_baseurl() . '/profile/'. $a->user['nickname'];
649 $myurl = substr($myurl,strpos($myurl,'://')+3);
650 $myurl = str_replace('www.','',$myurl);
651 $diasp_url = str_replace('/profile/','/u/',$myurl);
652 if (get_config('system','use_fulltext_engine'))
653 $sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where (MATCH(`author-link`) AGAINST ('".'"%s"'."' in boolean mode) or MATCH(`tag`) AGAINST ('".'"%s"'."' in boolean mode) or MATCH(tag) AGAINST ('".'"%s"'."' in boolean mode))) ",
654 dbesc(protect_sprintf($myurl)),
655 dbesc(protect_sprintf($myurl)),
656 dbesc(protect_sprintf($diasp_url))
659 $sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where ( `author-link` like '%s' or `tag` like '%s' or tag like '%s' )) ",
660 dbesc(protect_sprintf('%' . $myurl)),
661 dbesc(protect_sprintf('%' . $myurl . ']%')),
662 dbesc(protect_sprintf('%' . $diasp_url . ']%'))
669 // only setup pagination on initial page view
674 if(! get_pconfig(local_user(),'system','alt_pager')) {
675 $r = q("SELECT COUNT(*) AS `total`
676 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
677 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
678 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
679 $sql_extra2 $sql_extra3
680 $sql_extra $sql_nets ",
681 intval($_SESSION['uid'])
685 $a->set_pager_total($r[0]['total']);
689 $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
690 $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
691 if(($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network))
692 $itemspage_network = $a->force_max_items;
694 $a->set_pager_itemspage($itemspage_network);
695 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
698 $simple_update = (($update) ? " and `item`.`unseen` = 1 " : '');
701 // "New Item View" - show all items unthreaded in reverse created date order
703 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`,
704 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
705 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
706 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
707 FROM `item`, `contact`
708 WHERE `item`.`uid` = %d AND `item`.`visible` = 1
709 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
711 AND `contact`.`id` = `item`.`contact-id`
712 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
714 ORDER BY `item`.`received` DESC $pager_sql ",
715 intval($_SESSION['uid'])
718 $update_unseen = ' WHERE uid = ' . intval($_SESSION['uid']) . " AND unseen = 1 $sql_extra $sql_nets";
722 // Normal conversation view
725 if($order === 'post')
726 $ordering = "`created`";
728 $ordering = "`commented`";
730 // Fetch a page full of parent items for this page
733 $r = q("SELECT `parent` AS `item_id`, `contact`.`uid` AS `contact_uid`
734 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
735 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND
736 (`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE ."' OR item.verb = '" . ACTIVITY_DISLIKE . "')
737 and `item`.`moderated` = 0 and `item`.`unseen` = 1
738 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
739 $sql_extra3 $sql_extra $sql_nets ",
744 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
745 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
746 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
747 AND `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
748 AND `item`.`parent` = `item`.`id`
749 $sql_extra3 $sql_extra $sql_nets
750 ORDER BY `item`.$ordering DESC $pager_sql ",
755 // Then fetch all the children of the parents that are on this page
757 $parents_arr = array();
762 if(! in_array($rr['item_id'],$parents_arr))
763 $parents_arr[] = $rr['item_id'];
764 $parents_str = implode(', ', $parents_arr);
766 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`,
767 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`, `contact`.`writable`,
768 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
769 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
770 FROM `item`, `contact`
771 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
772 AND `item`.`moderated` = 0 AND `contact`.`id` = `item`.`contact-id`
773 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
774 AND `item`.`parent` IN ( %s )
776 intval(local_user()),
780 $items = conv_sort($items,$ordering);
787 $update_unseen = ' WHERE uid = ' . intval(local_user()) . ' AND unseen = 1 AND parent IN ( ' . dbesc($parents_str) . ' )';
791 // We aren't going to try and figure out at the item, group, and page
792 // level which items you've seen and which you haven't. If you're looking
793 // at the top level network page just mark everything seen.
795 /* if((! $group) && (! $cid) && (! $star)) {
796 $r = q("UPDATE `item` SET `unseen` = 0
797 WHERE `unseen` = 1 AND `uid` = %d",
803 $r = q("UPDATE `item` SET `unseen` = 0 $update_unseen");
805 // Set this so that the conversation function can find out contact info for our wall-wall items
806 $a->page_contact = $a->contact;
808 $mode = (($nouveau) ? 'network-new' : 'network');
810 $o .= conversation($a,$items,$mode,$update);
813 if(! get_pconfig(local_user(),'system','alt_pager')) {
817 $o .= alt_pager($a,count($items));