aboutsummaryrefslogtreecommitdiffstats
path: root/mod/network.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-12-12 16:11:03 -0800
committerfriendica <info@friendica.com>2011-12-12 16:11:03 -0800
commitc45b903178f5dd0a6b98697db52de444c4a5d66a (patch)
treedd869305bae64c344ea2eb46377c033b8352bc59 /mod/network.php
parent80428a33d559cb163390ca471f32919a3bbb0768 (diff)
downloadvolse-hubzilla-c45b903178f5dd0a6b98697db52de444c4a5d66a.tar.gz
volse-hubzilla-c45b903178f5dd0a6b98697db52de444c4a5d66a.tar.bz2
volse-hubzilla-c45b903178f5dd0a6b98697db52de444c4a5d66a.zip
live update improvements
Diffstat (limited to 'mod/network.php')
-rw-r--r--mod/network.php38
1 files changed, 24 insertions, 14 deletions
diff --git a/mod/network.php b/mod/network.php
index 3a2d3cb8c..e9e761c3f 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -376,7 +376,6 @@ function network_content(&$a, $update = 0) {
// only setup pagination on initial page view
$pager_sql = '';
- $update_sql = " AND unseen = 1 ";
}
else {
@@ -393,11 +392,11 @@ function network_content(&$a, $update = 0) {
$a->set_pager_total($r[0]['total']);
$a->set_pager_itemspage(40);
}
-
$pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
- $update_sql = '';
}
+ $simple_update = (($update) ? " and `item`.`unseen` = 1 " : '');
+
if($nouveau) {
// "New Item View" - show all items unthreaded in reverse created date order
@@ -408,7 +407,7 @@ function network_content(&$a, $update = 0) {
`contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
FROM `item`, `contact`
WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
- $update_sql
+ $simple_update
AND `contact`.`id` = `item`.`contact-id`
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
$sql_extra
@@ -429,16 +428,27 @@ function network_content(&$a, $update = 0) {
// Fetch a page full of parent items for this page
- $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
- FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
- WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
- $update_sql
- AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
- AND `item`.`parent` = `item`.`id`
- $sql_extra
- ORDER BY `item`.$ordering DESC $pager_sql ",
- intval(local_user())
- );
+ if($update) {
+ $r = q("SELECT distinct(`parent`) AS `item_id`, `contact`.`uid` AS `contact_uid`
+ FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
+ WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
+ and `item`.`parent` in ( select parent from item where unseen = 1 )
+ AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
+ $sql_extra ",
+ intval(local_user())
+ );
+ }
+ else {
+ $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
+ FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
+ WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
+ AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
+ AND `item`.`parent` = `item`.`id`
+ $sql_extra
+ ORDER BY `item`.$ordering DESC $pager_sql ",
+ intval(local_user())
+ );
+ }
// Then fetch all the children of the parents that are on this page