2011-03-23 15:29:55 +00:00
|
|
|
<?php
|
2020-01-09 21:41:34 +00: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-03-23 15:29:55 +00:00
|
|
|
/**
|
|
|
|
* A stream of notices
|
2011-03-24 08:59:01 +00:00
|
|
|
*
|
2011-03-23 15:29:55 +00:00
|
|
|
* @category Stream
|
2020-01-09 21:41:34 +00:00
|
|
|
* @package GNUsocial
|
2011-03-23 15:29:55 +00:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2020-01-09 21:41:34 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-03-23 15:29:55 +00:00
|
|
|
*/
|
|
|
|
|
2020-01-09 21:41:34 +00:00
|
|
|
defined('GNUSOCIAL') || die();
|
2011-03-23 15:29:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for notice streams
|
|
|
|
*
|
|
|
|
* @category Stream
|
2020-01-09 21:41:34 +00:00
|
|
|
* @package GNUsocial
|
2011-03-23 15:29:55 +00:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2020-01-09 21:41:34 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-03-23 15:29:55 +00:00
|
|
|
*/
|
2011-03-24 22:04:19 +00:00
|
|
|
abstract class NoticeStream
|
2011-03-23 15:29:55 +00:00
|
|
|
{
|
2020-01-09 21:41:34 +00:00
|
|
|
protected $selectVerbs = [
|
|
|
|
ActivityVerb::POST => true,
|
|
|
|
ActivityVerb::SHARE => true,
|
|
|
|
];
|
2014-07-13 23:59:04 +01:00
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
2020-01-09 21:41:34 +00:00
|
|
|
foreach ($this->selectVerbs as $key => $val) {
|
2016-02-14 19:46:13 +00:00
|
|
|
$this->selectVerbs[ActivityUtils::resolveUri($key)] = $val;
|
2016-03-29 11:57:52 +01:00
|
|
|
// to avoid database inconsistency issues we can select both relative and absolute verbs
|
|
|
|
//$this->selectVerbs[ActivityUtils::resolveUri($key, true)] = $val;
|
2016-01-21 01:37:38 +00:00
|
|
|
}
|
2014-07-13 23:59:04 +01:00
|
|
|
}
|
2014-07-09 12:37:09 +01:00
|
|
|
|
2020-01-09 21:41:34 +00:00
|
|
|
abstract public function getNoticeIds($offset, $limit, $since_id, $max_id);
|
2011-03-23 15:29:55 +00:00
|
|
|
|
2020-01-09 21:41:34 +00:00
|
|
|
public function getNotices($offset, $limit, $sinceId = null, $maxId = null)
|
2011-03-23 15:29:55 +00:00
|
|
|
{
|
|
|
|
$ids = $this->getNoticeIds($offset, $limit, $sinceId, $maxId);
|
|
|
|
|
2020-01-09 21:41:34 +00:00
|
|
|
return self::getStreamByIds($ids);
|
2011-03-23 15:29:55 +00:00
|
|
|
}
|
|
|
|
|
2020-01-09 21:41:34 +00:00
|
|
|
public static function getStreamByIds($ids)
|
2011-03-23 15:29:55 +00:00
|
|
|
{
|
2020-01-09 21:41:34 +00:00
|
|
|
return Notice::multiGet('id', $ids);
|
2011-03-23 15:29:55 +00:00
|
|
|
}
|
2016-02-14 19:46:13 +00:00
|
|
|
|
2020-01-09 21:41:34 +00:00
|
|
|
public static function filterVerbs(Notice $notice, array $selectVerbs)
|
2016-02-14 19:46:13 +00:00
|
|
|
{
|
|
|
|
$filter = array_keys(array_filter($selectVerbs));
|
|
|
|
if (!empty($filter)) {
|
|
|
|
// include verbs in selectVerbs with values that equate to true
|
|
|
|
$notice->whereAddIn('verb', $filter, $notice->columnType('verb'));
|
|
|
|
}
|
|
|
|
|
2020-01-09 21:41:34 +00:00
|
|
|
$filter = array_keys(array_filter($selectVerbs, function ($v) {
|
|
|
|
return !$v;
|
|
|
|
}));
|
2016-02-14 19:46:13 +00:00
|
|
|
if (!empty($filter)) {
|
|
|
|
// exclude verbs in selectVerbs with values that equate to false
|
|
|
|
$notice->whereAddIn('!verb', $filter, $notice->columnType('verb'));
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($filter);
|
|
|
|
}
|
2011-03-23 15:29:55 +00:00
|
|
|
}
|