123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?php
- if (!defined('STATUSNET')) {
-
-
- exit(1);
- }
- class GroupNoticeStream extends ScopingNoticeStream
- {
- var $group;
- var $userProfile;
- function __construct($group, $profile = -1)
- {
- if (is_int($profile) && $profile == -1) {
- $profile = Profile::current();
- }
- $this->group = $group;
- $this->userProfile = $profile;
- parent::__construct(new CachingNoticeStream(new RawGroupNoticeStream($group),
- 'user_group:notice_ids:' . $group->id),
- $profile);
- }
- function getNoticeIds($offset, $limit, $since_id, $max_id)
- {
- if ($this->impossibleStream()) {
- return array();
- } else {
- return parent::getNoticeIds($offset, $limit, $since_id, $max_id);
- }
- }
- function getNotices($offset, $limit, $sinceId = null, $maxId = null)
- {
- if ($this->impossibleStream()) {
- return new ArrayWrapper(array());
- } else {
- return parent::getNotices($offset, $limit, $sinceId, $maxId);
- }
- }
- function impossibleStream()
- {
- if ($this->group->force_scope &&
- (empty($this->userProfile) || !$this->userProfile->isMember($this->group))) {
- return true;
- }
- return false;
- }
- }
- class RawGroupNoticeStream extends NoticeStream
- {
- protected $group;
- function __construct($group)
- {
- $this->group = $group;
- }
- function getNoticeIds($offset, $limit, $since_id, $max_id)
- {
- $inbox = new Group_inbox();
- $inbox->group_id = $this->group->id;
- $inbox->selectAdd();
- $inbox->selectAdd('notice_id');
- Notice::addWhereSinceId($inbox, $since_id, 'notice_id');
- Notice::addWhereMaxId($inbox, $max_id, 'notice_id');
- $inbox->orderBy('created DESC, notice_id DESC');
- if (!is_null($offset)) {
- $inbox->limit($offset, $limit);
- }
- $ids = array();
- if ($inbox->find()) {
- while ($inbox->fetch()) {
- $ids[] = $inbox->notice_id;
- }
- }
- return $ids;
- }
- }
|