mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 04:02:43 +01:00
fcad9435ea
Summary: Ref T5833. Adds support for arbitrary properites to Almanac devices and bindings. - For Devices, this allows you to maybe mark what `rack` a server is on, the `serial` number of a router, etc. - For Bindings, this allows you to maybe mark that a bound device is `active`, provide `credentials`, expose it as `readonly`, etc. Test Plan: Added properties to Devices and Bindings. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T5833 Differential Revision: https://secure.phabricator.com/D10781
139 lines
3.3 KiB
PHP
139 lines
3.3 KiB
PHP
<?php
|
|
|
|
final class AlmanacBindingQuery
|
|
extends AlmanacQuery {
|
|
|
|
private $ids;
|
|
private $phids;
|
|
private $servicePHIDs;
|
|
private $devicePHIDs;
|
|
private $interfacePHIDs;
|
|
|
|
public function withIDs(array $ids) {
|
|
$this->ids = $ids;
|
|
return $this;
|
|
}
|
|
|
|
public function withPHIDs(array $phids) {
|
|
$this->phids = $phids;
|
|
return $this;
|
|
}
|
|
|
|
public function withServicePHIDs(array $phids) {
|
|
$this->servicePHIDs = $phids;
|
|
return $this;
|
|
}
|
|
|
|
public function withDevicePHIDs(array $phids) {
|
|
$this->devicePHIDs = $phids;
|
|
return $this;
|
|
}
|
|
|
|
public function withInterfacePHIDs(array $phids) {
|
|
$this->interfacePHIDs = $phids;
|
|
return $this;
|
|
}
|
|
|
|
protected function loadPage() {
|
|
$table = new AlmanacBinding();
|
|
$conn_r = $table->establishConnection('r');
|
|
|
|
$data = queryfx_all(
|
|
$conn_r,
|
|
'SELECT * FROM %T %Q %Q %Q',
|
|
$table->getTableName(),
|
|
$this->buildWhereClause($conn_r),
|
|
$this->buildOrderClause($conn_r),
|
|
$this->buildLimitClause($conn_r));
|
|
|
|
return $table->loadAllFromArray($data);
|
|
}
|
|
|
|
protected function willFilterPage(array $bindings) {
|
|
$service_phids = mpull($bindings, 'getServicePHID');
|
|
$device_phids = mpull($bindings, 'getDevicePHID');
|
|
$interface_phids = mpull($bindings, 'getInterfacePHID');
|
|
|
|
$services = id(new AlmanacServiceQuery())
|
|
->setParentQuery($this)
|
|
->setViewer($this->getViewer())
|
|
->withPHIDs($service_phids)
|
|
->execute();
|
|
$services = mpull($services, null, 'getPHID');
|
|
|
|
$devices = id(new AlmanacDeviceQuery())
|
|
->setParentQuery($this)
|
|
->setViewer($this->getViewer())
|
|
->withPHIDs($device_phids)
|
|
->execute();
|
|
$devices = mpull($devices, null, 'getPHID');
|
|
|
|
$interfaces = id(new AlmanacInterfaceQuery())
|
|
->setParentQuery($this)
|
|
->setViewer($this->getViewer())
|
|
->withPHIDs($interface_phids)
|
|
->execute();
|
|
$interfaces = mpull($interfaces, null, 'getPHID');
|
|
|
|
foreach ($bindings as $key => $binding) {
|
|
$service = idx($services, $binding->getServicePHID());
|
|
$device = idx($devices, $binding->getDevicePHID());
|
|
$interface = idx($interfaces, $binding->getInterfacePHID());
|
|
if (!$service || !$device || !$interface) {
|
|
$this->didRejectResult($binding);
|
|
unset($bindings[$key]);
|
|
continue;
|
|
}
|
|
|
|
$binding->attachService($service);
|
|
$binding->attachDevice($device);
|
|
$binding->attachInterface($interface);
|
|
}
|
|
|
|
return $bindings;
|
|
}
|
|
|
|
protected function buildWhereClause($conn_r) {
|
|
$where = array();
|
|
|
|
if ($this->ids !== null) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'id IN (%Ld)',
|
|
$this->ids);
|
|
}
|
|
|
|
if ($this->phids !== null) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'phid IN (%Ls)',
|
|
$this->phids);
|
|
}
|
|
|
|
if ($this->servicePHIDs !== null) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'servicePHID IN (%Ls)',
|
|
$this->servicePHIDs);
|
|
}
|
|
|
|
if ($this->devicePHIDs !== null) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'devicePHID IN (%Ls)',
|
|
$this->devicePHIDs);
|
|
}
|
|
|
|
if ($this->interfacePHIDs !== null) {
|
|
$where[] = qsprintf(
|
|
$conn_r,
|
|
'interfacePHID IN (%Ls)',
|
|
$this->interfacePHIDs);
|
|
}
|
|
|
|
$where[] = $this->buildPagingClause($conn_r);
|
|
|
|
return $this->formatWhereClause($where);
|
|
}
|
|
|
|
}
|