mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
023dee0d3b
Summary: Ref T5655. Rename Conduit classes and provide a `getAPIMethodName` method to declare the API method. Test Plan: ``` > echo '{}' | arc --conduit-uri='http://phabricator.joshuaspence.com' call-conduit user.whoami Waiting for JSON parameters on stdin... {"error":null,"errorMessage":null,"response":{"phid":"PHID-USER-lioqffnwn6y475mu5ndb","userName":"josh","realName":"Joshua Spence","image":"http:\/\/phabricator.joshuaspence.com\/res\/1404425321T\/phabricator\/3eb28cd9\/rsrc\/image\/avatar.png","uri":"http:\/\/phabricator.joshuaspence.com\/p\/josh\/","roles":["admin","verified","approved","activated"]}} ``` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin, hach-que Maniphest Tasks: T5655 Differential Revision: https://secure.phabricator.com/D9991
106 lines
2.5 KiB
PHP
106 lines
2.5 KiB
PHP
<?php
|
|
|
|
final class DifferentialFindConduitAPIMethod
|
|
extends DifferentialConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'differential.find';
|
|
}
|
|
|
|
public function getMethodStatus() {
|
|
return self::METHOD_STATUS_DEPRECATED;
|
|
}
|
|
|
|
public function getMethodStatusDescription() {
|
|
return "Replaced by 'differential.query'.";
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return 'Query Differential revisions which match certain criteria.';
|
|
}
|
|
|
|
public function defineParamTypes() {
|
|
$types = array(
|
|
'open',
|
|
'committable',
|
|
'revision-ids',
|
|
'phids',
|
|
);
|
|
|
|
return array(
|
|
'query' => 'required '.$this->formatStringConstants($types),
|
|
'guids' => 'required nonempty list<guids>',
|
|
);
|
|
}
|
|
|
|
public function defineReturnType() {
|
|
return 'nonempty list<dict>';
|
|
}
|
|
|
|
public function defineErrorTypes() {
|
|
return array(
|
|
);
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$type = $request->getValue('query');
|
|
$guids = $request->getValue('guids');
|
|
|
|
$results = array();
|
|
if (!$guids) {
|
|
return $results;
|
|
}
|
|
|
|
$query = id(new DifferentialRevisionQuery())
|
|
->setViewer($request->getUser());
|
|
|
|
switch ($type) {
|
|
case 'open':
|
|
$query
|
|
->withStatus(DifferentialRevisionQuery::STATUS_OPEN)
|
|
->withAuthors($guids);
|
|
break;
|
|
case 'committable':
|
|
$query
|
|
->withStatus(DifferentialRevisionQuery::STATUS_ACCEPTED)
|
|
->withAuthors($guids);
|
|
break;
|
|
case 'revision-ids':
|
|
$query
|
|
->withIDs($guids);
|
|
break;
|
|
case 'owned':
|
|
$query->withAuthors($guids);
|
|
break;
|
|
case 'phids':
|
|
$query
|
|
->withPHIDs($guids);
|
|
break;
|
|
}
|
|
|
|
$revisions = $query->execute();
|
|
|
|
foreach ($revisions as $revision) {
|
|
$diff = $revision->loadActiveDiff();
|
|
if (!$diff) {
|
|
continue;
|
|
}
|
|
$id = $revision->getID();
|
|
$results[] = array(
|
|
'id' => $id,
|
|
'phid' => $revision->getPHID(),
|
|
'name' => $revision->getTitle(),
|
|
'uri' => PhabricatorEnv::getProductionURI('/D'.$id),
|
|
'dateCreated' => $revision->getDateCreated(),
|
|
'authorPHID' => $revision->getAuthorPHID(),
|
|
'statusName' =>
|
|
ArcanistDifferentialRevisionStatus::getNameForRevisionStatus(
|
|
$revision->getStatus()),
|
|
'sourcePath' => $diff->getSourcePath(),
|
|
);
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
|
|
}
|