mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 09:22:40 +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
33 lines
797 B
PHP
33 lines
797 B
PHP
<?php
|
|
|
|
final class DiffusionResolveRefsConduitAPIMethod
|
|
extends DiffusionQueryConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'diffusion.resolverefs';
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return pht('Resolve references into stable, canonical identifiers.');
|
|
}
|
|
|
|
protected function defineReturnType() {
|
|
return 'dict<string, list<dict<string, wild>>>';
|
|
}
|
|
|
|
protected function defineCustomParamTypes() {
|
|
return array(
|
|
'refs' => 'required list<string>',
|
|
);
|
|
}
|
|
|
|
protected function getResult(ConduitAPIRequest $request) {
|
|
$refs = $request->getValue('refs');
|
|
|
|
return id(new DiffusionLowLevelResolveRefsQuery())
|
|
->setRepository($this->getDiffusionRequest()->getRepository())
|
|
->withRefs($refs)
|
|
->execute();
|
|
}
|
|
|
|
}
|