1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-14 19:02:41 +01:00
phorge-phorge/src/applications/conduit/controller/console/PhabricatorConduitConsoleController.php

129 lines
3.8 KiB
PHP
Raw Normal View History

2011-01-24 18:00:29 +01:00
<?php
/*
* Copyright 2012 Facebook, Inc.
2011-01-24 18:00:29 +01:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2011-07-04 21:03:36 +02:00
/**
* @group conduit
*/
final class PhabricatorConduitConsoleController
2011-01-24 18:00:29 +01:00
extends PhabricatorConduitController {
private $method;
public function willProcessRequest(array $data) {
$this->method = idx($data, 'method');
}
public function processRequest() {
2011-01-31 03:52:29 +01:00
$request = $this->getRequest();
2011-01-24 18:00:29 +01:00
$methods = $this->getAllMethods();
if (empty($methods[$this->method])) {
$this->method = head_key($methods);
2011-01-24 18:00:29 +01:00
}
$this->setFilter('method/'.$this->method);
2011-01-24 18:00:29 +01:00
$method_class = $methods[$this->method];
PhutilSymbolLoader::loadClass($method_class);
$method_object = newv($method_class, array());
$error_description = array();
$error_types = $method_object->defineErrorTypes();
if ($error_types) {
$error_description[] = '<ul>';
foreach ($error_types as $error => $meaning) {
$error_description[] =
'<li>'.
'<strong>'.phutil_escape_html($error).':</strong> '.
phutil_escape_html($meaning).
'</li>';
}
$error_description[] = '</ul>';
$error_description = implode("\n", $error_description);
} else {
$error_description = "This method does not raise any specific errors.";
}
$form = new AphrontFormView();
$form
2011-01-31 03:52:29 +01:00
->setUser($request->getUser())
2011-01-24 18:00:29 +01:00
->setAction('/api/'.$this->method)
->appendChild(
id(new AphrontFormStaticControl())
->setLabel('Description')
2011-01-24 20:36:53 +01:00
->setValue($method_object->getMethodDescription()))
2011-01-24 18:00:29 +01:00
->appendChild(
id(new AphrontFormStaticControl())
->setLabel('Returns')
2011-01-24 20:36:53 +01:00
->setValue($method_object->defineReturnType()))
2011-01-24 18:00:29 +01:00
->appendChild(
2011-01-24 20:36:53 +01:00
id(new AphrontFormMarkupControl())
2011-01-24 18:00:29 +01:00
->setLabel('Errors')
->setValue($error_description))
->appendChild(
'<p class="aphront-form-instructions">Enter parameters using '.
'<strong>JSON</strong>. For instance, to enter a list, type: '.
'<tt>["apple", "banana", "cherry"]</tt>');
$params = $method_object->defineParamTypes();
foreach ($params as $param => $desc) {
$form->appendChild(
id(new AphrontFormTextControl())
->setLabel($param)
->setName("params[{$param}]")
->setCaption(phutil_escape_html($desc)));
2011-01-24 18:00:29 +01:00
}
$form
->appendChild(
id(new AphrontFormSelectControl())
->setLabel('Output Format')
->setName('output')
->setOptions(
array(
'human' => 'Human Readable',
'json' => 'JSON',
)))
->appendChild(
id(new AphrontFormSubmitControl())
->setValue('Call Method'));
$panel = new AphrontPanelView();
$panel->setHeader('Conduit API: '.phutil_escape_html($this->method));
$panel->appendChild($form);
$panel->setWidth(AphrontPanelView::WIDTH_FULL);
2011-01-24 18:00:29 +01:00
return $this->buildStandardPageResponse(
array($panel),
2011-01-24 18:00:29 +01:00
array(
'title' => 'Conduit Console',
));
}
private function getAllMethods() {
$classes = $this->getAllMethodImplementationClasses();
$methods = array();
foreach ($classes as $class) {
$name = ConduitAPIMethod::getAPIMethodNameFromClassName($class);
$methods[$name] = $class;
}
return $methods;
}
}