2013-06-01 00:14:39 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DivinerAtomController extends DivinerController {
|
|
|
|
|
|
|
|
private $bookName;
|
|
|
|
private $atomType;
|
|
|
|
private $atomName;
|
|
|
|
private $atomContext;
|
|
|
|
private $atomIndex;
|
|
|
|
|
|
|
|
public function shouldAllowPublic() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->bookName = $data['book'];
|
|
|
|
$this->atomType = $data['type'];
|
|
|
|
$this->atomName = $data['name'];
|
|
|
|
$this->atomContext = nonempty(idx($data, 'context'), null);
|
|
|
|
$this->atomIndex = nonempty(idx($data, 'index'), null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$viewer = $request->getUser();
|
|
|
|
|
|
|
|
$book = id(new DivinerBookQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withNames(array($this->bookName))
|
|
|
|
->executeOne();
|
|
|
|
|
|
|
|
if (!$book) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
2013-06-06 17:36:51 +02:00
|
|
|
$symbol = id(new DivinerAtomQuery())
|
2013-06-01 00:14:39 +02:00
|
|
|
->setViewer($viewer)
|
|
|
|
->withBookPHIDs(array($book->getPHID()))
|
|
|
|
->withTypes(array($this->atomType))
|
|
|
|
->withNames(array($this->atomName))
|
|
|
|
->withContexts(array($this->atomContext))
|
|
|
|
->withIndexes(array($this->atomIndex))
|
|
|
|
->needAtoms(true)
|
|
|
|
->executeOne();
|
|
|
|
|
2013-06-06 17:36:51 +02:00
|
|
|
if (!$symbol) {
|
2013-06-01 00:14:39 +02:00
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
2013-06-06 17:36:51 +02:00
|
|
|
$atom = $symbol->getAtom();
|
|
|
|
|
2013-06-01 00:14:39 +02:00
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
|
|
|
|
|
|
$crumbs->addCrumb(
|
|
|
|
id(new PhabricatorCrumbView())
|
2013-06-06 17:36:51 +02:00
|
|
|
->setName($book->getShortTitle())
|
2013-06-01 00:14:39 +02:00
|
|
|
->setHref('/book/'.$book->getName().'/'));
|
|
|
|
|
2013-06-06 17:36:51 +02:00
|
|
|
$atom_short_title = $atom->getDocblockMetaValue(
|
|
|
|
'short',
|
|
|
|
$symbol->getTitle());
|
|
|
|
|
2013-06-01 00:14:39 +02:00
|
|
|
$crumbs->addCrumb(
|
|
|
|
id(new PhabricatorCrumbView())
|
2013-06-06 17:36:51 +02:00
|
|
|
->setName($atom_short_title));
|
|
|
|
|
|
|
|
$header = id(new PhabricatorHeaderView())
|
|
|
|
->setHeader($symbol->getTitle())
|
|
|
|
->addTag(
|
|
|
|
id(new PhabricatorTagView())
|
|
|
|
->setType(PhabricatorTagView::TYPE_STATE)
|
|
|
|
->setBackgroundColor(PhabricatorTagView::COLOR_BLUE)
|
|
|
|
->setName($this->renderAtomTypeName($atom->getType())));
|
|
|
|
|
|
|
|
$properties = id(new PhabricatorPropertyListView());
|
|
|
|
|
|
|
|
$group = $atom->getDocblockMetaValue('group');
|
|
|
|
if ($group) {
|
|
|
|
$group_name = $book->getGroupName($group);
|
|
|
|
} else {
|
|
|
|
$group_name = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$properties->addProperty(
|
|
|
|
pht('Defined'),
|
|
|
|
$atom->getFile().':'.$atom->getLine());
|
|
|
|
|
|
|
|
$field = 'default';
|
|
|
|
$engine = id(new PhabricatorMarkupEngine())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->addObject($symbol, $field)
|
|
|
|
->process();
|
2013-06-01 00:14:39 +02:00
|
|
|
|
2013-06-06 17:36:51 +02:00
|
|
|
$content = $engine->getOutput($symbol, $field);
|
|
|
|
|
|
|
|
$toc = $engine->getEngineMetadata(
|
|
|
|
$symbol,
|
|
|
|
$field,
|
|
|
|
PhutilRemarkupEngineRemarkupHeaderBlockRule::KEY_HEADER_TOC,
|
|
|
|
array());
|
2013-06-01 00:14:39 +02:00
|
|
|
|
|
|
|
$document = id(new PHUIDocumentView())
|
2013-06-06 17:36:51 +02:00
|
|
|
->setBook($book->getTitle(), $group_name)
|
|
|
|
->setHeader($header)
|
|
|
|
->appendChild($properties)
|
2013-06-01 00:14:39 +02:00
|
|
|
->appendChild(
|
|
|
|
phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-remarkup',
|
|
|
|
),
|
2013-06-06 17:36:51 +02:00
|
|
|
array(
|
|
|
|
$content,
|
|
|
|
)));
|
|
|
|
|
|
|
|
if ($toc) {
|
|
|
|
$side = new PHUIListView();
|
|
|
|
$side->addMenuItem(
|
|
|
|
id(new PHUIListItemView())
|
|
|
|
->setName(pht('Contents'))
|
|
|
|
->setType(PHUIListItemView::TYPE_LABEL));
|
|
|
|
foreach ($toc as $key => $entry) {
|
|
|
|
$side->addMenuItem(
|
|
|
|
id(new PHUIListItemView())
|
|
|
|
->setName($entry[1])
|
|
|
|
->setHref('#'.$key));
|
|
|
|
}
|
|
|
|
|
|
|
|
$document->setSideNav($side);
|
|
|
|
}
|
2013-06-01 00:14:39 +02:00
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
|
|
|
array(
|
|
|
|
$crumbs,
|
|
|
|
$document,
|
|
|
|
),
|
|
|
|
array(
|
2013-06-06 17:36:51 +02:00
|
|
|
'title' => $symbol->getTitle(),
|
2013-06-01 00:14:39 +02:00
|
|
|
'dust' => true,
|
|
|
|
'device' => true,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2013-06-06 17:36:51 +02:00
|
|
|
private function renderAtomTypeName($name) {
|
|
|
|
return phutil_utf8_ucwords($name);
|
|
|
|
}
|
|
|
|
|
2013-06-01 00:14:39 +02:00
|
|
|
}
|