mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
1ba52fac86
Summary: Ref T2015. All the Drydock query classes share the application method; move it into a shared base class to slightly shrink the codebase. Test Plan: Browsed query UIs. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2015 Differential Revision: https://secure.phabricator.com/D7837
108 lines
2.3 KiB
PHP
108 lines
2.3 KiB
PHP
<?php
|
|
|
|
final class DrydockLeaseQuery extends DrydockQuery {
|
|
|
|
private $ids;
|
|
private $phids;
|
|
private $resourceIDs;
|
|
private $statuses;
|
|
|
|
public function withIDs(array $ids) {
|
|
$this->ids = $ids;
|
|
return $this;
|
|
}
|
|
|
|
public function withPHIDs(array $phids) {
|
|
$this->phids = $phids;
|
|
return $this;
|
|
}
|
|
|
|
public function withResourceIDs(array $ids) {
|
|
$this->resourceIDs = $ids;
|
|
return $this;
|
|
}
|
|
|
|
public function withStatuses(array $statuses) {
|
|
$this->statuses = $statuses;
|
|
return $this;
|
|
}
|
|
|
|
public function loadPage() {
|
|
$table = new DrydockLease();
|
|
$conn_r = $table->establishConnection('r');
|
|
|
|
$data = queryfx_all(
|
|
$conn_r,
|
|
'SELECT lease.* FROM %T lease %Q %Q %Q',
|
|
$table->getTableName(),
|
|
$this->buildWhereClause($conn_r),
|
|
$this->buildOrderClause($conn_r),
|
|
$this->buildLimitClause($conn_r));
|
|
|
|
return $table->loadAllFromArray($data);
|
|
}
|
|
|
|
public function willFilterPage(array $leases) {
|
|
$resource_ids = array_filter(mpull($leases, 'getResourceID'));
|
|
if ($resource_ids) {
|
|
$resources = id(new DrydockResourceQuery())
|
|
->setParentQuery($this)
|
|
->setViewer($this->getViewer())
|
|
->withIDs($resource_ids)
|
|
->execute();
|
|
} else {
|
|
$resources = array();
|
|
}
|
|
|
|
foreach ($leases as $key => $lease) {
|
|
$resource = null;
|
|
if ($lease->getResourceID()) {
|
|
$resource = idx($resources, $lease->getResourceID());
|
|
if (!$resource) {
|
|
unset($leases[$key]);
|
|
continue;
|
|
}
|
|
}
|
|
$lease->attachResource($resource);
|
|
}
|
|
|
|
return $leases;
|
|
}
|
|
|
|
private function buildWhereClause(AphrontDatabaseConnection $conn_r) {
|
|
$where = array();
|
|
|
|
if ($this->resourceIDs) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'resourceID IN (%Ld)',
|
|
$this->resourceIDs);
|
|
}
|
|
|
|
if ($this->ids) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'id IN (%Ld)',
|
|
$this->ids);
|
|
}
|
|
|
|
if ($this->phids) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'phid IN (%Ls)',
|
|
$this->phids);
|
|
}
|
|
|
|
if ($this->statuses) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'status IN (%Ld)',
|
|
$this->statuses);
|
|
}
|
|
|
|
$where[] = $this->buildPagingClause($conn_r);
|
|
|
|
return $this->formatWhereClause($where);
|
|
}
|
|
|
|
}
|