mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
b3a63a62a2
Summary: It's dumb to execute a query which we know will return an empty result. Test Plan: Looked at comment preview with "11", didn't see "1 = 0" in DarkConsole. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5177
58 lines
1.2 KiB
PHP
58 lines
1.2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorChatLogChannelQuery
|
|
extends PhabricatorCursorPagedPolicyAwareQuery {
|
|
|
|
private $channels;
|
|
private $channelIDs;
|
|
|
|
public function withChannelNames(array $channels) {
|
|
$this->channels = $channels;
|
|
return $this;
|
|
}
|
|
|
|
public function withIDs(array $channel_ids) {
|
|
$this->channelIDs = $channel_ids;
|
|
return $this;
|
|
}
|
|
|
|
protected function loadPage() {
|
|
$table = new PhabricatorChatLogChannel();
|
|
$conn_r = $table->establishConnection('r');
|
|
|
|
$data = queryfx_all(
|
|
$conn_r,
|
|
'SELECT * FROM %T c %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->channelIDs) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'id IN (%Ld)',
|
|
$this->channelIDs);
|
|
|
|
}
|
|
|
|
if ($this->channels) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'channelName IN (%Ls)',
|
|
$this->channels);
|
|
}
|
|
|
|
return $this->formatWhereClause($where);
|
|
}
|
|
}
|