123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class RepeatedByMeNoticeStream extends ScopingNoticeStream
- {
- function __construct(Profile $target, Profile $scoped=null)
- {
- parent::__construct(new CachingNoticeStream(new RawRepeatedByMeNoticeStream($target),
- 'user:repeated_by_me:'.$target->getID()),
- $scoped);
- }
- }
- class RawRepeatedByMeNoticeStream extends NoticeStream
- {
- protected $target;
- function __construct(Profile $target)
- {
- $this->target = $target;
- }
- function getNoticeIds($offset, $limit, $since_id, $max_id)
- {
- $notice = new Notice();
- $notice->selectAdd();
- $notice->selectAdd('id');
- $notice->profile_id = $this->target->getID();
- $notice->whereAdd('repeat_of IS NOT NULL');
- $notice->orderBy('created DESC, id DESC');
- 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;
- }
- }
- $notice->free();
- $notice = NULL;
- return $ids;
- }
- }
|