mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
6b7d7401ca
Summary: Ref T4558. This diff modernizes the #diviner application. Basically: - Add an edit controller, accessible at `/book/$BOOK/edit/`. - Add edit/view policies. - Added an action menu to the `DivinerBookController` to expose the edit interface. - Allows projects to be associated with books. - Implement edges and transactions. - Implemented `PhabricatorApplicationTransactionInterface` in `DivinerLiveBook`. Test Plan: - Generated a Diviner book with `./bin/diviner generate`. - Added projects to a book and ensured that they persisted. - Changed the view policy on a book and made sure it was effective. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T4558 Differential Revision: https://secure.phabricator.com/D13091
89 lines
2.7 KiB
PHP
89 lines
2.7 KiB
PHP
<?php
|
|
|
|
final class DivinerMainController extends DivinerController {
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
|
|
$books = id(new DivinerBookQuery())
|
|
->setViewer($viewer)
|
|
->execute();
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->setBorder(true);
|
|
$crumbs->addTextCrumb(pht('Books'));
|
|
|
|
$search_icon = id(new PHUIIconView())
|
|
->setIconFont('fa-search');
|
|
|
|
$query_button = id(new PHUIButtonView())
|
|
->setTag('a')
|
|
->setHref($this->getApplicationURI('query/'))
|
|
->setText(pht('Advanced Search'))
|
|
->setIcon($search_icon);
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setHeader(pht('Documentation Books'))
|
|
->addActionLink($query_button);
|
|
|
|
$document = id(new PHUIDocumentView())
|
|
->setHeader($header)
|
|
->setFontKit(PHUIDocumentView::FONT_SOURCE_SANS)
|
|
->addClass('diviner-view');
|
|
|
|
if ($books) {
|
|
$books = msort($books, 'getTitle');
|
|
$list = array();
|
|
foreach ($books as $book) {
|
|
$item = id(new DivinerBookItemView())
|
|
->setTitle($book->getTitle())
|
|
->setHref('/book/'.$book->getName().'/')
|
|
->setSubtitle($book->getPreface());
|
|
$list[] = $item;
|
|
}
|
|
$list = id(new PHUIBoxView())
|
|
->addPadding(PHUI::PADDING_LARGE_LEFT)
|
|
->addPadding(PHUI::PADDING_LARGE_RIGHT)
|
|
->addPadding(PHUI::PADDING_SMALL_TOP)
|
|
->addPadding(PHUI::PADDING_SMALL_BOTTOM)
|
|
->appendChild($list);
|
|
|
|
$document->appendChild($list);
|
|
} else {
|
|
$text = pht(
|
|
"(NOTE) **Looking for Phabricator documentation?** ".
|
|
"If you're looking for help and information about Phabricator, ".
|
|
"you can [[https://secure.phabricator.com/diviner/ | ".
|
|
"browse the public Phabricator documentation]] on the live site.\n\n".
|
|
"Diviner is the documentation generator used to build the ".
|
|
"Phabricator documentation.\n\n".
|
|
"You haven't generated any Diviner documentation books yet, so ".
|
|
"there's nothing to show here. If you'd like to generate your own ".
|
|
"local copy of the Phabricator documentation and have it appear ".
|
|
"here, run this command:\n\n".
|
|
" %s\n\n",
|
|
'phabricator/ $ ./bin/diviner generate');
|
|
|
|
$text = PhabricatorMarkupEngine::renderOneObject(
|
|
id(new PhabricatorMarkupOneOff())->setContent($text),
|
|
'default',
|
|
$viewer);
|
|
|
|
$document->appendChild($text);
|
|
}
|
|
|
|
return $this->buildApplicationPage(
|
|
array(
|
|
$crumbs,
|
|
$document,
|
|
),
|
|
array(
|
|
'title' => pht('Documentation Books'),
|
|
'fonts' => true,
|
|
));
|
|
}
|
|
}
|