2013-04-26 18:07:38 +02:00
|
|
|
<?php
|
|
|
|
|
Rename Conduit classes
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
2014-07-25 02:54:15 +02:00
|
|
|
final class ReleephQueryRequestsConduitAPIMethod
|
|
|
|
extends ReleephConduitAPIMethod {
|
|
|
|
|
|
|
|
public function getAPIMethodName() {
|
|
|
|
return 'releeph.queryrequests';
|
|
|
|
}
|
2013-04-26 18:07:38 +02:00
|
|
|
|
|
|
|
public function getMethodDescription() {
|
|
|
|
return
|
2014-06-09 20:36:49 +02:00
|
|
|
'Return information about all Releeph requests linked to the given ids.';
|
2013-04-26 18:07:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function defineParamTypes() {
|
|
|
|
return array(
|
|
|
|
'revisionPHIDs' => 'optional list<phid>',
|
|
|
|
'requestedCommitPHIDs' => 'optional list<phid>'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function defineReturnType() {
|
|
|
|
return 'dict<string, wild>';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function defineErrorTypes() {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(ConduitAPIRequest $conduit_request) {
|
|
|
|
$revision_phids = $conduit_request->getValue('revisionPHIDs');
|
|
|
|
$requested_commit_phids =
|
|
|
|
$conduit_request->getValue('requestedCommitPHIDs');
|
|
|
|
$result = array();
|
|
|
|
|
|
|
|
if (!$revision_phids && !$requested_commit_phids) {
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
$query = new ReleephRequestQuery();
|
|
|
|
$query->setViewer($conduit_request->getUser());
|
|
|
|
|
|
|
|
if ($revision_phids) {
|
2014-04-20 20:55:47 +02:00
|
|
|
$query->withRequestedObjectPHIDs($revision_phids);
|
2013-04-26 18:07:38 +02:00
|
|
|
} else if ($requested_commit_phids) {
|
|
|
|
$query->withRequestedCommitPHIDs($requested_commit_phids);
|
|
|
|
}
|
|
|
|
|
|
|
|
$releephRequests = $query->execute();
|
|
|
|
|
|
|
|
foreach ($releephRequests as $releephRequest) {
|
2014-04-20 20:54:58 +02:00
|
|
|
$branch = $releephRequest->getBranch();
|
|
|
|
|
2013-04-26 18:07:38 +02:00
|
|
|
$request_commit_phid = $releephRequest->getRequestCommitPHID();
|
2014-04-20 20:55:47 +02:00
|
|
|
|
|
|
|
$object = $releephRequest->getRequestedObject();
|
|
|
|
if ($object instanceof DifferentialRevision) {
|
|
|
|
$object_phid = $object->getPHID();
|
|
|
|
} else {
|
|
|
|
$object_phid = null;
|
|
|
|
}
|
|
|
|
|
2013-04-26 18:07:38 +02:00
|
|
|
$status = $releephRequest->getStatus();
|
|
|
|
$statusName = ReleephRequestStatus::getStatusDescriptionFor($status);
|
|
|
|
$url = PhabricatorEnv::getProductionURI('/RQ'.$releephRequest->getID());
|
|
|
|
|
|
|
|
$result[] = array(
|
|
|
|
'branchBasename' => $branch->getBasename(),
|
|
|
|
'branchSymbolic' => $branch->getSymbolicName(),
|
|
|
|
'requestID' => $releephRequest->getID(),
|
2014-04-20 20:55:47 +02:00
|
|
|
'revisionPHID' => $object_phid,
|
2013-04-26 18:07:38 +02:00
|
|
|
'status' => $status,
|
|
|
|
'statusName' => $statusName,
|
|
|
|
'url' => $url,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|