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
|
|
|
* 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>
|
2019-04-21 00:56:56 +01:00
|
|
|
* @author Alexei Sorokin <sor.alexei@meowr.ru>
|
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/
|
|
|
|
*/
|
|
|
|
|
2019-04-21 00:56:56 +01:00
|
|
|
if (!defined('GNUSOCIAL')) {
|
|
|
|
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>
|
2019-04-21 00:56:56 +01:00
|
|
|
* @author Alexei Sorokin <sor.alexei@meowr.ru>
|
2019-04-25 18:51:44 +01:00
|
|
|
* @author chimo <chimo@chromic.org>
|
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
|
|
|
*/
|
2019-04-21 00:56:56 +01:00
|
|
|
public function __construct(Profile $target, Profile $scoped = null)
|
2011-04-07 19:52:44 +01:00
|
|
|
{
|
2019-04-25 18:51:44 +01:00
|
|
|
parent::__construct(new CachingNoticeStream(new RawInboxNoticeStream($target), 'profileall:'.$target->getID()), $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>
|
2019-04-21 00:56:56 +01:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
* @author Alexei Sorokin <sor.alexei@meowr.ru>
|
2011-04-07 19:52:44 +01:00
|
|
|
* @copyright 2011 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
2016-02-16 01:21:39 +00:00
|
|
|
class RawInboxNoticeStream extends FullNoticeStream
|
2011-04-07 19:52:44 +01:00
|
|
|
{
|
2019-04-21 00:56:56 +01: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
|
|
|
*/
|
2019-04-21 00:56:56 +01:00
|
|
|
public function __construct(Profile $target)
|
2011-04-07 19:52:44 +01:00
|
|
|
{
|
2016-02-14 19:46:13 +00:00
|
|
|
parent::__construct();
|
2019-04-21 00:56:56 +01:00
|
|
|
$this->target = $target;
|
2011-04-07 19:52:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get IDs in a range
|
|
|
|
*
|
2019-04-21 00:56:56 +01:00
|
|
|
* @param int $offset Offset from start
|
|
|
|
* @param int $limit Limit of number to get
|
2011-04-07 19:52:44 +01:00
|
|
|
* @param int $since_id Since this notice
|
2019-04-21 00:56:56 +01:00
|
|
|
* @param int $max_id Before this notice
|
2011-04-07 19:52:44 +01:00
|
|
|
*
|
2019-04-21 00:56:56 +01:00
|
|
|
* @return array IDs found
|
2011-04-07 19:52:44 +01:00
|
|
|
*/
|
2019-04-21 00:56:56 +01:00
|
|
|
public function getNoticeIds($offset, $limit, $since_id = null, $max_id = null)
|
2011-04-07 19:52:44 +01:00
|
|
|
{
|
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)));
|
2019-04-25 03:15:26 +01:00
|
|
|
// Reply:: is a table of mentions
|
|
|
|
// Subscription:: is a table of subscriptions (every user is subscribed to themselves)
|
|
|
|
// Sort in descending order as 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.
|
|
|
|
$notice->whereAdd(
|
|
|
|
sprintf('id IN (SELECT DISTINCT id FROM (' .
|
|
|
|
'(SELECT id FROM notice WHERE profile_id IN (SELECT subscribed FROM subscription WHERE subscriber = %1$d)) UNION ' .
|
|
|
|
'(SELECT notice_id AS id FROM reply WHERE profile_id = %1$d) UNION ' .
|
|
|
|
'(SELECT notice_id AS id FROM attention WHERE profile_id = %1$d) UNION ' .
|
|
|
|
'(SELECT notice_id AS id FROM group_inbox WHERE group_id IN (SELECT group_id FROM group_member WHERE profile_id = %1$d)) ' .
|
|
|
|
'ORDER BY id DESC) AS T)',
|
|
|
|
$this->target->getID())
|
|
|
|
);
|
2019-04-21 00:56:56 +01: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));
|
|
|
|
}
|
2016-02-14 19:46:13 +00:00
|
|
|
|
2019-08-19 22:41:03 +01:00
|
|
|
$notice->whereAdd('scope != ' . Notice::MESSAGE_SCOPE);
|
|
|
|
|
2016-02-14 19:46:13 +00:00
|
|
|
self::filterVerbs($notice, $this->selectVerbs);
|
|
|
|
|
2014-03-06 01:43:28 +00:00
|
|
|
$notice->limit($offset, $limit);
|
|
|
|
|
|
|
|
if (!$notice->find()) {
|
2019-04-21 00:56:56 +01:00
|
|
|
return [];
|
2011-04-07 19:52:44 +01:00
|
|
|
}
|
|
|
|
|
2019-04-21 00:56:56 +01:00
|
|
|
return $notice->fetchAll('id');
|
2011-04-07 19:52:44 +01:00
|
|
|
}
|
2011-04-08 00:49:34 +01:00
|
|
|
}
|