2013-02-22 15:59:17 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorChatLogChannelQuery
|
|
|
|
extends PhabricatorCursorPagedPolicyAwareQuery {
|
|
|
|
|
|
|
|
private $channels;
|
2013-02-22 20:10:47 +01:00
|
|
|
private $channelIDs;
|
2013-02-22 15:59:17 +01:00
|
|
|
|
|
|
|
public function withChannelNames(array $channels) {
|
|
|
|
$this->channels = $channels;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2013-02-22 20:10:47 +01:00
|
|
|
public function withIDs(array $channel_ids) {
|
|
|
|
$this->channelIDs = $channel_ids;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2013-02-22 15:59:17 +01:00
|
|
|
public 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);
|
|
|
|
|
2013-02-22 20:10:47 +01:00
|
|
|
if ($this->channelIDs) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'id IN (%Ld)',
|
|
|
|
$this->channelIDs);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-02-22 15:59:17 +01:00
|
|
|
if ($this->channels) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'channelName IN (%Ls)',
|
|
|
|
$this->channels);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->formatWhereClause($where);
|
|
|
|
}
|
|
|
|
}
|