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.
|
|
|
|
*
|
|
|
|
* Public stream
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
/**
|
|
|
|
* Public stream
|
|
|
|
*
|
|
|
|
* @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/
|
|
|
|
*/
|
|
|
|
|
2016-03-02 10:50:50 +00:00
|
|
|
class PublicNoticeStream extends ModeratedNoticeStream
|
2011-03-24 22:04:19 +00:00
|
|
|
{
|
2016-03-01 13:51:47 +00:00
|
|
|
function __construct(Profile $scoped=null)
|
2011-03-24 22:04:19 +00:00
|
|
|
{
|
2011-04-15 23:20:06 +01:00
|
|
|
parent::__construct(new CachingNoticeStream(new RawPublicNoticeStream(),
|
|
|
|
'public'),
|
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 public stream
|
|
|
|
*
|
|
|
|
* @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/
|
|
|
|
*/
|
|
|
|
|
2016-02-16 01:21:39 +00:00
|
|
|
class RawPublicNoticeStream extends FullNoticeStream
|
2011-03-24 22:04:19 +00:00
|
|
|
{
|
2011-03-25 20:15:55 +00:00
|
|
|
function getNoticeIds($offset, $limit, $since_id, $max_id)
|
2011-03-24 22:04:19 +00:00
|
|
|
{
|
|
|
|
$notice = new Notice();
|
|
|
|
|
|
|
|
$notice->selectAdd(); // clears it
|
|
|
|
$notice->selectAdd('id');
|
|
|
|
|
|
|
|
$notice->orderBy('created DESC, id DESC');
|
|
|
|
|
|
|
|
if (!is_null($offset)) {
|
|
|
|
$notice->limit($offset, $limit);
|
|
|
|
}
|
|
|
|
|
2015-01-28 19:25:39 +00:00
|
|
|
// This feed always gives only local activities.
|
|
|
|
$notice->whereAdd('is_local = ' . Notice::LOCAL_PUBLIC);
|
2011-03-24 22:04:19 +00:00
|
|
|
|
|
|
|
Notice::addWhereSinceId($notice, $since_id);
|
|
|
|
Notice::addWhereMaxId($notice, $max_id);
|
|
|
|
|
2016-02-14 19:46:13 +00:00
|
|
|
self::filterVerbs($notice, $this->selectVerbs);
|
2014-07-09 12:37:09 +01:00
|
|
|
|
2011-03-24 22:04:19 +00:00
|
|
|
$ids = array();
|
|
|
|
|
|
|
|
if ($notice->find()) {
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$ids[] = $notice->id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$notice->free();
|
|
|
|
$notice = NULL;
|
|
|
|
|
2011-04-18 21:43:54 +01:00
|
|
|
return $ids;
|
2011-03-24 22:04:19 +00:00
|
|
|
}
|
2014-07-09 12:37:09 +01:00
|
|
|
}
|