mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-29 04:28:12 +01:00
Summary: Ref T13658. Test Plan: This test plan is non-exhaustive. - Viewed "remarkup.process" Conduit method API page. - Viewed URIs in a Diffusion repository. - Viewed editor protocol configuration in Settings. Maniphest Tasks: T13658 Differential Revision: https://secure.phabricator.com/D21772
76 lines
2 KiB
PHP
76 lines
2 KiB
PHP
<?php
|
|
|
|
final class RemarkupProcessConduitAPIMethod extends ConduitAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'remarkup.process';
|
|
}
|
|
|
|
public function getMethodStatus() {
|
|
return self::METHOD_STATUS_UNSTABLE;
|
|
}
|
|
|
|
public function getMethodDescription() {
|
|
return pht('Process text through remarkup.');
|
|
}
|
|
|
|
protected function defineReturnType() {
|
|
return 'nonempty dict';
|
|
}
|
|
|
|
protected function defineErrorTypes() {
|
|
return array(
|
|
'ERR-NO-CONTENT' => pht('Content may not be empty.'),
|
|
'ERR-INVALID-ENGINE' => pht('Invalid markup engine.'),
|
|
);
|
|
}
|
|
|
|
protected function defineParamTypes() {
|
|
$available_contexts = array_keys($this->getEngineContexts());
|
|
$available_const = $this->formatStringConstants($available_contexts);
|
|
|
|
return array(
|
|
'context' => 'required '.$available_const,
|
|
'contents' => 'required list<string>',
|
|
);
|
|
}
|
|
|
|
protected function execute(ConduitAPIRequest $request) {
|
|
$contents = $request->getValue('contents');
|
|
$context = $request->getValue('context');
|
|
|
|
$engine_class = idx($this->getEngineContexts(), $context);
|
|
if (!$engine_class) {
|
|
throw new ConduitException('ERR-INVALID_ENGINE');
|
|
}
|
|
|
|
$engine = PhabricatorMarkupEngine::$engine_class();
|
|
$engine->setConfig('viewer', $request->getUser());
|
|
|
|
$results = array();
|
|
foreach ($contents as $content) {
|
|
$text = $engine->markupText($content);
|
|
if ($text) {
|
|
$content = hsprintf('%s', $text)->getHTMLContent();
|
|
} else {
|
|
$content = '';
|
|
}
|
|
$results[] = array(
|
|
'content' => $content,
|
|
);
|
|
}
|
|
return $results;
|
|
}
|
|
|
|
private function getEngineContexts() {
|
|
return array(
|
|
'phriction' => 'newPhrictionMarkupEngine',
|
|
'maniphest' => 'newManiphestMarkupEngine',
|
|
'differential' => 'newDifferentialMarkupEngine',
|
|
'phame' => 'newPhameMarkupEngine',
|
|
'feed' => 'newFeedMarkupEngine',
|
|
'diffusion' => 'newDiffusionMarkupEngine',
|
|
);
|
|
}
|
|
|
|
}
|