mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
7dd31a16d9
Summary: `class_exists()` is case-insensitive, but `PhabricatorApplication::getByClass()` is not. Test Plan: Fixed unit test to fail, then fixed code to pass unit test. Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D7379
62 lines
1.3 KiB
PHP
62 lines
1.3 KiB
PHP
<?php
|
|
|
|
final class PhabricatorChatLogQuery
|
|
extends PhabricatorCursorPagedPolicyAwareQuery {
|
|
|
|
private $channelIDs;
|
|
private $maximumEpoch;
|
|
|
|
public function withChannelIDs(array $channel_ids) {
|
|
$this->channelIDs = $channel_ids;
|
|
return $this;
|
|
}
|
|
|
|
public function withMaximumEpoch($epoch) {
|
|
$this->maximumEpoch = $epoch;
|
|
return $this;
|
|
}
|
|
|
|
protected function loadPage() {
|
|
$table = new PhabricatorChatLogEvent();
|
|
$conn_r = $table->establishConnection('r');
|
|
|
|
$data = queryfx_all(
|
|
$conn_r,
|
|
'SELECT * FROM %T e %Q %Q %Q',
|
|
$table->getTableName(),
|
|
$this->buildWhereClause($conn_r),
|
|
$this->buildOrderClause($conn_r),
|
|
$this->buildLimitClause($conn_r));
|
|
|
|
$logs = $table->loadAllFromArray($data);
|
|
|
|
return $logs;
|
|
}
|
|
|
|
private function buildWhereClause($conn_r) {
|
|
$where = array();
|
|
|
|
$where[] = $this->buildPagingClause($conn_r);
|
|
|
|
if ($this->maximumEpoch) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'epoch <= %d',
|
|
$this->maximumEpoch);
|
|
}
|
|
|
|
if ($this->channelIDs) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'channelID IN (%Ld)',
|
|
$this->channelIDs);
|
|
}
|
|
|
|
return $this->formatWhereClause($where);
|
|
}
|
|
|
|
public function getQueryApplicationClass() {
|
|
return 'PhabricatorApplicationChatLog';
|
|
}
|
|
|
|
}
|