X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fconversationnoticestream.php;h=9c32159d42aabe90de6fa2284e3c0ac281671fca;hb=dd61ae8fbeee64c85f8186672292335592be1ff5;hp=78ba3a372d0d06660b467b61e4d59c9d08cdda0f;hpb=5a2bab07b25443eacc7f5cfde4b9932cdb511e92;p=quix0rs-gnu-social.git diff --git a/lib/conversationnoticestream.php b/lib/conversationnoticestream.php index 78ba3a372d..9c32159d42 100644 --- a/lib/conversationnoticestream.php +++ b/lib/conversationnoticestream.php @@ -20,7 +20,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * @category Cache + * @category NoticeStream * @package StatusNet * @author Evan Prodromou * @copyright 2011 StatusNet, Inc. @@ -46,10 +46,14 @@ if (!defined('STATUSNET')) { */ class ConversationNoticeStream extends ScopingNoticeStream { - function __construct($id) + function __construct($id, $profile = -1) { - parent::__construct(new CachingNoticeStream(new RawConversationNoticeStream($id), - 'notice:conversation_ids:'.$id)); + if (is_int($profile) && $profile == -1) { + $profile = Profile::current(); + } + + parent::__construct(new RawConversationNoticeStream($id), + $profile); } } @@ -69,38 +73,37 @@ class RawConversationNoticeStream extends NoticeStream function __construct($id) { + parent::__construct(); $this->id = $id; } - function getNoticeIds($offset, $limit, $since_id, $max_id) + function getNoticeIds($offset, $limit, $since_id=null, $max_id=null) { $notice = new Notice(); - - $notice->selectAdd(); // clears it + // SELECT + $notice->selectAdd(); $notice->selectAdd('id'); + // WHERE $notice->conversation = $this->id; - - $notice->orderBy('created DESC, id DESC'); - + if (!empty($since_id)) { + $notice->whereAdd(sprintf('notice.id > %d', $since_id)); + } + if (!empty($max_id)) { + $notice->whereAdd(sprintf('notice.id <= %d', $max_id)); + } if (!is_null($offset)) { $notice->limit($offset, $limit); } - Notice::addWhereSinceId($notice, $since_id); - Notice::addWhereMaxId($notice, $max_id); - - $ids = array(); - - if ($notice->find()) { - while ($notice->fetch()) { - $ids[] = $notice->id; - } + if (!empty($this->selectVerbs)) { + $notice->whereAddIn('verb', $this->selectVerbs, $notice->columnType('verb')); } - $notice->free(); - $notice = NULL; - - return $ids; + // ORDER BY + // currently imitates the previously used "_reverseChron" sorting + $notice->orderBy('notice.created DESC'); + $notice->find(); + return $notice->fetchAll('id'); } -} \ No newline at end of file +}