123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- defined('GNUSOCIAL') || die();
- class PublicNoticeStream extends ModeratedNoticeStream
- {
- public function __construct(Profile $scoped = null)
- {
- parent::__construct(
- new CachingNoticeStream(
- new RawPublicNoticeStream(),
- 'public'
- ),
- $scoped
- );
- }
- }
- class RawPublicNoticeStream extends FullNoticeStream
- {
- public function getNoticeIds($offset, $limit, $since_id, $max_id)
- {
- $notice = new Notice();
- $notice->selectAdd();
- $notice->selectAdd('id');
- $notice->orderBy('created DESC, id DESC');
- if (!is_null($offset)) {
- $notice->limit($offset, $limit);
- }
-
- $notice->whereAdd('is_local = ' . Notice::LOCAL_PUBLIC);
- $notice->whereAdd('scope <> ' . Notice::MESSAGE_SCOPE);
- Notice::addWhereSinceId($notice, $since_id);
- Notice::addWhereMaxId($notice, $max_id);
- self::filterVerbs($notice, $this->selectVerbs);
- $ids = array();
- if ($notice->find()) {
- while ($notice->fetch()) {
- $ids[] = $notice->id;
- }
- }
- $notice->free();
- $notice = null;
- return $ids;
- }
- }
|