2011-04-06 06:55:50 +01:00
|
|
|
<?php
|
2019-09-11 07:46:30 +01: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-06 06:55:50 +01:00
|
|
|
/**
|
2011-04-17 19:08:03 +01:00
|
|
|
* Stream of notices for a list
|
2011-04-10 18:59:55 +01:00
|
|
|
*
|
2011-04-06 06:55:50 +01:00
|
|
|
* @category Stream
|
2019-09-11 07:46:30 +01:00
|
|
|
* @package GNUsocial
|
2011-04-06 06:55:50 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2019-09-11 07:46:30 +01:00
|
|
|
* @author Shashi Gowda <connect2shashi@gmail.com>
|
2011-04-06 06:55:50 +01:00
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2019-09-11 07:46:30 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-04-06 06:55:50 +01:00
|
|
|
*/
|
|
|
|
|
2019-09-11 07:46:30 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2011-04-06 06:55:50 +01:00
|
|
|
|
|
|
|
/**
|
2011-04-17 19:08:03 +01:00
|
|
|
* Stream of notices for a list
|
2011-04-06 06:55:50 +01:00
|
|
|
*
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2019-09-11 07:46:30 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-04-06 06:55:50 +01:00
|
|
|
*/
|
|
|
|
class PeopletagNoticeStream extends ScopingNoticeStream
|
|
|
|
{
|
2019-09-11 07:46:30 +01:00
|
|
|
public function __construct($plist, Profile $scoped = null)
|
2011-04-06 06:55:50 +01:00
|
|
|
{
|
2019-09-11 07:46:30 +01:00
|
|
|
parent::__construct(
|
|
|
|
new CachingNoticeStream(
|
|
|
|
new RawPeopletagNoticeStream($plist),
|
|
|
|
'profile_list:notice_ids:' . $plist->id
|
|
|
|
),
|
|
|
|
$scoped
|
|
|
|
);
|
2011-04-06 06:55:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-17 19:08:03 +01:00
|
|
|
* Stream of notices for a list
|
2011-04-06 06:55:50 +01:00
|
|
|
*
|
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2019-09-11 07:46:30 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2011-04-06 06:55:50 +01:00
|
|
|
*/
|
|
|
|
class RawPeopletagNoticeStream extends NoticeStream
|
|
|
|
{
|
2011-04-12 20:56:56 +01:00
|
|
|
protected $profile_list;
|
2011-04-06 06:55:50 +01:00
|
|
|
|
2019-09-11 07:46:30 +01:00
|
|
|
public function __construct($profile_list)
|
2011-04-06 06:55:50 +01:00
|
|
|
{
|
2011-04-12 20:56:56 +01:00
|
|
|
$this->profile_list = $profile_list;
|
2011-04-06 06:55:50 +01:00
|
|
|
}
|
|
|
|
|
2011-04-12 20:56:56 +01:00
|
|
|
/**
|
|
|
|
* Query notices by users associated with this tag from the database.
|
|
|
|
*
|
|
|
|
* @param integer $offset offset
|
|
|
|
* @param integer $limit maximum no of results
|
|
|
|
* @param integer $since_id=null since this id
|
|
|
|
* @param integer $max_id=null maximum id in result
|
|
|
|
*
|
|
|
|
* @return array array of notice ids.
|
|
|
|
*/
|
|
|
|
|
2019-09-11 07:46:30 +01:00
|
|
|
public function getNoticeIds($offset, $limit, $since_id, $max_id)
|
2011-04-06 06:55:50 +01:00
|
|
|
{
|
2011-04-12 20:56:56 +01:00
|
|
|
$notice = new Notice();
|
2011-04-06 06:55:50 +01:00
|
|
|
|
2011-04-12 20:56:56 +01:00
|
|
|
$notice->selectAdd();
|
|
|
|
$notice->selectAdd('notice.id');
|
2011-04-06 06:55:50 +01:00
|
|
|
|
2011-04-12 20:56:56 +01:00
|
|
|
$ptag = new Profile_tag();
|
|
|
|
$ptag->tag = $this->profile_list->tag;
|
|
|
|
$ptag->tagger = $this->profile_list->tagger;
|
2011-07-08 07:12:28 +01:00
|
|
|
$notice->joinAdd(array('profile_id', 'profile_tag:tagged'));
|
|
|
|
$notice->whereAdd('profile_tag.tagger = ' . $this->profile_list->tagger);
|
2019-09-11 07:46:30 +01:00
|
|
|
$notice->whereAdd(sprintf(
|
|
|
|
"profile_tag.tag = '%s'",
|
|
|
|
$notice->escape($this->profile_list->tag)
|
|
|
|
));
|
2011-04-06 06:55:50 +01:00
|
|
|
|
2011-04-12 20:56:56 +01:00
|
|
|
if ($since_id != 0) {
|
|
|
|
$notice->whereAdd('notice.id > ' . $since_id);
|
|
|
|
}
|
2011-04-06 06:55:50 +01:00
|
|
|
|
2011-04-12 20:56:56 +01:00
|
|
|
if ($max_id != 0) {
|
|
|
|
$notice->whereAdd('notice.id <= ' . $max_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
$notice->orderBy('notice.id DESC');
|
2011-04-06 06:55:50 +01:00
|
|
|
|
|
|
|
if (!is_null($offset)) {
|
2011-04-12 20:56:56 +01:00
|
|
|
$notice->limit($offset, $limit);
|
2011-04-06 06:55:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$ids = array();
|
2011-04-12 20:56:56 +01:00
|
|
|
if ($notice->find()) {
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$ids[] = $notice->id;
|
2011-04-06 06:55:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $ids;
|
|
|
|
}
|
|
|
|
}
|