2013-07-03 14:37:49 +02:00
|
|
|
<?php
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
2013-07-23 14:03:32 +02:00
|
|
|
/**
|
|
|
|
* Icinga 2 Web - Head for multiple monitoring frontends
|
|
|
|
* Copyright (C) 2013 Icinga Development Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* @copyright 2013 Icinga Development Team <info@icinga.org>
|
|
|
|
* @author Icinga Development Team <info@icinga.org>
|
|
|
|
*/
|
2013-07-22 16:03:36 +02:00
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
2013-07-03 14:37:49 +02:00
|
|
|
/**
|
|
|
|
* Class Zend_View_Helper_MonitoringFlags
|
|
|
|
*
|
|
|
|
* Rendering helper for flags depending on objects
|
|
|
|
*/
|
|
|
|
class Zend_View_Helper_MonitoringFlags extends Zend_View_Helper_Abstract
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Key of flags without prefix (e.g. host or service)
|
|
|
|
* @var string[]
|
|
|
|
*/
|
|
|
|
private static $keys = array(
|
2013-08-22 17:27:11 +02:00
|
|
|
'passive_checks_enabled' => 'Passive Checks',
|
|
|
|
'active_checks_enabled' => 'Active Checks',
|
2013-07-31 17:03:21 +02:00
|
|
|
'obsessing' => 'Obsessing',
|
2013-07-03 14:37:49 +02:00
|
|
|
'notifications_enabled' => 'Notifications',
|
2013-08-22 17:27:11 +02:00
|
|
|
'event_handler_enabled' => 'Event Handler',
|
|
|
|
'flap_detection_enabled' => 'Flap Detection',
|
2013-07-03 14:37:49 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Type prefix
|
|
|
|
* @param array $vars
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private function getObjectType(array $vars)
|
|
|
|
{
|
2013-07-23 12:18:27 +02:00
|
|
|
$keys = array_keys($vars);
|
|
|
|
$firstKey = array_shift($keys);
|
|
|
|
$keyParts = explode('_', $firstKey, 2);
|
|
|
|
|
|
|
|
return array_shift($keyParts);
|
2013-07-03 14:37:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build all existing flags to a readable array
|
|
|
|
* @param stdClass $object
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function monitoringFlags(\stdClass $object)
|
|
|
|
{
|
|
|
|
$vars = (array)$object;
|
|
|
|
$type = $this->getObjectType($vars);
|
|
|
|
$out = array();
|
|
|
|
|
|
|
|
foreach (self::$keys as $key => $name) {
|
|
|
|
$value = false;
|
|
|
|
if (array_key_exists(($realKey = $type. '_'. $key), $vars)) {
|
|
|
|
$value = $vars[$realKey] === '1' ? true : false;
|
|
|
|
}
|
|
|
|
$out[$name] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
2013-08-07 10:27:50 +02:00
|
|
|
}
|