mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-09 10:54:48 +01:00
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
41 lines
908 B
PHP
41 lines
908 B
PHP
<?php
|
|
|
|
final class PHIDQueryConduitAPIMethod extends PHIDConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'phid.query';
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return 'Retrieve information about arbitrary PHIDs.';
|
|
}
|
|
|
|
protected function defineParamTypes() {
|
|
return array(
|
|
'phids' => 'required list<phid>',
|
|
);
|
|
}
|
|
|
|
protected function defineReturnType() {
|
|
return 'nonempty dict<string, wild>';
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$phids = $request->getValue('phids');
|
|
|
|
$handles = id(new PhabricatorHandleQuery())
|
|
->setViewer($request->getUser())
|
|
->withPHIDs($phids)
|
|
->execute();
|
|
|
|
$result = array();
|
|
foreach ($handles as $phid => $handle) {
|
|
if ($handle->isComplete()) {
|
|
$result[$phid] = $this->buildHandleInformationDictionary($handle);
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|