1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
<?php
/* Icinga Web 2 | (c) 2016 Icinga Development Team | GPLv2+ */
namespace Icinga\Module\Toplevelview\Controllers;
use Icinga\Module\Toplevelview\ViewConfig;
use Icinga\Module\Toplevelview\Web\Controller;
use Icinga\Web\Url;
use Icinga\Application\Icinga;
class ShowController extends Controller
{
public function init()
{
$tabs = $this->getTabs();
$url = Url::fromRequest()->setParams(clone $this->params);
$tiles = Url::fromPath('toplevelview/show', ['name' => $this->params->getRequired('name')]);
$tabs->add('index', [
'title' => $this->translate('Tree'),
'url' => $tiles
]);
// Add new Tabs for the entire tree
if (($id = $this->getParam('id')) !== null) {
$tabs->add('tree', [
'title' => $this->translate('Tiles'),
'url' => Url::fromPath('toplevelview/show/tree', [
'name' => $this->params->getRequired('name'),
'id' => $id
])
]);
}
$action = $this->getRequest()->getActionName();
if ($tab = $tabs->get($action)) {
$tab->setActive();
}
}
public function indexAction()
{
$this->view->name = $name = $this->params->getRequired('name');
$config_dir_module = Icinga::app()
->getModuleManager()
->getModule('toplevelview')
->getConfigDir();
$c = new ViewConfig($config_dir_module);
// Check if the user has permissions/restrictions for this View
$restrictions = $c->getRestrictions('toplevelview/filter/views');
$c->assertAccessToView($restrictions, $name);
$view = $c->loadByName($name);
$this->view->view = $view;
$tree = $view->getTree();
if (($lifetime = $this->getParam('cache')) !== null) {
$tree->setCacheLifetime($lifetime);
}
$this->setAutorefreshInterval(30);
}
public function treeAction()
{
$this->view->name = $name = $this->params->getRequired('name');
$config_dir_module = Icinga::app()
->getModuleManager()
->getModule('toplevelview')
->getConfigDir();
$c = new ViewConfig($config_dir_module);
// Check if the user has permissions/restrictions for this View
$restrictions = $c->getRestrictions('toplevelview/filter/views');
$c->assertAccessToView($restrictions, $name);
$view = $c->loadByName($name);
$this->view->view = $view;
$tree = $view->getTree();
$this->view->node = $tree->getById($this->params->getRequired('id'));
if (($lifetime = $this->getParam('cache')) !== null) {
$tree->setCacheLifetime($lifetime);
}
$this->setAutorefreshInterval(30);
}
public function sourceAction()
{
$this->view->name = $name = $this->params->getRequired('name');
$config_dir_module = Icinga::app()
->getModuleManager()
->getModule('toplevelview')
->getConfigDir();
$c = new ViewConfig($config_dir_module);
// Check if the user has permissions/restrictions for this View
$restrictions = $c->getRestrictions('toplevelview/filter/views');
$c->assertAccessToView($restrictions, $name);
$view = $c->loadByName($name);
$this->view->view = $view;
$this->view->text = $view->getText();
$this->setViewScript('index', 'text');
}
}
|