X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnetwork.php;h=28893dda7bf0c85d6854ffbfb8ed49bb0547a493;hb=3303d9db7564cb73984755be5c54365d61653b8b;hp=97f00eeda90ecfb1f3bc665793eac035d96fff6b;hpb=d817117f6e43ad2ce6957798681f6e4133433f52;p=friendica.git diff --git a/mod/network.php b/mod/network.php index 97f00eeda9..28893dda7b 100644 --- a/mod/network.php +++ b/mod/network.php @@ -18,13 +18,92 @@ function network_init(&$a) { } } - // convert query string to array and remove first element (wich is friendica args) + // convert query string to array and remove first element (which is friendica args) $query_array = array(); parse_str($a->query_string, $query_array); array_shift($query_array); - // fetch last used tab and redirect if needed - $sel_tabs = network_query_get_sel_tab($a); + // fetch last used network view and redirect if needed + if(! $is_a_date_query) { + $sel_tabs = network_query_get_sel_tab($a); + $sel_nets = network_query_get_sel_net(); + $sel_groups = network_query_get_sel_group($a); + $last_sel_tabs = get_pconfig(local_user(), 'network.view','tab.selected'); + $last_sel_nets = get_pconfig(local_user(), 'network.view', 'net.selected'); + $last_sel_groups = get_pconfig(local_user(), 'network.view', 'group.selected'); + + $remember_tab = ($sel_tabs[0] === 'active' && is_array($last_sel_tabs) && $last_sel_tabs[0] !== 'active'); + $remember_net = ($sel_nets === false && $last_sel_nets && $last_sel_nets !== 'all'); + $remember_group = ($sel_groups === false && $last_sel_groups && $last_sel_groups != 0); + + $net_baseurl = '/network'; + $net_args = array(); + + if($remember_group) { + $net_baseurl .= '/' . $last_sel_groups; // Note that the group number must come before the "/new" tab selection + } + else if($sel_groups !== false) { + $net_baseurl .= '/' . $sel_groups; + } + + if($remember_tab) { + // redirect if current selected tab is '/network' and + // last selected tab is _not_ '/network?f=&order=comment'. + // and this isn't a date query + + $tab_baseurls = array( + '', //all + '', //postord + '', //conv + '/new', //new + '', //starred + '', //bookmarked + '', //spam + ); + $tab_args = array( + 'f=&order=comment', //all + 'f=&order=post', //postord + 'f=&conv=1', //conv + '', //new + 'f=&star=1', //starred + 'f=&bmark=1', //bookmarked + 'f=&spam=1', //spam + ); + + $k = array_search('active', $last_sel_tabs); + + $net_baseurl .= $tab_baseurls[$k]; + + // parse out tab queries + $dest_qa = array(); + $dest_qs = $tab_args[$k]; + parse_str( $dest_qs, $dest_qa); + $net_args = array_merge($net_args, $dest_qa); + } + else if($sel_tabs[4] === 'active') { + // The '/new' tab is selected + $net_baseurl .= '/new'; + } + + if($remember_net) { + $net_args['nets'] = $last_sel_nets; + } + + if($remember_tab || $remember_net || $remember_group) { + $net_args = array_merge($query_array, $net_args); + $net_queries = build_querystring($net_args); + + // groups filter is in form of "network/nnn". Add it to $dest_url, if it's possible + //if ($a->argc==2 && is_numeric($a->argv[1]) && strpos($net_baseurl, "/",1)===false){ + // $net_baseurl .= "/".$a->argv[1]; + //} + + $redir_url = ($net_queries ? $net_baseurl."?".$net_queries : $net_baseurl); + goaway($a->get_baseurl() . $redir_url); + } + } + +/* $sel_tabs = network_query_get_sel_tab($a); $last_sel_tabs = get_pconfig(local_user(), 'network.view','tab.selected'); if (is_array($last_sel_tabs)){ $tab_urls = array( @@ -58,9 +137,14 @@ function network_init(&$a) { goaway($a->get_baseurl() . $dest_url."?".$dest_qs); } - } + }*/ + + if(x($_GET['nets']) && $_GET['nets'] === 'all') + unset($_GET['nets']); - $group_id = (($a->argc > 1 && intval($a->argv[1])) ? intval($a->argv[1]) : 0); + $group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0); + + set_pconfig(local_user(), 'network.view', 'group.selected', $group_id); require_once('include/group.php'); require_once('include/contact_widgets.php'); @@ -97,7 +181,7 @@ function network_init(&$a) { $a->page['content'] .= '

' . t('Search Results For:') . ' ' . $search . '

'; } - $a->page['aside'] .= group_side('network','network',true,$group_id); + $a->page['aside'] .= group_side('network/0','network',true,$group_id); $a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false); $a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : '')); $a->page['aside'] .= saved_searches($search); @@ -225,6 +309,29 @@ function network_query_get_sel_tab($a) { return array($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active); } +/** + * Return selected network from query + */ +function network_query_get_sel_net() { + $network = false; + + if(x($_GET,'nets')) { + $network = $_GET['nets']; + } + + return $network; +} + +function network_query_get_sel_group($a) { + $group = false; + + if($a->argc >= 2 && is_numeric($a->argv[1])) { + $group = $a->argv[1]; + } + + return $group; +} + function network_content(&$a, $update = 0) { @@ -381,6 +488,7 @@ function network_content(&$a, $update = 0) { if(strlen($str)) $def_acl = array('allow_cid' => $str); } + set_pconfig(local_user(), 'network.view', 'net.selected', ($nets ? $nets : 'all')); if(! $update) { if($group) { @@ -471,36 +579,11 @@ function network_content(&$a, $update = 0) { } } - if((! $group) && (! $cid) && (! $update)) { + if((! $group) && (! $cid) && (! $update) && (! get_config('theme','hide_eventlist'))) { $o .= get_birthdays(); $o .= get_events(); } - if(! $update) { - // The special div is needed for liveUpdate to kick in for this page. - // We only launch liveUpdate if you aren't filtering in some incompatible - // way and also you aren't writing a comment (discovered in javascript). - - $o .= '
' . "\r\n"; - $o .= "\r\n"; - } - $sql_extra3 = ''; if($datequery) { @@ -607,6 +690,7 @@ function network_content(&$a, $update = 0) { intval($_SESSION['uid']) ); + $update_unseen = ' WHERE uid = ' . intval($_SESSION['uid']) . " AND unseen = 1 $sql_extra $sql_nets"; } else { @@ -673,6 +757,9 @@ function network_content(&$a, $update = 0) { } else { $items = array(); } + + if($parents_str) + $update_unseen = ' WHERE uid = ' . intval(local_user()) . ' AND unseen = 1 AND parent IN ( ' . dbesc($parents_str) . ' )'; } @@ -680,6 +767,15 @@ function network_content(&$a, $update = 0) { // level which items you've seen and which you haven't. If you're looking // at the top level network page just mark everything seen. + +// The $update_unseen is a bit unreliable if you have stuff coming into your stream from a new contact - +// and other feeds that bring in stuff from the past. One can't find it all. +// I'm reviving this block to mark everything seen on page 1 of the network as a temporary measure. +// The correct solution is to implement a network notifications box just like the system notifications popup +// with the ability in the popup to "mark all seen". +// Several people are complaining because there are unseen messages they can't find and as time goes +// on they just get buried deeper. It has happened to me a couple of times also. + if((! $group) && (! $cid) && (! $star)) { $r = q("UPDATE `item` SET `unseen` = 0 WHERE `unseen` = 1 AND `uid` = %d", @@ -687,6 +783,9 @@ function network_content(&$a, $update = 0) { ); } +// if($update_unseen) +// $r = q("UPDATE `item` SET `unseen` = 0 $update_unseen"); + // Set this so that the conversation function can find out contact info for our wall-wall items $a->page_contact = $a->contact; @@ -695,7 +794,7 @@ function network_content(&$a, $update = 0) { $o .= conversation($a,$items,$mode,$update); if(! $update) { - if(! get_pconfig(local_user(),'system','alt_pager')) { + if(! get_pconfig(local_user(),'system','alt_pager')) { $o .= paginate($a); } else {