123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class PublicNoticeStream extends ModeratedNoticeStream
- {
- function __construct(Profile $scoped=null)
- {
- parent::__construct(new CachingNoticeStream(new RawPublicNoticeStream(),
- 'public'),
- $scoped);
- }
- }
- class RawPublicNoticeStream extends FullNoticeStream
- {
- 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::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;
- }
- }
|