2014-10-17 14:01:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class AlmanacServiceQuery
|
2014-11-06 00:28:36 +01:00
|
|
|
extends AlmanacQuery {
|
2014-10-17 14:01:57 +02:00
|
|
|
|
|
|
|
private $ids;
|
|
|
|
private $phids;
|
|
|
|
private $names;
|
2014-12-17 20:10:27 +01:00
|
|
|
private $serviceClasses;
|
2014-12-18 23:31:36 +01:00
|
|
|
private $devicePHIDs;
|
|
|
|
private $locked;
|
2014-12-19 21:36:14 +01:00
|
|
|
private $namePrefix;
|
|
|
|
private $nameSuffix;
|
2014-12-18 23:31:36 +01:00
|
|
|
|
2014-12-12 21:07:11 +01:00
|
|
|
private $needBindings;
|
2014-10-17 14:01:57 +02:00
|
|
|
|
|
|
|
public function withIDs(array $ids) {
|
|
|
|
$this->ids = $ids;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function withPHIDs(array $phids) {
|
|
|
|
$this->phids = $phids;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function withNames(array $names) {
|
|
|
|
$this->names = $names;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-12-17 20:10:27 +01:00
|
|
|
public function withServiceClasses(array $classes) {
|
|
|
|
$this->serviceClasses = $classes;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-12-18 23:31:36 +01:00
|
|
|
public function withDevicePHIDs(array $phids) {
|
|
|
|
$this->devicePHIDs = $phids;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function withLocked($locked) {
|
|
|
|
$this->locked = $locked;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-12-19 21:36:14 +01:00
|
|
|
public function withNamePrefix($prefix) {
|
|
|
|
$this->namePrefix = $prefix;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function withNameSuffix($suffix) {
|
|
|
|
$this->nameSuffix = $suffix;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-12-12 21:07:11 +01:00
|
|
|
public function needBindings($need_bindings) {
|
|
|
|
$this->needBindings = $need_bindings;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-10-17 14:01:57 +02:00
|
|
|
protected function loadPage() {
|
|
|
|
$table = new AlmanacService();
|
|
|
|
$conn_r = $table->establishConnection('r');
|
|
|
|
|
|
|
|
$data = queryfx_all(
|
|
|
|
$conn_r,
|
2014-12-18 23:31:36 +01:00
|
|
|
'SELECT service.* FROM %T service %Q %Q %Q %Q',
|
2014-10-17 14:01:57 +02:00
|
|
|
$table->getTableName(),
|
2014-12-18 23:31:36 +01:00
|
|
|
$this->buildJoinClause($conn_r),
|
2014-10-17 14:01:57 +02:00
|
|
|
$this->buildWhereClause($conn_r),
|
|
|
|
$this->buildOrderClause($conn_r),
|
|
|
|
$this->buildLimitClause($conn_r));
|
|
|
|
|
|
|
|
return $table->loadAllFromArray($data);
|
|
|
|
}
|
|
|
|
|
2015-04-18 16:42:23 +02:00
|
|
|
protected function buildJoinClause(AphrontDatabaseConnection $conn_r) {
|
2014-12-18 23:31:36 +01:00
|
|
|
$joins = array();
|
|
|
|
|
|
|
|
if ($this->devicePHIDs !== null) {
|
|
|
|
$joins[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'JOIN %T binding ON service.phid = binding.servicePHID',
|
|
|
|
id(new AlmanacBinding())->getTableName());
|
|
|
|
}
|
|
|
|
|
|
|
|
return implode(' ', $joins);
|
|
|
|
}
|
|
|
|
|
Make buildWhereClause() a method of AphrontCursorPagedPolicyAwareQuery
Summary:
Ref T4100. Ref T5595.
To support a unified "Projects:" query across all applications, a future diff is going to add a set of "Edge Logic" capabilities to `PolicyAwareQuery` which write the required SELECT, JOIN, WHERE, HAVING and GROUP clauses for you.
With the addition of "Edge Logic", we'll have three systems which may need to build components of query claues: ordering/paging, customfields/applicationsearch, and edge logic.
For most clauses, queries don't currently call into the parent explicitly to get default components. I want to move more query construction logic up the class tree so it can be shared.
For most methods, this isn't a problem, but many subclasses define a `buildWhereClause()`. Make all such definitions protected and consistent.
This causes no behavioral changes.
Test Plan: Ran `arc unit --everything`, which does a pretty through job of verifying this statically.
Reviewers: btrahan
Reviewed By: btrahan
Subscribers: yelirekim, hach-que, epriestley
Maniphest Tasks: T4100, T5595
Differential Revision: https://secure.phabricator.com/D12453
2015-04-18 16:08:30 +02:00
|
|
|
protected function buildWhereClause(AphrontDatabaseConnection $conn_r) {
|
2014-10-17 14:01:57 +02:00
|
|
|
$where = array();
|
|
|
|
|
|
|
|
if ($this->ids !== null) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
2014-12-18 23:31:36 +01:00
|
|
|
'service.id IN (%Ld)',
|
2014-10-17 14:01:57 +02:00
|
|
|
$this->ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->phids !== null) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
2014-12-18 23:31:36 +01:00
|
|
|
'service.phid IN (%Ls)',
|
2014-10-17 14:01:57 +02:00
|
|
|
$this->phids);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->names !== null) {
|
|
|
|
$hashes = array();
|
|
|
|
foreach ($this->names as $name) {
|
|
|
|
$hashes[] = PhabricatorHash::digestForIndex($name);
|
|
|
|
}
|
|
|
|
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
2014-12-18 23:31:36 +01:00
|
|
|
'service.nameIndex IN (%Ls)',
|
2014-10-17 14:01:57 +02:00
|
|
|
$hashes);
|
|
|
|
}
|
|
|
|
|
2014-12-17 20:10:27 +01:00
|
|
|
if ($this->serviceClasses !== null) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
2014-12-18 23:31:36 +01:00
|
|
|
'service.serviceClass IN (%Ls)',
|
2014-12-17 20:10:27 +01:00
|
|
|
$this->serviceClasses);
|
|
|
|
}
|
|
|
|
|
2014-12-18 23:31:36 +01:00
|
|
|
if ($this->devicePHIDs !== null) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'binding.devicePHID IN (%Ls)',
|
|
|
|
$this->devicePHIDs);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->locked !== null) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'service.isLocked = %d',
|
|
|
|
(int)$this->locked);
|
|
|
|
}
|
|
|
|
|
2014-12-19 21:36:14 +01:00
|
|
|
if ($this->namePrefix !== null) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'service.name LIKE %>',
|
|
|
|
$this->namePrefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->nameSuffix !== null) {
|
|
|
|
$where[] = qsprintf(
|
|
|
|
$conn_r,
|
|
|
|
'service.name LIKE %<',
|
|
|
|
$this->nameSuffix);
|
|
|
|
}
|
|
|
|
|
2014-10-17 14:01:57 +02:00
|
|
|
$where[] = $this->buildPagingClause($conn_r);
|
|
|
|
|
|
|
|
return $this->formatWhereClause($where);
|
|
|
|
}
|
|
|
|
|
2014-12-17 20:10:27 +01:00
|
|
|
protected function willFilterPage(array $services) {
|
|
|
|
$service_types = AlmanacServiceType::getAllServiceTypes();
|
|
|
|
|
|
|
|
foreach ($services as $key => $service) {
|
|
|
|
$service_class = $service->getServiceClass();
|
|
|
|
$service_type = idx($service_types, $service_class);
|
|
|
|
if (!$service_type) {
|
|
|
|
$this->didRejectResult($service);
|
|
|
|
unset($services[$key]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$service->attachServiceType($service_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $services;
|
|
|
|
}
|
|
|
|
|
2014-12-12 21:07:11 +01:00
|
|
|
protected function didFilterPage(array $services) {
|
|
|
|
if ($this->needBindings) {
|
|
|
|
$service_phids = mpull($services, 'getPHID');
|
|
|
|
$bindings = id(new AlmanacBindingQuery())
|
|
|
|
->setViewer($this->getViewer())
|
|
|
|
->withServicePHIDs($service_phids)
|
|
|
|
->execute();
|
|
|
|
$bindings = mgroup($bindings, 'getServicePHID');
|
|
|
|
|
|
|
|
foreach ($services as $service) {
|
|
|
|
$service_bindings = idx($bindings, $service->getPHID(), array());
|
|
|
|
$service->attachBindings($service_bindings);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::didFilterPage($services);
|
|
|
|
}
|
|
|
|
|
2015-04-16 16:43:13 +02:00
|
|
|
public function getOrderableColumns() {
|
|
|
|
return parent::getOrderableColumns() + array(
|
|
|
|
'name' => array(
|
|
|
|
'table' => 'service',
|
|
|
|
'column' => 'name',
|
|
|
|
'type' => 'string',
|
|
|
|
'unique' => true,
|
|
|
|
'reverse' => true,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getValueMap($cursor, array $keys) {
|
|
|
|
$service = $this->loadCursorObject($cursor);
|
|
|
|
return array(
|
|
|
|
'id' => $service->getID(),
|
|
|
|
'name' => $service->getServiceName(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getBuiltinOrders() {
|
|
|
|
return array(
|
|
|
|
'name' => array(
|
|
|
|
'vector' => array('name'),
|
|
|
|
'name' => pht('Service Name'),
|
|
|
|
),
|
|
|
|
) + parent::getBuiltinOrders();
|
|
|
|
}
|
|
|
|
|
2014-10-17 14:01:57 +02:00
|
|
|
}
|