mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-05 21:26:14 +01:00
156b156e77
Summary: Ref T7803. Ref T5873. I want to drive Conduit through more shared infrastructure, but can't currently add parameters automatically. Put a `getX()` around the `defineX()` methods so the parent can provide default behaviors. Also like 60% of methods don't define any special error types; don't require them to implement this method. I want to move away from this in general. Test Plan: - Ran `arc unit --everything`. - Called `conduit.query`. - Browsed Conduit UI. Reviewers: btrahan Reviewed By: btrahan Subscribers: hach-que, epriestley Maniphest Tasks: T5873, T7803 Differential Revision: https://secure.phabricator.com/D12380
91 lines
2.4 KiB
PHP
91 lines
2.4 KiB
PHP
<?php
|
|
|
|
final class HarbormasterQueryBuildablesConduitAPIMethod
|
|
extends HarbormasterConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'harbormaster.querybuildables';
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return pht('Query Harbormaster buildables.');
|
|
}
|
|
|
|
protected function defineParamTypes() {
|
|
return array(
|
|
'ids' => 'optional list<id>',
|
|
'phids' => 'optional list<phid>',
|
|
'buildablePHIDs' => 'optional list<phid>',
|
|
'containerPHIDs' => 'optional list<phid>',
|
|
'manualBuildables' => 'optional bool',
|
|
) + self::getPagerParamTypes();
|
|
}
|
|
|
|
protected function defineReturnType() {
|
|
return 'wild';
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$viewer = $request->getUser();
|
|
|
|
$query = id(new HarbormasterBuildableQuery())
|
|
->setViewer($viewer);
|
|
|
|
$ids = $request->getValue('ids');
|
|
if ($ids !== null) {
|
|
$query->withIDs($ids);
|
|
}
|
|
|
|
$phids = $request->getValue('phids');
|
|
if ($phids !== null) {
|
|
$query->withPHIDs($phids);
|
|
}
|
|
|
|
$buildable_phids = $request->getValue('buildablePHIDs');
|
|
if ($buildable_phids !== null) {
|
|
$query->withBuildablePHIDs($buildable_phids);
|
|
}
|
|
|
|
$container_phids = $request->getValue('containerPHIDs');
|
|
if ($container_phids !== null) {
|
|
$query->withContainerPHIDs($container_phids);
|
|
}
|
|
|
|
$manual = $request->getValue('manualBuildables');
|
|
if ($manual !== null) {
|
|
$query->withManualBuildables($manual);
|
|
}
|
|
|
|
$pager = $this->newPager($request);
|
|
|
|
$buildables = $query->executeWithCursorPager($pager);
|
|
|
|
$data = array();
|
|
foreach ($buildables as $buildable) {
|
|
$monogram = $buildable->getMonogram();
|
|
|
|
$status = $buildable->getBuildableStatus();
|
|
$status_name = HarbormasterBuildable::getBuildableStatusName($status);
|
|
|
|
$data[] = array(
|
|
'id' => $buildable->getID(),
|
|
'phid' => $buildable->getPHID(),
|
|
'monogram' => $monogram,
|
|
'uri' => PhabricatorEnv::getProductionURI('/'.$monogram),
|
|
'buildableStatus' => $status,
|
|
'buildableStatusName' => $status_name,
|
|
'buildablePHID' => $buildable->getBuildablePHID(),
|
|
'containerPHID' => $buildable->getContainerPHID(),
|
|
'isManualBuildable' => (bool)$buildable->getIsManualBuildable(),
|
|
);
|
|
}
|
|
|
|
$results = array(
|
|
'data' => $data,
|
|
);
|
|
|
|
$results = $this->addPagerResults($results, $pager);
|
|
return $results;
|
|
}
|
|
|
|
}
|