123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?php
- if (!defined('STATUSNET')) {
-
-
- exit(1);
- }
- class PublicNoticeStream extends ScopingNoticeStream
- {
- function __construct($profile=null)
- {
- parent::__construct(new CachingNoticeStream(new RawPublicNoticeStream(),
- 'public'),
- $profile);
- }
- }
- class RawPublicNoticeStream extends NoticeStream
- {
- 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);
- if (!empty($this->selectVerbs)) {
- $notice->whereAddIn('verb', $this->selectVerbs, $notice->columnType('verb'));
- }
- $ids = array();
- if ($notice->find()) {
- while ($notice->fetch()) {
- $ids[] = $notice->id;
- }
- }
- $notice->free();
- $notice = NULL;
- return $ids;
- }
- }
|