2011-04-07 19:52:44 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2011, StatusNet, Inc.
|
|
|
|
*
|
2014-03-06 01:43:28 +00:00
|
|
|
* Stream of notices for a profile's "all" feed
|
2011-04-08 00:49:34 +01:00
|
|
|
*
|
2011-04-07 19:52:44 +01:00
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2011-04-18 21:19:15 +01:00
|
|
|
* @category NoticeStream
|
2011-04-07 19:52:44 +01:00
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2014-03-06 01:43:28 +00:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
2011-04-07 19:52:44 +01:00
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2014-03-06 01:43:28 +00:00
|
|
|
* @copyright 2014 Free Software Foundation, Inc.
|
2011-04-07 19:52:44 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2014-03-06 01:43:28 +00:00
|
|
|
if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); }
|
2011-04-07 19:52:44 +01:00
|
|
|
|
|
|
|
/**
|
2014-03-06 01:43:28 +00:00
|
|
|
* Stream of notices for a profile's "all" feed
|
2011-04-07 19:52:44 +01:00
|
|
|
*
|
|
|
|
* @category General
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2014-03-06 01:43:28 +00:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
2011-04-07 19:52:44 +01:00
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2014-03-06 01:43:28 +00:00
|
|
|
* @copyright 2014 Free Software Foundation, Inc.
|
2011-04-07 19:52:44 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
2011-04-15 23:20:06 +01:00
|
|
|
class InboxNoticeStream extends ScopingNoticeStream
|
2011-04-07 19:52:44 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2014-03-06 01:43:28 +00:00
|
|
|
* @param Profile $target Profile to get a stream for
|
|
|
|
* @param Profile $scoped Currently scoped profile (if null, it is fetched)
|
2011-04-07 19:52:44 +01:00
|
|
|
*/
|
2014-03-06 01:43:28 +00:00
|
|
|
function __construct(Profile $target, Profile $scoped=null)
|
2011-04-07 19:52:44 +01:00
|
|
|
{
|
2014-03-06 01:43:28 +00:00
|
|
|
if ($scoped === null) {
|
|
|
|
$scoped = Profile::current();
|
2011-04-11 17:32:35 +01:00
|
|
|
}
|
2014-03-06 03:36:00 +00:00
|
|
|
// FIXME: we don't use CachingNoticeStream - but maybe we should?
|
2014-03-06 10:47:27 +00:00
|
|
|
parent::__construct(new CachingNoticeStream(new RawInboxNoticeStream($target), 'profileall'), $scoped);
|
2011-04-07 19:52:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-03-06 01:43:28 +00:00
|
|
|
* Raw stream of notices for the target's inbox
|
2011-04-07 19:52:44 +01:00
|
|
|
*
|
|
|
|
* @category General
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
class RawInboxNoticeStream extends NoticeStream
|
|
|
|
{
|
2014-03-06 01:43:28 +00:00
|
|
|
protected $target = null;
|
2011-04-07 19:52:44 +01:00
|
|
|
protected $inbox = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2014-03-06 01:43:28 +00:00
|
|
|
* @param Profile $target Profile to get a stream for
|
2011-04-07 19:52:44 +01:00
|
|
|
*/
|
2014-03-06 01:43:28 +00:00
|
|
|
function __construct(Profile $target)
|
2011-04-07 19:52:44 +01:00
|
|
|
{
|
2014-03-06 01:43:28 +00:00
|
|
|
$this->target = $target;
|
2011-04-07 19:52:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get IDs in a range
|
|
|
|
*
|
|
|
|
* @param int $offset Offset from start
|
|
|
|
* @param int $limit Limit of number to get
|
|
|
|
* @param int $since_id Since this notice
|
|
|
|
* @param int $max_id Before this notice
|
|
|
|
*
|
|
|
|
* @return Array IDs found
|
|
|
|
*/
|
|
|
|
function getNoticeIds($offset, $limit, $since_id, $max_id)
|
|
|
|
{
|
2014-03-06 01:43:28 +00:00
|
|
|
$notice = new Notice();
|
|
|
|
$notice->selectAdd();
|
2014-03-06 02:43:48 +00:00
|
|
|
$notice->selectAdd('id');
|
|
|
|
$notice->whereAdd(sprintf('notice.created > "%s"', $notice->escape($this->target->created)));
|
|
|
|
// Reply:: is a table of mentions
|
|
|
|
// Subscription:: is a table of subscriptions (every user is subscribed to themselves)
|
|
|
|
$notice->whereAdd(
|
|
|
|
sprintf('notice.id IN (SELECT notice_id FROM reply WHERE profile_id=%1$d) ' .
|
2014-03-07 01:49:42 +00:00
|
|
|
'OR notice.profile_id IN (SELECT subscribed FROM subscription WHERE subscriber=%1$d) ' .
|
|
|
|
'OR notice.id IN (SELECT notice_id FROM group_inbox WHERE group_id IN (SELECT group_id FROM group_member WHERE profile_id=%1$d))' .
|
2014-03-06 13:22:26 +00:00
|
|
|
'OR notice.id IN (SELECT notice_id FROM attention WHERE profile_id=%1$d)',
|
|
|
|
$this->target->id)
|
2014-03-06 02:43:48 +00:00
|
|
|
);
|
2014-05-07 10:50:20 +01:00
|
|
|
if (!empty($since_id)) {
|
|
|
|
$notice->whereAdd(sprintf('notice.id > %d', $since_id));
|
|
|
|
}
|
|
|
|
if (!empty($max_id)) {
|
|
|
|
$notice->whereAdd(sprintf('notice.id <= %d', $max_id));
|
|
|
|
}
|
2014-03-06 01:43:28 +00:00
|
|
|
$notice->limit($offset, $limit);
|
2014-05-10 14:06:31 +01:00
|
|
|
// notice.id will give us even really old posts, which were
|
|
|
|
// recently imported. For example if a remote instance had
|
|
|
|
// problems and just managed to post here. Another solution
|
|
|
|
// would be to have a 'notice.imported' field and order by it.
|
|
|
|
$notice->orderBy('notice.id DESC');
|
2014-03-06 01:43:28 +00:00
|
|
|
|
|
|
|
if (!$notice->find()) {
|
|
|
|
return array();
|
2011-04-07 19:52:44 +01:00
|
|
|
}
|
|
|
|
|
2014-03-06 02:43:48 +00:00
|
|
|
$ids = $notice->fetchAll('id');
|
2011-04-07 19:52:44 +01:00
|
|
|
|
|
|
|
return $ids;
|
|
|
|
}
|
2012-04-03 22:15:58 +01:00
|
|
|
|
|
|
|
function getNotices($offset, $limit, $sinceId, $maxId)
|
|
|
|
{
|
|
|
|
$all = array();
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
|
|
|
$ids = $this->getNoticeIds($offset, $limit, $sinceId, $maxId);
|
|
|
|
|
2013-08-29 09:13:07 +01:00
|
|
|
$notices = Notice::pivotGet('id', $ids);
|
2012-04-03 22:15:58 +01:00
|
|
|
|
|
|
|
// By default, takes out false values
|
|
|
|
|
|
|
|
$notices = array_filter($notices);
|
|
|
|
|
|
|
|
$all = array_merge($all, $notices);
|
|
|
|
|
|
|
|
if (count($notices < count($ids))) {
|
|
|
|
$offset += $limit;
|
|
|
|
$limit -= count($notices);
|
|
|
|
}
|
|
|
|
|
|
|
|
} while (count($notices) < count($ids) && count($ids) > 0);
|
|
|
|
|
|
|
|
return new ArrayWrapper($all);
|
|
|
|
}
|
2011-04-08 00:49:34 +01:00
|
|
|
}
|