2011-03-24 22:04:19 +00:00
|
|
|
<?php
|
2011-03-25 16:22:22 +00:00
|
|
|
/**
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2011, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* Stream of mentions of me
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* @category Stream
|
|
|
|
* @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/
|
|
|
|
*/
|
2011-03-24 22:04:19 +00:00
|
|
|
|
2016-02-14 19:46:13 +00:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2011-03-25 16:22:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stream of mentions of me
|
|
|
|
*
|
|
|
|
* @category Stream
|
|
|
|
* @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 ReplyNoticeStream extends ScopingNoticeStream
|
2011-03-24 22:04:19 +00:00
|
|
|
{
|
2016-03-01 13:51:47 +00:00
|
|
|
function __construct($userId, Profile $scoped=null)
|
2011-03-24 22:04:19 +00:00
|
|
|
{
|
2011-03-25 16:22:22 +00:00
|
|
|
parent::__construct(new CachingNoticeStream(new RawReplyNoticeStream($userId),
|
2011-04-11 17:32:35 +01:00
|
|
|
'reply:stream:' . $userId),
|
2016-03-01 13:51:47 +00:00
|
|
|
$scoped);
|
2011-03-24 22:04:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-25 16:22:22 +00:00
|
|
|
/**
|
|
|
|
* Raw stream of mentions of me
|
|
|
|
*
|
|
|
|
* @category Stream
|
|
|
|
* @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/
|
|
|
|
*/
|
|
|
|
|
2011-03-24 22:04:19 +00:00
|
|
|
class RawReplyNoticeStream extends NoticeStream
|
|
|
|
{
|
|
|
|
protected $userId;
|
|
|
|
|
|
|
|
function __construct($userId)
|
|
|
|
{
|
2014-07-15 13:27:03 +01:00
|
|
|
parent::__construct();
|
2011-03-24 22:04:19 +00:00
|
|
|
$this->userId = $userId;
|
|
|
|
}
|
|
|
|
|
2011-03-25 20:15:55 +00:00
|
|
|
function getNoticeIds($offset, $limit, $since_id, $max_id)
|
2011-03-24 22:04:19 +00:00
|
|
|
{
|
|
|
|
$reply = new Reply();
|
2014-07-15 17:54:42 +01:00
|
|
|
|
|
|
|
$reply->selectAdd();
|
|
|
|
$reply->selectAdd('notice_id');
|
|
|
|
|
|
|
|
$reply->whereAdd(sprintf('reply.profile_id = %u', $this->userId));
|
2011-03-24 22:04:19 +00:00
|
|
|
|
2014-07-16 12:02:55 +01:00
|
|
|
Notice::addWhereSinceId($reply, $since_id, 'notice_id', 'reply.modified');
|
|
|
|
Notice::addWhereMaxId($reply, $max_id, 'notice_id', 'reply.modified');
|
2011-03-24 22:04:19 +00:00
|
|
|
|
2014-07-15 13:27:03 +01:00
|
|
|
if (!empty($this->selectVerbs)) {
|
2016-02-14 19:46:13 +00:00
|
|
|
// this is a little special since we have to join in Notice
|
2014-07-15 13:27:03 +01:00
|
|
|
$reply->joinAdd(array('notice_id', 'notice:id'));
|
2016-02-14 19:46:13 +00:00
|
|
|
|
|
|
|
$filter = array_keys(array_filter($this->selectVerbs));
|
|
|
|
if (!empty($filter)) {
|
|
|
|
// include verbs in selectVerbs with values that equate to true
|
|
|
|
$reply->whereAddIn('notice.verb', $filter, 'string');
|
|
|
|
}
|
|
|
|
|
|
|
|
$filter = array_keys(array_filter($this->selectVerbs, function ($v) { return !$v; }));
|
|
|
|
if (!empty($filter)) {
|
|
|
|
// exclude verbs in selectVerbs with values that equate to false
|
|
|
|
$reply->whereAddIn('!notice.verb', $filter, 'string');
|
|
|
|
}
|
2014-07-15 13:27:03 +01:00
|
|
|
}
|
|
|
|
|
2014-07-15 17:54:42 +01:00
|
|
|
$reply->orderBy('reply.modified DESC, reply.notice_id DESC');
|
2011-03-24 22:04:19 +00:00
|
|
|
|
|
|
|
if (!is_null($offset)) {
|
|
|
|
$reply->limit($offset, $limit);
|
|
|
|
}
|
|
|
|
|
|
|
|
$ids = array();
|
|
|
|
|
|
|
|
if ($reply->find()) {
|
|
|
|
while ($reply->fetch()) {
|
|
|
|
$ids[] = $reply->notice_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $ids;
|
|
|
|
}
|
2014-07-09 12:37:09 +01:00
|
|
|
}
|