mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +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
94 lines
2.2 KiB
PHP
94 lines
2.2 KiB
PHP
<?php
|
|
|
|
final class DifferentialGetRevisionCommentsConduitAPIMethod
|
|
extends DifferentialConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'differential.getrevisioncomments';
|
|
}
|
|
|
|
public function getMethodStatus() {
|
|
return self::METHOD_STATUS_DEPRECATED;
|
|
}
|
|
|
|
public function getMethodStatusDescription() {
|
|
return pht('Obsolete and doomed, see T2222.');
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return 'Retrieve Differential Revision Comments.';
|
|
}
|
|
|
|
public function defineParamTypes() {
|
|
return array(
|
|
'ids' => 'required list<int>',
|
|
'inlines' => 'optional bool (deprecated)',
|
|
);
|
|
}
|
|
|
|
public function defineReturnType() {
|
|
return 'nonempty list<dict<string, wild>>';
|
|
}
|
|
|
|
public function defineErrorTypes() {
|
|
return array(
|
|
);
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$viewer = $request->getUser();
|
|
$results = array();
|
|
$revision_ids = $request->getValue('ids');
|
|
|
|
if (!$revision_ids) {
|
|
return $results;
|
|
}
|
|
|
|
$revisions = id(new DifferentialRevisionQuery())
|
|
->setViewer($viewer)
|
|
->withIDs($revision_ids)
|
|
->execute();
|
|
|
|
if (!$revisions) {
|
|
return $results;
|
|
}
|
|
|
|
$xactions = id(new DifferentialTransactionQuery())
|
|
->setViewer($viewer)
|
|
->withObjectPHIDs(mpull($revisions, 'getPHID'))
|
|
->execute();
|
|
|
|
$revisions = mpull($revisions, null, 'getPHID');
|
|
|
|
foreach ($xactions as $xaction) {
|
|
$revision = idx($revisions, $xaction->getObjectPHID());
|
|
if (!$revision) {
|
|
continue;
|
|
}
|
|
|
|
$type = $xaction->getTransactionType();
|
|
if ($type == DifferentialTransaction::TYPE_ACTION) {
|
|
$action = $xaction->getNewValue();
|
|
} else if ($type == PhabricatorTransactions::TYPE_COMMENT) {
|
|
$action = 'comment';
|
|
} else {
|
|
$action = 'none';
|
|
}
|
|
|
|
$result = array(
|
|
'revisionID' => $revision->getID(),
|
|
'action' => $action,
|
|
'authorPHID' => $xaction->getAuthorPHID(),
|
|
'dateCreated' => $xaction->getDateCreated(),
|
|
'content' => ($xaction->hasComment()
|
|
? $xaction->getComment()->getContent()
|
|
: null),
|
|
);
|
|
|
|
$results[$revision->getID()][] = $result;
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
|
|
}
|