doc/lib: Add SearchController

At the moment only Icinga Web 2's documentation is available for searching.

refs #6630
This commit is contained in:
Eric Lippmann 2015-02-10 17:14:16 +01:00
parent 3b20e49940
commit e2b34023cd
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
use \Zend_Controller_Action_Exception;
use Icinga\Application\Icinga;
use Icinga\Module\Doc\DocController;
use Icinga\Module\Doc\DocParser;
use Icinga\Module\Doc\Search\DocSearch;
use Icinga\Module\Doc\Search\DocSearchIterator;
use Icinga\Module\Doc\Search\DocSearchRenderer;
class Doc_SearchController extends DocController
{
public function indexAction()
{
$parser = new DocParser($this->getPath());
$search = new DocSearchRenderer(
new DocSearchIterator(
$parser->getDocTree()->getIterator(),
new DocSearch($this->params->get('q'))
)
);
$this->view->search = $search->setUrl('doc/icingaweb/chapter');
}
/**
* Get the path to Icinga Web 2's documentation
*
* @return string
*
* @throws Zend_Controller_Action_Exception If Icinga Web 2's documentation is not available
*/
protected function getPath()
{
$path = Icinga::app()->getBaseDir('doc');
if (is_dir($path)) {
return $path;
}
if (($path = $this->Config()->get('documentation', 'icingaweb2')) !== null) {
if (is_dir($path)) {
return $path;
}
}
throw new Zend_Controller_Action_Exception(
$this->translate('Documentation for Icinga Web 2 is not available'),
404
);
}
}