2011-04-08 03:52:44 +09:00
|
|
|
<?php
|
2019-09-11 04:25:45 +09:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2011-04-08 03:52:44 +09:00
|
|
|
/**
|
2014-03-06 10:43:28 +09:00
|
|
|
* Stream of notices for a profile's "all" feed
|
2011-04-08 08:49:34 +09:00
|
|
|
*
|
2011-04-19 05:19:15 +09:00
|
|
|
* @category NoticeStream
|
2019-09-11 04:25:45 +09:00
|
|
|
* @package GNUsocial
|
2011-04-08 03:52:44 +09:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2014-03-06 10:43:28 +09:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
2019-04-21 08:56:56 +09:00
|
|
|
* @author Alexei Sorokin <sor.alexei@meowr.ru>
|
2019-09-11 04:25:45 +09:00
|
|
|
* @author Stephane Berube <chimo@chromic.org>
|
2011-04-08 03:52:44 +09:00
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2019-09-11 04:25:45 +09:00
|
|
|
* @copyright 2014 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-04-08 03:52:44 +09:00
|
|
|
*/
|
|
|
|
|
2019-09-11 04:25:45 +09:00
|
|
|
defined('GNUSOCIAL') || die();
|
2011-04-08 03:52:44 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @category General
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2019-09-11 04:25:45 +09:00
|
|
|
* @copyright 2014 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-04-08 03:52:44 +09:00
|
|
|
*/
|
2011-04-16 07:20:06 +09:00
|
|
|
class InboxNoticeStream extends ScopingNoticeStream
|
2011-04-08 03:52:44 +09:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2014-03-06 10:43:28 +09:00
|
|
|
* @param Profile $target Profile to get a stream for
|
|
|
|
* @param Profile $scoped Currently scoped profile (if null, it is fetched)
|
2011-04-08 03:52:44 +09:00
|
|
|
*/
|
2019-04-21 08:56:56 +09:00
|
|
|
public function __construct(Profile $target, Profile $scoped = null)
|
2011-04-08 03:52:44 +09:00
|
|
|
{
|
2020-07-07 00:12:50 +09:00
|
|
|
parent::__construct(
|
|
|
|
new CachingNoticeStream(
|
|
|
|
new RawInboxNoticeStream($target),
|
|
|
|
'profileall:' . $target->getID(),
|
|
|
|
false,
|
|
|
|
true
|
|
|
|
),
|
|
|
|
$scoped
|
|
|
|
);
|
2011-04-08 03:52:44 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-03-06 10:43:28 +09:00
|
|
|
* Raw stream of notices for the target's inbox
|
2011-04-08 03:52:44 +09:00
|
|
|
*
|
|
|
|
* @category General
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2019-09-11 04:25:45 +09:00
|
|
|
* @copyright 2014 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-04-08 03:52:44 +09:00
|
|
|
*/
|
2020-07-01 05:03:41 +09:00
|
|
|
class RawInboxNoticeStream extends NoticeStream
|
2011-04-08 03:52:44 +09:00
|
|
|
{
|
2019-04-21 08:56:56 +09:00
|
|
|
protected $target = null;
|
2011-04-08 03:52:44 +09:00
|
|
|
protected $inbox = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
2014-03-06 10:43:28 +09:00
|
|
|
* @param Profile $target Profile to get a stream for
|
2011-04-08 03:52:44 +09:00
|
|
|
*/
|
2019-04-21 08:56:56 +09:00
|
|
|
public function __construct(Profile $target)
|
2011-04-08 03:52:44 +09:00
|
|
|
{
|
2016-02-15 04:46:13 +09:00
|
|
|
parent::__construct();
|
2019-04-21 08:56:56 +09:00
|
|
|
$this->target = $target;
|
2011-04-08 03:52:44 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get IDs in a range
|
|
|
|
*
|
2019-04-21 08:56:56 +09:00
|
|
|
* @param int $offset Offset from start
|
|
|
|
* @param int $limit Limit of number to get
|
2011-04-08 03:52:44 +09:00
|
|
|
* @param int $since_id Since this notice
|
2019-04-21 08:56:56 +09:00
|
|
|
* @param int $max_id Before this notice
|
2011-04-08 03:52:44 +09:00
|
|
|
*
|
2019-04-21 08:56:56 +09:00
|
|
|
* @return array IDs found
|
2011-04-08 03:52:44 +09:00
|
|
|
*/
|
2019-04-21 08:56:56 +09:00
|
|
|
public function getNoticeIds($offset, $limit, $since_id = null, $max_id = null)
|
2011-04-08 03:52:44 +09:00
|
|
|
{
|
2014-03-06 10:43:28 +09:00
|
|
|
$notice = new Notice();
|
|
|
|
$notice->selectAdd();
|
2014-03-06 11:43:48 +09:00
|
|
|
$notice->selectAdd('id');
|
2019-04-25 11:15:26 +09:00
|
|
|
// Reply:: is a table of mentions
|
|
|
|
// Subscription:: is a table of subscriptions (every user is subscribed to themselves)
|
2020-07-01 23:11:04 +09:00
|
|
|
$notice->_join .= "\n" . <<<'END'
|
2020-06-10 20:21:47 +09:00
|
|
|
LEFT JOIN (
|
2020-07-01 23:11:04 +09:00
|
|
|
SELECT notice.id, subscription.subscriber AS profile_id
|
2020-06-10 20:21:47 +09:00
|
|
|
FROM notice INNER JOIN subscription
|
|
|
|
ON notice.profile_id = subscription.subscribed
|
|
|
|
UNION ALL
|
2020-07-01 23:11:04 +09:00
|
|
|
SELECT reply.id, notice.profile_id
|
|
|
|
FROM notice AS reply INNER JOIN notice ON reply.reply_to = notice.id
|
2020-06-10 20:21:47 +09:00
|
|
|
UNION ALL
|
2020-07-01 23:11:04 +09:00
|
|
|
SELECT notice_id, profile_id FROM attention
|
2020-06-10 20:21:47 +09:00
|
|
|
UNION ALL
|
2020-07-01 23:11:04 +09:00
|
|
|
SELECT group_inbox.notice_id, group_member.profile_id
|
|
|
|
FROM group_inbox INNER JOIN group_member USING (group_id)
|
2020-04-08 21:25:30 +09:00
|
|
|
) AS t1 USING (id)
|
2020-07-01 23:11:04 +09:00
|
|
|
END;
|
2019-04-21 08:56:56 +09:00
|
|
|
|
2020-06-10 20:21:47 +09:00
|
|
|
$notice->whereAdd('t1.id IS NOT NULL');
|
2020-07-01 23:11:04 +09:00
|
|
|
$notice->whereAdd('t1.profile_id = ' . $this->target->getID());
|
2020-06-10 20:21:47 +09:00
|
|
|
|
2019-09-11 04:25:45 +09:00
|
|
|
$notice->whereAdd(sprintf(
|
|
|
|
"notice.created > TIMESTAMP '%s'",
|
|
|
|
$notice->escape($this->target->created)
|
|
|
|
));
|
|
|
|
|
2014-05-07 18:50:20 +09:00
|
|
|
if (!empty($since_id)) {
|
2019-09-11 04:25:45 +09:00
|
|
|
$notice->whereAdd('id > ' . $since_id);
|
2014-05-07 18:50:20 +09:00
|
|
|
}
|
|
|
|
if (!empty($max_id)) {
|
2019-09-11 04:25:45 +09:00
|
|
|
$notice->whereAdd('id <= ' . $max_id);
|
2014-05-07 18:50:20 +09:00
|
|
|
}
|
2016-02-15 04:46:13 +09:00
|
|
|
|
2019-09-11 04:25:45 +09:00
|
|
|
$notice->whereAdd('scope <> ' . Notice::MESSAGE_SCOPE);
|
2019-08-20 06:41:03 +09:00
|
|
|
|
2016-02-15 04:46:13 +09:00
|
|
|
self::filterVerbs($notice, $this->selectVerbs);
|
|
|
|
|
2019-09-11 04:25:45 +09: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.
|
|
|
|
$notice->orderBy('id DESC');
|
|
|
|
|
2014-03-06 10:43:28 +09:00
|
|
|
$notice->limit($offset, $limit);
|
|
|
|
|
|
|
|
if (!$notice->find()) {
|
2019-04-21 08:56:56 +09:00
|
|
|
return [];
|
2011-04-08 03:52:44 +09:00
|
|
|
}
|
|
|
|
|
2019-04-21 08:56:56 +09:00
|
|
|
return $notice->fetchAll('id');
|
2011-04-08 03:52:44 +09:00
|
|
|
}
|
2011-04-08 08:49:34 +09:00
|
|
|
}
|