2013-05-07 23:57:08 +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 DiffusionFileContentQueryConduitAPIMethod
|
|
|
|
extends DiffusionQueryConduitAPIMethod {
|
|
|
|
|
|
|
|
public function getAPIMethodName() {
|
|
|
|
return 'diffusion.filecontentquery';
|
|
|
|
}
|
2013-05-07 23:57:08 +02:00
|
|
|
|
|
|
|
public function getMethodDescription() {
|
|
|
|
return 'Retrieve file content from a repository.';
|
|
|
|
}
|
|
|
|
|
2015-04-13 00:59:07 +02:00
|
|
|
protected function defineReturnType() {
|
2013-05-07 23:57:08 +02:00
|
|
|
return 'array';
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function defineCustomParamTypes() {
|
|
|
|
return array(
|
|
|
|
'path' => 'required string',
|
|
|
|
'commit' => 'required string',
|
|
|
|
'needsBlame' => 'optional bool',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getResult(ConduitAPIRequest $request) {
|
|
|
|
$drequest = $this->getDiffusionRequest();
|
|
|
|
$needs_blame = $request->getValue('needsBlame');
|
|
|
|
$file_query = DiffusionFileContentQuery::newFromDiffusionRequest(
|
|
|
|
$drequest);
|
|
|
|
$file_query
|
|
|
|
->setViewer($request->getUser())
|
|
|
|
->setNeedsBlame($needs_blame);
|
|
|
|
$file_content = $file_query->loadFileContent();
|
|
|
|
if ($needs_blame) {
|
|
|
|
list($text_list, $rev_list, $blame_dict) = $file_query->getBlameData();
|
|
|
|
} else {
|
|
|
|
$text_list = $rev_list = $blame_dict = array();
|
|
|
|
}
|
|
|
|
$file_content
|
|
|
|
->setBlameDict($blame_dict)
|
|
|
|
->setRevList($rev_list)
|
|
|
|
->setTextList($text_list);
|
|
|
|
return $file_content->toDictionary();
|
|
|
|
}
|
2014-07-10 00:12:48 +02:00
|
|
|
|
2013-05-07 23:57:08 +02:00
|
|
|
}
|