mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 20:22:46 +01:00
3536fe2877
Summary: Fixes T12888 Test Plan: Verify text is there. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T12888 Differential Revision: https://secure.phabricator.com/D18178
87 lines
2 KiB
PHP
87 lines
2 KiB
PHP
<?php
|
|
|
|
final class RepositoryQueryConduitAPIMethod
|
|
extends RepositoryConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'repository.query';
|
|
}
|
|
|
|
public function getMethodStatus() {
|
|
return self::METHOD_STATUS_FROZEN;
|
|
}
|
|
|
|
public function getMethodStatusDescription() {
|
|
return pht(
|
|
'This method is frozen and will eventually be deprecated. New code '.
|
|
'should use "diffusion.repository.search" instead.');
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return pht('Query repositories.');
|
|
}
|
|
|
|
public function newQueryObject() {
|
|
return new PhabricatorRepositoryQuery();
|
|
}
|
|
|
|
protected function defineParamTypes() {
|
|
return array(
|
|
'ids' => 'optional list<int>',
|
|
'phids' => 'optional list<phid>',
|
|
'callsigns' => 'optional list<string>',
|
|
'vcsTypes' => 'optional list<string>',
|
|
'remoteURIs' => 'optional list<string>',
|
|
'uuids' => 'optional list<string>',
|
|
);
|
|
}
|
|
|
|
protected function defineReturnType() {
|
|
return 'list<dict>';
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$query = $this->newQueryForRequest($request);
|
|
|
|
$ids = $request->getValue('ids', array());
|
|
if ($ids) {
|
|
$query->withIDs($ids);
|
|
}
|
|
|
|
$phids = $request->getValue('phids', array());
|
|
if ($phids) {
|
|
$query->withPHIDs($phids);
|
|
}
|
|
|
|
$callsigns = $request->getValue('callsigns', array());
|
|
if ($callsigns) {
|
|
$query->withCallsigns($callsigns);
|
|
}
|
|
|
|
$vcs_types = $request->getValue('vcsTypes', array());
|
|
if ($vcs_types) {
|
|
$query->withTypes($vcs_types);
|
|
}
|
|
|
|
$remote_uris = $request->getValue('remoteURIs', array());
|
|
if ($remote_uris) {
|
|
$query->withURIs($remote_uris);
|
|
}
|
|
|
|
$uuids = $request->getValue('uuids', array());
|
|
if ($uuids) {
|
|
$query->withUUIDs($uuids);
|
|
}
|
|
|
|
$pager = $this->newPager($request);
|
|
$repositories = $query->executeWithCursorPager($pager);
|
|
|
|
$results = array();
|
|
foreach ($repositories as $repository) {
|
|
$results[] = $repository->toDictionary();
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
|
|
}
|