2011-11-18 18:16:40 +01: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 DifferentialCreateCommentConduitAPIMethod
|
|
|
|
extends DifferentialConduitAPIMethod {
|
|
|
|
|
|
|
|
public function getAPIMethodName() {
|
|
|
|
return 'differential.createcomment';
|
|
|
|
}
|
2011-11-18 18:16:40 +01:00
|
|
|
|
|
|
|
public function getMethodDescription() {
|
2014-06-09 20:36:49 +02:00
|
|
|
return pht('Add a comment to a Differential revision.');
|
2011-11-18 18:16:40 +01:00
|
|
|
}
|
|
|
|
|
2015-04-13 00:59:07 +02:00
|
|
|
protected function defineParamTypes() {
|
2011-11-18 18:16:40 +01:00
|
|
|
return array(
|
2013-09-18 02:11:08 +02:00
|
|
|
'revision_id' => 'required revisionid',
|
|
|
|
'message' => 'optional string',
|
|
|
|
'action' => 'optional string',
|
|
|
|
'silent' => 'optional bool',
|
|
|
|
'attach_inlines' => 'optional bool',
|
2011-11-18 18:16:40 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-04-13 00:59:07 +02:00
|
|
|
protected function defineReturnType() {
|
2011-11-18 18:16:40 +01:00
|
|
|
return 'nonempty dict';
|
|
|
|
}
|
|
|
|
|
2015-04-13 00:59:07 +02:00
|
|
|
protected function defineErrorTypes() {
|
2011-11-18 18:16:40 +01:00
|
|
|
return array(
|
|
|
|
'ERR_BAD_REVISION' => 'Bad revision ID.',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
2014-03-08 02:44:10 +01:00
|
|
|
$viewer = $request->getUser();
|
|
|
|
|
2013-09-26 21:37:19 +02:00
|
|
|
$revision = id(new DifferentialRevisionQuery())
|
2014-03-08 02:44:10 +01:00
|
|
|
->setViewer($viewer)
|
2013-09-26 21:37:19 +02:00
|
|
|
->withIDs(array($request->getValue('revision_id')))
|
2014-03-08 02:44:10 +01:00
|
|
|
->needReviewerStatus(true)
|
2014-03-12 23:24:54 +01:00
|
|
|
->needReviewerAuthority(true)
|
2013-09-26 21:37:19 +02:00
|
|
|
->executeOne();
|
2011-11-18 18:16:40 +01:00
|
|
|
if (!$revision) {
|
|
|
|
throw new ConduitException('ERR_BAD_REVISION');
|
|
|
|
}
|
|
|
|
|
2014-03-08 02:44:10 +01:00
|
|
|
$xactions = array();
|
2011-11-18 18:16:40 +01:00
|
|
|
|
2012-07-06 01:47:04 +02:00
|
|
|
$action = $request->getValue('action');
|
2014-03-12 23:24:54 +01:00
|
|
|
if ($action && ($action != 'comment') && ($action != 'none')) {
|
2014-03-08 02:44:10 +01:00
|
|
|
$xactions[] = id(new DifferentialTransaction())
|
|
|
|
->setTransactionType(DifferentialTransaction::TYPE_ACTION)
|
|
|
|
->setNewValue($action);
|
|
|
|
}
|
|
|
|
|
|
|
|
$content = $request->getValue('message');
|
|
|
|
if (strlen($content)) {
|
|
|
|
$xactions[] = id(new DifferentialTransaction())
|
|
|
|
->setTransactionType(PhabricatorTransactions::TYPE_COMMENT)
|
|
|
|
->attachComment(
|
|
|
|
id(new DifferentialTransactionComment())
|
|
|
|
->setContent($content));
|
2012-07-06 01:47:04 +02:00
|
|
|
}
|
|
|
|
|
2014-03-08 02:44:10 +01:00
|
|
|
if ($request->getValue('attach_inlines')) {
|
|
|
|
$type_inline = DifferentialTransaction::TYPE_INLINE;
|
|
|
|
$inlines = DifferentialTransactionQuery::loadUnsubmittedInlineComments(
|
|
|
|
$viewer,
|
|
|
|
$revision);
|
|
|
|
foreach ($inlines as $inline) {
|
|
|
|
$xactions[] = id(new DifferentialTransaction())
|
|
|
|
->setTransactionType($type_inline)
|
|
|
|
->attachComment($inline);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$editor = id(new DifferentialTransactionEditor())
|
|
|
|
->setActor($viewer)
|
|
|
|
->setDisableEmail($request->getValue('silent'))
|
|
|
|
->setContentSourceFromConduitRequest($request)
|
|
|
|
->setContinueOnNoEffect(true)
|
|
|
|
->setContinueOnMissingFields(true);
|
|
|
|
|
|
|
|
$editor->applyTransactions($revision, $xactions);
|
2011-11-18 18:16:40 +01:00
|
|
|
|
|
|
|
return array(
|
|
|
|
'revisionid' => $revision->getID(),
|
|
|
|
'uri' => PhabricatorEnv::getURI('/D'.$revision->getID()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|