80 lines
2.4 KiB
PHP
80 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
use Icinga\Module\Director\Web\Tabs\MainTabs;
|
|
use Icinga\Module\Director\Web\Widget\HealthCheckPluginOutput;
|
|
use Icinga\Module\Director\Dashboard\Dashboard;
|
|
use Icinga\Module\Director\Health;
|
|
use Icinga\Module\Director\Web\Controller\ActionController;
|
|
use Icinga\Module\Director\Web\Form\DbSelectorForm;
|
|
|
|
class DashboardController extends ActionController
|
|
{
|
|
protected function checkDirectorPermissions()
|
|
{
|
|
// No special permissions required, override parent method
|
|
}
|
|
|
|
protected function addDbSelection()
|
|
{
|
|
if ($this->isMultiDbSetup()) {
|
|
$form = new DbSelectorForm(
|
|
$this->getResponse(),
|
|
$this->Window(),
|
|
$this->listAllowedDbResourceNames()
|
|
);
|
|
$this->content()->add($form);
|
|
$form->handleRequest($this->getServerRequest());
|
|
}
|
|
}
|
|
|
|
public function indexAction()
|
|
{
|
|
if ($this->getRequest()->isGet()) {
|
|
$this->setAutorefreshInterval(10);
|
|
}
|
|
|
|
$mainDashboards = [
|
|
'Objects',
|
|
'Alerts',
|
|
'Automation',
|
|
'Deployment',
|
|
'Director',
|
|
'Data',
|
|
];
|
|
$this->setTitle($this->translate('Icinga Director - Main Dashboard'));
|
|
$names = $this->params->getValues('name', $mainDashboards);
|
|
if (! $this->params->has('name')) {
|
|
$this->addDbSelection();
|
|
}
|
|
if (count($names) === 1) {
|
|
$name = $names[0];
|
|
$dashboard = Dashboard::loadByName($name, $this->db());
|
|
$this->tabs($dashboard->getTabs())->activate($name);
|
|
} else {
|
|
$this->tabs(new MainTabs($this->Auth(), $this->getDbResourceName()))->activate('main');
|
|
}
|
|
|
|
$cntDashboards = 0;
|
|
foreach ($names as $name) {
|
|
if ($name instanceof Dashboard) {
|
|
$dashboard = $name;
|
|
} else {
|
|
$dashboard = Dashboard::loadByName($name, $this->db());
|
|
}
|
|
if ($dashboard->isAvailable()) {
|
|
$cntDashboards++;
|
|
$this->content()->add($dashboard);
|
|
}
|
|
}
|
|
|
|
if ($cntDashboards === 0) {
|
|
$msg = $this->translate(
|
|
'No dashboard available, you might have not enough permissions'
|
|
);
|
|
$this->content()->add($msg);
|
|
}
|
|
}
|
|
}
|