diff options
author | friendica <info@friendica.com> | 2015-03-21 16:46:28 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-21 16:46:28 -0700 |
commit | a2e3ca6fd8ba8c0630de089d772fdd668b84428b (patch) | |
tree | 66396776eb293108450c98f2ec1047cafda0fcb5 /mod/channel.php | |
parent | 85dd08427c6067554762854c584eae0ca90fea43 (diff) | |
download | volse-hubzilla-a2e3ca6fd8ba8c0630de089d772fdd668b84428b.tar.gz volse-hubzilla-a2e3ca6fd8ba8c0630de089d772fdd668b84428b.tar.bz2 volse-hubzilla-a2e3ca6fd8ba8c0630de089d772fdd668b84428b.zip |
add loadtime search to channel and fix it for home. display and search need further investigation
Diffstat (limited to 'mod/channel.php')
-rw-r--r-- | mod/channel.php | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/mod/channel.php b/mod/channel.php index 9df400cbe..3fc4a9269 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -50,6 +50,11 @@ function channel_init(&$a) { function channel_content(&$a, $update = 0, $load = false) { + + if($load) + $_SESSION['loadtime'] = datetime_convert(); + + $category = $datequery = $datequery2 = ''; $mid = ((x($_REQUEST,'mid')) ? $_REQUEST['mid'] : ''); @@ -151,10 +156,19 @@ function channel_content(&$a, $update = 0, $load = false) { $abook_uids = " and abook.abook_channel = " . intval($a->profile['profile_uid']) . " "; + $simple_update = (($update) ? " AND item_unseen = 1 " : ''); + + + if($update && $_SESSION['loadtime']) + $simple_update .= " and item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' "; + if($load) + $simple_update = ''; + + if(($update) && (! $load)) { if ($mid) { $r = q("SELECT parent AS item_id from item where mid like '%s' and uid = %d AND item_restrict = 0 - AND (item_flags & %d) > 0 AND item_unseen = 1 $sql_extra limit 1", + AND (item_flags & %d) > 0 $simple_update $sql_extra limit 1", dbesc($mid . '%'), intval($a->profile['profile_uid']), intval(ITEM_WALL) @@ -163,7 +177,7 @@ function channel_content(&$a, $update = 0, $load = false) { $r = q("SELECT distinct parent AS `item_id`, created from item left join abook on ( item.owner_xchan = abook.abook_xchan $abook_uids ) WHERE uid = %d AND item_restrict = 0 - AND (item_flags & %d) > 0 AND item_unseen = 1 + AND (item_flags & %d) > 0 $simple_update AND ((abook.abook_flags & %d) = 0 or abook.abook_flags is null) $sql_extra ORDER BY created DESC", @@ -254,6 +268,9 @@ function channel_content(&$a, $update = 0, $load = false) { } + + + if((! $update) && (! $load)) { // This is ugly, but we can't pass the profile_uid through the session to the ajax updater, |