mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
2cc898a63f
Summary: Ref T7977. Add a repository parameter to the `diffusion.findsymbols` Conduit method to allow restricting search results to the specified repository. Test Plan: Queried the Conduit endpoint. Reviewers: avivey, epriestley, #blessed_reviewers Reviewed By: avivey, epriestley, #blessed_reviewers Subscribers: eadler, avivey, Korvin, epriestley Maniphest Tasks: T7977 Differential Revision: https://secure.phabricator.com/D12663
86 lines
2.3 KiB
PHP
86 lines
2.3 KiB
PHP
<?php
|
|
|
|
final class DiffusionFindSymbolsConduitAPIMethod
|
|
extends DiffusionConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'diffusion.findsymbols';
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return pht('Retrieve Diffusion symbol information.');
|
|
}
|
|
|
|
protected function defineParamTypes() {
|
|
return array(
|
|
'name' => 'optional string',
|
|
'namePrefix' => 'optional string',
|
|
'context' => 'optional string',
|
|
'language' => 'optional string',
|
|
'type' => 'optional string',
|
|
'repositoryPHID' => 'optional string',
|
|
);
|
|
}
|
|
|
|
protected function defineReturnType() {
|
|
return 'nonempty list<dict>';
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$name = $request->getValue('name');
|
|
$name_prefix = $request->getValue('namePrefix');
|
|
$context = $request->getValue('context');
|
|
$language = $request->getValue('language');
|
|
$type = $request->getValue('type');
|
|
$repository = $request->getValue('repositoryPHID');
|
|
|
|
$query = id(new DiffusionSymbolQuery())
|
|
->setViewer($request->getUser());
|
|
if ($name !== null) {
|
|
$query->setName($name);
|
|
}
|
|
if ($name_prefix !== null) {
|
|
$query->setNamePrefix($name_prefix);
|
|
}
|
|
if ($context !== null) {
|
|
$query->setContext($context);
|
|
}
|
|
if ($language !== null) {
|
|
$query->setLanguage($language);
|
|
}
|
|
if ($type !== null) {
|
|
$query->setType($type);
|
|
}
|
|
if ($repository !== null) {
|
|
$query->withRepositoryPHIDs(array($repository));
|
|
}
|
|
|
|
$query->needPaths(true);
|
|
$query->needRepositories(true);
|
|
|
|
$results = $query->execute();
|
|
|
|
|
|
$response = array();
|
|
foreach ($results as $result) {
|
|
$uri = $result->getURI();
|
|
if ($uri) {
|
|
$uri = PhabricatorEnv::getProductionURI($uri);
|
|
}
|
|
|
|
$response[] = array(
|
|
'name' => $result->getSymbolName(),
|
|
'context' => $result->getSymbolContext(),
|
|
'type' => $result->getSymbolType(),
|
|
'language' => $result->getSymbolLanguage(),
|
|
'path' => $result->getPath(),
|
|
'line' => $result->getLineNumber(),
|
|
'uri' => $uri,
|
|
'repositoryPHID' => $result->getRepository()->getPHID(),
|
|
);
|
|
}
|
|
|
|
return $response;
|
|
}
|
|
|
|
}
|