NoticeStream fixes regarding non-post verbs

This commit is contained in:
Mikael Nordfeldth 2014-07-14 00:59:04 +02:00
parent 6de410bb6b
commit 5ebe01ba36
6 changed files with 19 additions and 15 deletions

View File

@ -95,10 +95,8 @@ class RawConversationNoticeStream extends NoticeStream
$notice->limit($offset, $limit);
}
if (!$this->allVerbs) {
$notice->whereAdd(sprintf('verb="%s" OR verb="%s"',
ActivityVerb::POST,
ActivityUtils::resolveUri(ActivityVerb::POST, true)));
if (!empty($this->selectVerbs)) {
$notice->whereAddIn('verb', $this->selectVerbs, $notice->columnType('verb'));
}
// ORDER BY

View File

@ -118,6 +118,9 @@ class RawInboxNoticeStream extends NoticeStream
if (!empty($max_id)) {
$notice->whereAdd(sprintf('notice.id <= %d', $max_id));
}
if (!empty($this->selectVerbs)) {
$notice->whereAddIn('verb', $this->selectVerbs, $notice->columnType('verb'));
}
$notice->limit($offset, $limit);
// notice.id will give us even really old posts, which were
// recently imported. For example if a remote instance had

View File

@ -46,7 +46,13 @@ if (!defined('STATUSNET')) {
*/
abstract class NoticeStream
{
protected $allVerbs = false; // Will only get 'post' activityverbs by default.
// Will only get notices with the 'post' activityverb by default.
protected $selectVerbs = array();
public function __construct()
{
$this->selectVerbs = array(ActivityVerb::POST, ActivityUtils::resolveUri(ActivityVerb::POST, true));
}
abstract function getNoticeIds($offset, $limit, $since_id, $max_id);

View File

@ -121,6 +121,7 @@ class RawProfileNoticeStream extends NoticeStream
function __construct($profile)
{
parent::__construct();
$this->profile = $profile;
}
@ -136,12 +137,6 @@ class RawProfileNoticeStream extends NoticeStream
Notice::addWhereSinceId($notice, $since_id);
Notice::addWhereMaxId($notice, $max_id);
if (!$this->allVerbs) {
$notice->whereAdd(sprintf('verb="%s" OR verb="%s"',
ActivityVerb::POST,
ActivityUtils::resolveUri(ActivityVerb::POST, true)));
}
$notice->orderBy('created DESC, id DESC');
if (!is_null($offset)) {

View File

@ -92,10 +92,8 @@ class RawPublicNoticeStream extends NoticeStream
Notice::addWhereSinceId($notice, $since_id);
Notice::addWhereMaxId($notice, $max_id);
if (!$this->allVerbs) {
$notice->whereAdd(sprintf('verb="%s" OR verb="%s"',
ActivityVerb::POST,
ActivityUtils::resolveUri(ActivityVerb::POST, true)));
if (!empty($this->selectVerbs)) {
$notice->whereAddIn('verb', $this->selectVerbs, $notice->columnType('verb'));
}
$ids = array();

View File

@ -79,8 +79,12 @@ class RawFaveNoticeStream extends NoticeStream
function __construct($user_id, $own)
{
parent::__construct();
$this->user_id = $user_id;
$this->own = $own;
$this->selectVerbs = array();
}
/**