]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - classes/Reply.php
Break up stream code to use separate notice stream classes
[quix0rs-gnu-social.git] / classes / Reply.php
index d5341b9a05cdd49f18afe2b3f7d760ce7223b3c9..9ba623ba3fea630d9f8a3fb76e5265dbf5f3a2fb 100644 (file)
@@ -38,35 +38,8 @@ class Reply extends Memcached_DataObject
 
     function stream($user_id, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
     {
-        $stream = new NoticeStream(array('Reply', '_streamDirect'),
-                                   array($user_id),
-                                   'reply:stream:' . $user_id);
+        $stream = new ReplyNoticeStream($user_id);
 
         return $stream->getNotices($offset, $limit, $since_id, $max_id);
     }
-
-    function _streamDirect($user_id, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
-    {
-        $reply = new Reply();
-        $reply->profile_id = $user_id;
-
-        Notice::addWhereSinceId($reply, $since_id, 'notice_id', 'modified');
-        Notice::addWhereMaxId($reply, $max_id, 'notice_id', 'modified');
-
-        $reply->orderBy('modified DESC, notice_id DESC');
-
-        if (!is_null($offset)) {
-            $reply->limit($offset, $limit);
-        }
-
-        $ids = array();
-
-        if ($reply->find()) {
-            while ($reply->fetch()) {
-                $ids[] = $reply->notice_id;
-            }
-        }
-
-        return $ids;
-    }
 }