diff --git a/.puppet/hiera/common.yaml b/.puppet/hiera/common.yaml index 0a85ba63a..c76b904bf 100644 --- a/.puppet/hiera/common.yaml +++ b/.puppet/hiera/common.yaml @@ -1,7 +1,7 @@ --- -icingaweb2::config: /etc/icingaweb -icingaweb2::log: /var/log/icingaweb/icingaweb.log -icingaweb2::web_path: icingaweb -icingaweb2::db_user: icingaweb -icingaweb2::db_pass: icingaweb -icingaweb2::db_name: icingaweb +icingaweb2::config: /etc/icingaweb2 +icingaweb2::log: /var/log/icingaweb2/icingaweb2.log +icingaweb2::web_path: icingaweb2 +icingaweb2::db_user: icingaweb2 +icingaweb2::db_pass: icingaweb2 +icingaweb2::db_name: icingaweb2 diff --git a/.puppet/manifests/site.pp b/.puppet/manifests/site.pp index 77ebfa0a7..08120d911 100644 --- a/.puppet/manifests/site.pp +++ b/.puppet/manifests/site.pp @@ -12,4 +12,6 @@ node default { file { '/etc/profile.d/env.sh': source => 'puppet:////vagrant/.puppet/files/etc/profile.d/env.sh' } + @user { vagrant: ensure => present } + User <| title == vagrant |> { groups +> icingaweb } } diff --git a/.puppet/modules/icingacli/manifests/init.pp b/.puppet/modules/icingacli/manifests/init.pp index 7eef7833a..701cb6e14 100644 --- a/.puppet/modules/icingacli/manifests/init.pp +++ b/.puppet/modules/icingacli/manifests/init.pp @@ -1,3 +1,4 @@ +# TODO(el): This module is not reuseable because it relies on vagrant paths class icingacli { file { '/usr/local/bin/icingacli': ensure => link, diff --git a/Vagrantfile b/Vagrantfile index 02c92f214..28b69cab9 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,7 +2,7 @@ # vi: set ft=ruby : VAGRANTFILE_API_VERSION = "2" -VAGRANT_REQUIRED_VERSION = "1.2.0" +VAGRANT_REQUIRED_VERSION = "1.5.0" # Require 1.2.x at least if ! defined? Vagrant.require_version diff --git a/application/controllers/AuthenticationController.php b/application/controllers/AuthenticationController.php index 00dae1c6d..2d7926819 100644 --- a/application/controllers/AuthenticationController.php +++ b/application/controllers/AuthenticationController.php @@ -4,16 +4,17 @@ # namespace Icinga\Application\Controllers; -use Icinga\Authentication\Backend\AutoLoginBackend; -use Icinga\Web\Controller\ActionController; -use Icinga\Forms\Authentication\LoginForm; -use Icinga\Authentication\AuthChain; use Icinga\Application\Config; +use Icinga\Application\Icinga; use Icinga\Application\Logger; +use Icinga\Authentication\AuthChain; +use Icinga\Authentication\Backend\AutoLoginBackend; use Icinga\Exception\AuthenticationException; -use Icinga\Exception\NotReadableError; use Icinga\Exception\ConfigurationError; +use Icinga\Exception\NotReadableError; +use Icinga\Forms\Authentication\LoginForm; use Icinga\User; +use Icinga\Web\Controller\ActionController; use Icinga\Web\Url; /** @@ -33,7 +34,8 @@ class AuthenticationController extends ActionController */ public function loginAction() { - if (@file_exists(Config::resolvePath('setup.token')) && !@file_exists(Config::resolvePath('config.ini'))) { + $icinga = Icinga::app(); + if ($icinga->setupTokenExists() && $icinga->requiresSetup()) { $this->redirectNow(Url::fromPath('setup')); } @@ -139,7 +141,7 @@ class AuthenticationController extends ActionController $this->view->errorInfo = $e->getMessage(); } - $this->view->configMissing = is_dir(Config::$configDir) === false; + $this->view->requiresSetup = Icinga::app()->requiresSetup(); } /** diff --git a/application/forms/Config/Authentication/AutologinBackendForm.php b/application/forms/Config/Authentication/AutologinBackendForm.php index a21d2c006..97b5dfed7 100644 --- a/application/forms/Config/Authentication/AutologinBackendForm.php +++ b/application/forms/Config/Authentication/AutologinBackendForm.php @@ -53,8 +53,10 @@ class AutologinBackendForm extends Form 'strip_username_regexp', array( 'label' => t('Filter Pattern'), - 'description' => t('The regular expression to use to strip specific parts off from usernames. Leave empty if you do not want to strip off anything'), - 'value' => '/\@[^$]+$/', + 'description' => t( + 'The regular expression to use to strip specific parts off from usernames.' + . ' Leave empty if you do not want to strip off anything' + ), 'validators' => array( new Zend_Validate_Callback(function ($value) { return @preg_match($value, '') !== false; diff --git a/application/forms/Config/General/LoggingConfigForm.php b/application/forms/Config/General/LoggingConfigForm.php index deed06011..759c2a6e3 100644 --- a/application/forms/Config/General/LoggingConfigForm.php +++ b/application/forms/Config/General/LoggingConfigForm.php @@ -67,7 +67,7 @@ class LoggingConfigForm extends Form 'required' => true, 'label' => t('Application Prefix'), 'description' => t('The name of the application by which to prefix syslog messages.'), - 'value' => 'icingaweb', + 'value' => 'icingaweb2', 'validators' => array( array( 'Regex', @@ -106,7 +106,7 @@ class LoggingConfigForm extends Form 'required' => true, 'label' => t('File path'), 'description' => t('The full path to the log file to write messages to.'), - 'value' => $this->getDefaultLogDir(), + 'value' => '/var/log/icingaweb2/icingaweb2.log', 'validators' => array(new WritablePathValidator()) ) ); @@ -114,14 +114,4 @@ class LoggingConfigForm extends Form return $this; } - - /** - * Return the default logging directory for type 'file' - * - * @return string - */ - protected function getDefaultLogDir() - { - return realpath(Icinga::app()->getApplicationDir('../var/log/icingaweb.log')); - } } diff --git a/application/forms/Config/Resource/LivestatusResourceForm.php b/application/forms/Config/Resource/LivestatusResourceForm.php index d90600370..2262cf583 100644 --- a/application/forms/Config/Resource/LivestatusResourceForm.php +++ b/application/forms/Config/Resource/LivestatusResourceForm.php @@ -44,7 +44,7 @@ class LivestatusResourceForm extends Form 'required' => true, 'label' => t('Socket'), 'description' => t('The path to your livestatus socket used for querying monitoring data'), - 'value' => realpath(Icinga::app()->getApplicationDir() . '/../var/rw/livestatus') + 'value' => '/var/run/icinga2/cmd/livestatus' ) ); diff --git a/application/forms/Security/RoleForm.php b/application/forms/Security/RoleForm.php index 0fb53e858..b27a4ec8b 100644 --- a/application/forms/Security/RoleForm.php +++ b/application/forms/Security/RoleForm.php @@ -6,6 +6,7 @@ namespace Icinga\Forms\Security; use InvalidArgumentException; use LogicException; +use Zend_Form_Element; use Icinga\Application\Icinga; use Icinga\Forms\ConfigForm; use Icinga\Util\String; @@ -18,14 +19,14 @@ class RoleForm extends ConfigForm /** * Provided permissions by currently loaded modules * - * @var array + * @type array */ - protected $providedPermissions = array(); + protected $providedPermissions = array('*' => '*'); /** * Provided restrictions by currently loaded modules * - * @var array + * @type array */ protected $providedRestrictions = array(); @@ -35,14 +36,26 @@ class RoleForm extends ConfigForm */ public function init() { + $helper = new Zend_Form_Element('bogus'); foreach (Icinga::app()->getModuleManager()->getLoadedModules() as $module) { foreach ($module->getProvidedPermissions() as $permission) { - /** @var object $permission */ + /** @type object $permission */ $this->providedPermissions[$permission->name] = $permission->name . ': ' . $permission->description; } foreach ($module->getProvidedRestrictions() as $restriction) { - /** @var object $restriction */ - $this->providedRestrictions[$restriction->name] = $restriction->description; + /** @type object $restriction */ + $name = $helper->filterName($restriction->name); // Zend only permits alphanumerics, the underscore, + // the circumflex and any ASCII character in range + // \x7f to \xff (127 to 255) + while (isset($this->providedRestrictions[$name])) { + // Because Zend_Form_Element::filterName() replaces any not permitted character with the empty + // string we may have duplicate names, e.g. 're/striction' and 'restriction' + $name .= '_'; + } + $this->providedRestrictions[$name] = array( + 'description' => $restriction->description, + 'name' => $restriction->name + ); } } } @@ -90,13 +103,13 @@ class RoleForm extends ConfigForm ) ) )); - foreach ($this->providedRestrictions as $name => $description) { + foreach ($this->providedRestrictions as $name => $spec) { $this->addElement( 'text', $name, array( - 'label' => $name, - 'description' => $description + 'label' => $spec['name'], + 'description' => $spec['description'] ) ); } @@ -129,6 +142,15 @@ class RoleForm extends ConfigForm ? String::trimSplit($role['permissions']) : null; $role['name'] = $name; + $restrictions = array(); + foreach ($this->providedRestrictions as $name => $spec) { + if (isset($role[$spec['name']])) { + // Translate restriction names to filtered element names + $restrictions[$name] = $role[$spec['name']]; + unset($role[$spec['name']]); + } + } + $role = array_merge($role, $restrictions); $this->populate($role); return $this; } @@ -230,6 +252,15 @@ class RoleForm extends ConfigForm if (isset($values['permissions'])) { $values['permissions'] = implode(', ', $values['permissions']); } + $restrictions = array(); + foreach ($this->providedRestrictions as $name => $spec) { + if (isset($values[$name])) { + // Translate filtered element names to restriction names + $restrictions[$spec['name']] = $values[$name]; + unset($values[$name]); + } + } + $values = array_merge($values, $restrictions); return $values; } } diff --git a/application/views/scripts/authentication/login.phtml b/application/views/scripts/authentication/login.phtml index 584d8ad16..a3d8fcfa9 100644 --- a/application/views/scripts/authentication/login.phtml +++ b/application/views/scripts/authentication/login.phtml @@ -15,10 +15,10 @@ = $this->form ?>
- +
diff --git a/library/Icinga/Application/Modules/Manager.php b/library/Icinga/Application/Modules/Manager.php
index 6469d3929..7ee2461f9 100644
--- a/library/Icinga/Application/Modules/Manager.php
+++ b/library/Icinga/Application/Modules/Manager.php
@@ -68,18 +68,6 @@ class Manager
*/
private $modulePaths = array();
- /**
- * The core modules
- *
- * Core modules do not need to be enabled to load and cannot be disabled
- * by the user. This must not be writable programmatically!
- *
- * @var array
- */
- private $coreModules = array(
- 'setup'
- );
-
/**
* Create a new instance of the module manager
*
@@ -170,21 +158,7 @@ class Manager
}
/**
- * Try to set all core modules in loaded state
- *
- * @return self
- * @see Manager::loadModule()
- */
- public function loadCoreModules()
- {
- foreach ($this->coreModules as $name) {
- $this->loadModule($name);
- }
- return $this;
- }
-
- /**
- * Try to set all enabled modules in loaded state
+ * Try to set all enabled modules in loaded sate
*
* @return self
* @see Manager::loadModule()
@@ -239,8 +213,6 @@ class Manager
'Cannot enable module "%s". Module is not installed.',
$name
);
- } elseif (in_array($name, $this->coreModules)) {
- return $this;
}
clearstatcache(true);
@@ -458,7 +430,7 @@ class Manager
}
$installed = $this->listInstalledModules();
- foreach (array_diff($installed, $this->coreModules) as $name) {
+ foreach ($installed as $name) {
$info[$name] = (object) array(
'name' => $name,
'path' => $this->installedBaseDirs[$name],
diff --git a/library/Icinga/Application/Web.php b/library/Icinga/Application/Web.php
index 37ec5138a..5b18f1be8 100644
--- a/library/Icinga/Application/Web.php
+++ b/library/Icinga/Application/Web.php
@@ -104,7 +104,7 @@ class Web extends ApplicationBootstrap
->setupZendMvc()
->setupFormNamespace()
->setupModuleManager()
- ->loadCoreModules()
+ ->loadSetupModuleIfNecessary()
->loadEnabledModules()
->setupRoute()
->setupPagination();
diff --git a/library/Icinga/File/FileExtensionFilterIterator.php b/library/Icinga/File/FileExtensionFilterIterator.php
new file mode 100644
index 000000000..909156749
--- /dev/null
+++ b/library/Icinga/File/FileExtensionFilterIterator.php
@@ -0,0 +1,71 @@
+
+ *
+ */
+class FileExtensionFilterIterator extends FilterIterator
+{
+ /**
+ * The extension to filter for
+ *
+ * @type string
+ */
+ protected $extension;
+
+ /**
+ * Create a new FileExtensionFilterIterator
+ *
+ * @param Iterator $iterator Apply filter to this iterator
+ * @param string $extension The file extension to filter for. The file extension may not contain the leading dot
+ */
+ public function __construct(Iterator $iterator, $extension)
+ {
+ $this->extension = '.' . ltrim(strtolower((string) $extension), '.');
+ parent::__construct($iterator);
+ }
+
+ /**
+ * Accept files which match the file extension to filter for
+ *
+ * @return bool Whether the current element of the iterator is acceptable
+ * through this filter
+ */
+ public function accept()
+ {
+ $current = $this->current();
+ /* @var $current \SplFileInfo */
+ if (! $current->isFile()) {
+ return false;
+ }
+ // SplFileInfo::getExtension() is only available since PHP 5 >= 5.3.6
+ $filename = $current->getFilename();
+ $sfx = substr($filename, -strlen($this->extension));
+ return $sfx === false ? false : strtolower($sfx) === $this->extension;
+ }
+}
diff --git a/library/Icinga/File/NonEmptyFileIterator.php b/library/Icinga/File/NonEmptyFileIterator.php
new file mode 100644
index 000000000..c5c7fda45
--- /dev/null
+++ b/library/Icinga/File/NonEmptyFileIterator.php
@@ -0,0 +1,49 @@
+
+ *
+ */
+class NonEmptyFileIterator extends FilterIterator
+{
+ /**
+ * Accept non-empty files
+ *
+ * @return bool Whether the current element of the iterator is acceptable
+ * through this filter
+ */
+ public function accept()
+ {
+ $current = $this->current();
+ /** @type $current \SplFileInfo */
+ if (! $current->isFile()
+ || $current->getSize() === 0
+ ) {
+ return false;
+ }
+ return true;
+ }
+}
diff --git a/library/Icinga/Util/String.php b/library/Icinga/Util/String.php
index 0bebb06e7..248ab0d34 100644
--- a/library/Icinga/Util/String.php
+++ b/library/Icinga/Util/String.php
@@ -23,16 +23,17 @@ class String
}
/**
- * Uppercase the first character of each word in a string assuming and removing the underscore as word separator
+ * Uppercase the first character of each word in a string
*
* Converts 'first_name' to 'firstName' for example.
*
* @param string $name
+ * @param string $separator Word separator
*
* @return string
*/
- public static function cname($name)
+ public static function cname($name, $separator = '_')
{
- return str_replace(' ', '', ucwords(str_replace('_', ' ', strtolower($name))));
+ return str_replace(' ', '', ucwords(str_replace($separator, ' ', strtolower($name))));
}
}
diff --git a/library/Icinga/Util/Translator.php b/library/Icinga/Util/Translator.php
index 52a84bd62..87d9e4c88 100644
--- a/library/Icinga/Util/Translator.php
+++ b/library/Icinga/Util/Translator.php
@@ -4,7 +4,6 @@
namespace Icinga\Util;
-use Exception;
use Icinga\Exception\IcingaException;
/**
@@ -34,8 +33,8 @@ class Translator
*
* Falls back to the default domain in case the string cannot be translated using the given domain
*
- * @param string $text The string to translate
- * @param string $domain The primary domain to use
+ * @param string $text The string to translate
+ * @param string $domain The primary domain to use
* @param string|null $context Optional parameter for context based translation
*
* @return string The translated string
@@ -64,7 +63,7 @@ class Translator
*
* @param string $textSingular The string in singular form to translate
* @param string $textPlural The string in plural form to translate
- * @param integer $number The number to get the plural or singular string
+ * @param integer $number The amount to determine from whether to return singular or plural
* @param string $domain The primary domain to use
* @param string|null $context Optional parameter for context based translation
*
diff --git a/library/Icinga/Web/Controller/ActionController.php b/library/Icinga/Web/Controller/ActionController.php
index 400803dce..013f31099 100644
--- a/library/Icinga/Web/Controller/ActionController.php
+++ b/library/Icinga/Web/Controller/ActionController.php
@@ -270,7 +270,7 @@ class ActionController extends Zend_Controller_Action
/**
* Redirect to the login path
*
- * @param string $afterLogin The action to call when the login was successful. Defaults to '/index/welcome'
+ * @param Url $afterLogin The action to call when the login was successful. Defaults to '/index/welcome'
*
* @throws \Exception
*/
diff --git a/library/Icinga/Web/Form.php b/library/Icinga/Web/Form.php
index 37d8789fe..64712961f 100644
--- a/library/Icinga/Web/Form.php
+++ b/library/Icinga/Web/Form.php
@@ -9,6 +9,7 @@ use Zend_Config;
use Zend_Form;
use Zend_View_Interface;
use Icinga\Application\Icinga;
+use Icinga\Util\Translator;
use Icinga\Web\Form\Decorator\NoScriptApply;
use Icinga\Web\Form\Element\CsrfCounterMeasure;
@@ -147,7 +148,7 @@ class Form extends Zend_Form
/**
* Set a callback that is called instead of this form's onSuccess method
*
- * It is called using the following signature: (Request $request, Form $form).
+ * It is called using the following signature: (Form $this).
*
* @param callable $onSuccess Callback
*
@@ -804,6 +805,58 @@ class Form extends Zend_Form
return array();
}
+ /**
+ * Get the translation domain for this form
+ *
+ * The returned translation domain is either determined based on this form's qualified name or it is the default
+ * 'icinga' domain
+ *
+ * @return string
+ */
+ protected function getTranslationDomain()
+ {
+ $parts = explode('\\', get_called_class());
+ if ($parts[1] === 'Module') {
+ // Assume format Icinga\Module\ModuleName\Forms\...
+ return strtolower($parts[2]);
+ }
+ return 'icinga';
+ }
+
+ /**
+ * Translate a string
+ *
+ * @param string $text The string to translate
+ * @param string|null $context Optional parameter for context based translation
+ *
+ * @return string The translated string
+ */
+ protected function translate($text, $context = null)
+ {
+ return Translator::translate($text, $this->getTranslationDomain(), $context);
+ }
+
+ /**
+ * Translate a plural string
+ *
+ * @param string $textSingular The string in singular form to translate
+ * @param string $textPlural The string in plural form to translate
+ * @param integer $number The amount to determine from whether to return singular or plural
+ * @param string|null $context Optional parameter for context based translation
+ *
+ * @return string The translated string
+ */
+ protected function translatePlural($textSingular, $textPlural, $number, $context = null)
+ {
+ return Translator::translatePlural(
+ $textSingular,
+ $textPlural,
+ $number,
+ $this->getTranslationDomain(),
+ $context
+ );
+ }
+
/**
* Render this form
*
diff --git a/library/Icinga/Web/Menu.php b/library/Icinga/Web/Menu.php
index 18a17ea67..f0279ea9c 100644
--- a/library/Icinga/Web/Menu.php
+++ b/library/Icinga/Web/Menu.php
@@ -248,7 +248,8 @@ class Menu implements RecursiveIterator
$section->add(t('Logout'), array(
'url' => 'authentication/logout',
- 'priority' => 700
+ 'priority' => 700,
+ 'renderer' => 'ForeignMenuItemRenderer'
));
}
}
@@ -366,7 +367,7 @@ class Menu implements RecursiveIterator
/**
* Return the url of this menu
*
- * @return string
+ * @return Url
*/
public function getUrl()
{
diff --git a/library/Icinga/Web/Menu/ForeignMenuItemRenderer.php b/library/Icinga/Web/Menu/ForeignMenuItemRenderer.php
new file mode 100644
index 000000000..659709868
--- /dev/null
+++ b/library/Icinga/Web/Menu/ForeignMenuItemRenderer.php
@@ -0,0 +1,24 @@
+%s%s',
+ $menu->getUrl() ?: '#',
+ $menu->getIcon() ? '
' : '',
+ htmlspecialchars($menu->getTitle())
+ );
+ }
+}
diff --git a/library/Icinga/Web/Session/PhpSession.php b/library/Icinga/Web/Session/PhpSession.php
old mode 100644
new mode 100755
index bef978c0b..fa545fd8d
--- a/library/Icinga/Web/Session/PhpSession.php
+++ b/library/Icinga/Web/Session/PhpSession.php
@@ -78,8 +78,9 @@ class PhpSession extends Session
}
}
- if (!is_writable(session_save_path())) {
- throw new ConfigurationError('Can\'t save session');
+ $sessionSavePath = session_save_path();
+ if (session_module_name() === 'files' && !is_writable($sessionSavePath)) {
+ throw new ConfigurationError("Can't save session, path '$sessionSavePath' is not writable.");
}
if ($this->exists()) {
diff --git a/library/Icinga/Web/Widget/Chart/InlinePie.php b/library/Icinga/Web/Widget/Chart/InlinePie.php
index 618d2903b..04e3e7318 100644
--- a/library/Icinga/Web/Widget/Chart/InlinePie.php
+++ b/library/Icinga/Web/Widget/Chart/InlinePie.php
@@ -5,6 +5,7 @@
namespace Icinga\Web\Widget\Chart;
use Icinga\Chart\PieChart;
+use Icinga\Module\Monitoring\Plugin\PerfdataSet;
use Icinga\Web\Widget\AbstractWidget;
use Icinga\Web\Url;
use Icinga\Util\Format;
@@ -28,36 +29,23 @@ class InlinePie extends AbstractWidget
const NUMBER_FORMAT_RATIO = 'ratio';
/**
- * The template string used for rendering this widget
* The template string used for rendering this widget
*
* @var string
*/
private $template =<<<'EOD'
-
-
+
+
+{noscript}
EOD;
+ private $noscript =<<<'EOD'
+
+EOD;
+
+
/**
* @var Url
*/
@@ -68,35 +56,7 @@ EOD;
*
* @var array
*/
- private $colors = array('#44bb77', '#ffaa44', '#ff5566', '#ddccdd');
-
- /**
- * The width of the rendered chart
- *
- * @var int The value in px
- */
- private $width = 16;
-
- /**
- * The height of the rendered chart
- *
- * @var int The value in px
- */
- private $height = 16;
-
- /**
- * PieChart border width
- *
- * @var float
- */
- private $borderWidth = 1;
-
- /**
- * The color of the border
- *
- * @var string
- */
- private $borderColor = '#fff';
+ private $colors = array('#049BAF', '#ffaa44', '#ff5566', '#ddccdd');
/**
* The title of the chart
@@ -106,11 +66,9 @@ EOD;
private $title;
/**
- * The style for the HtmlElement
- *
- * @var string
+ * @var
*/
- private $style = '';
+ private $size;
/**
* The data displayed by the pie-chart
@@ -120,45 +78,9 @@ EOD;
private $data;
/**
- * The labels to display for each data set
- *
- * @var array
+ * @var
*/
- private $labels = array();
-
- /**
- * If the tooltip for the "empty" area should be hidden
- *
- * @var bool
- */
- private $hideEmptyLabel = false;
-
- /**
- * The format string used to display tooltips
- *
- * @var string
- */
- private $tooltipFormat = '{{title}} {{label}}: {{formatted}} ({{percent}}%)';
-
- /**
- * The number format used to render numeric values in tooltips
- *
- * @var array
- */
- private $format = self::NUMBER_FORMAT_NONE;
-
- /**
- * Set if the tooltip for the empty area should be hidden
- *
- * @param bool $hide Whether to hide the empty area
- *
- * @return $this
- */
- public function setHideEmptyLabel($hide = true)
- {
- $this->hideEmptyLabel = $hide;
- return $this;
- }
+ private $class = '';
/**
* Set the data to be displayed.
@@ -175,24 +97,36 @@ EOD;
}
/**
- * The labels to be displayed in the pie-chart
+ * Set the size of the inline pie
*
- * @param mixed $label The label of the displayed value, or null for no labels
+ * @param int $size Sets both, the height and width
*
- * @return $this
+ * @return $this
*/
- public function setLabel($label)
+ public function setSize($size = null)
{
- if (is_array($label)) {
- $this->url->setParam('labels', implode(',', array_keys($label)));
- } elseif ($label != null) {
- $labelArr = array($label, $label, $label, '');
- $this->url->setParam('labels', implode(',', $labelArr));
- $label = $labelArr;
- } else {
- $this->url->removeKey('labels');
- }
- $this->labels = $label;
+ $this->size = $size;
+ return $this;
+ }
+
+ /**
+ * Do not display the NoScript fallback html
+ */
+ public function disableNoScript()
+ {
+ $this->noscript = '';
+ }
+
+ /**
+ * Set the class to define the
+ *
+ * @param $class
+ *
+ * @return $this
+ */
+ public function setSparklineClass($class)
+ {
+ $this->class = $class;
return $this;
}
@@ -214,105 +148,6 @@ EOD;
return $this;
}
- /**
- * Set the used number format
- *
- * @param $format string 'bytes' or 'time'
- *
- * @return $this
- */
- public function setNumberFormat($format)
- {
- $this->format = $format;
- return $this;
- }
-
- /**
- * A format string used to render the content of the piechart tooltips
- *
- * Placeholders using curly braces '{FOO}' are replace with their specific values. The format
- * String may contain HTML-Markup. The available replaceable values are:
- *
- * - label: The description for the current value
- * - formatted: A string representing the formatted value
- * - value: The raw (non-formatted) value used to render the piechart
- * - percent: The percentage of the current value
- *
- * Note: Changes will only affect JavaScript sparklines and not the SVG charts used for fallback
- *
- * @param $format
- *
- * @return $this
- */
- public function setTooltipFormat($format)
- {
- $this->tooltipFormat = $format;
- return $this;
- }
-
- /**
- * Set the height
- *
- * @param $height
- *
- * @return $this
- */
- public function setHeight($height)
- {
- $this->height = $height;
- return $this;
- }
-
- /**
- * Set the border width of the pie chart
- *
- * @param float $width Width in px
- *
- * @return $this
- */
- public function setBorderWidth($width)
- {
- $this->borderWidth = $width;
- return $this;
- }
-
- /**
- * Set the color of the pie chart border
- *
- * @param string $col The color string
- *
- * @return $this
- */
- public function setBorderColor($col)
- {
- $this->borderColor = $col;
- }
-
- /**
- * Set the width
- *
- * @param $width
- *
- * @return $this
- */
- public function setWidth($width)
- {
- $this->width = $width;
- return $this;
- }
-
- /**
- * Set the styling of the created HtmlElement
- *
- * @param string $style
- *
- * @return $this
- */
- public function setStyle($style)
- {
- $this->style = $style;
- }
-
/**
* Set the title of the displayed Data
*
@@ -322,7 +157,7 @@ EOD;
*/
public function setTitle($title)
{
- $this->title = $title;
+ $this->title = 'title="' . htmlspecialchars($title) . '"';
return $this;
}
@@ -335,13 +170,10 @@ EOD;
*/
public function __construct(array $data, $title, $colors = null)
{
- $this->title = $title;
+ $this->setTitle($title);
$this->url = Url::fromPath('svg/chart.php');
if (array_key_exists('data', $data)) {
$this->data = $data['data'];
- if (array_key_exists('labels', $data)) {
- $this->labels = $data['labels'];
- }
if (array_key_exists('colors', $data)) {
$this->colors = $data['colors'];
}
@@ -354,21 +186,6 @@ EOD;
$this->setColors($this->colors);
}
}
-
- /**
- * Create a serialization containing the current label array
- *
- * @return string A serialized array of labels
- */
- private function createLabelString ()
- {
- $labels = $this->labels;
- foreach ($labels as $key => $label) {
- $labels[$key] = str_replace('|', '', $label);
- }
- return isset($this->labels) && is_array($this->labels) ? implode('|', $this->labels) : '';
- }
-
/**
* Renders this widget via the given view and returns the
* HTML as a string
@@ -382,11 +199,11 @@ EOD;
$pie->alignTopLeft();
$pie->disableLegend();
$pie->drawPie(array(
- 'data' => $this->data, 'colors' => $this->colors, 'labels' => $this->labels
+ 'data' => $this->data, 'colors' => $this->colors
));
try {
- $png = $pie->toPng($this->width, $this->height);
+ $png = $pie->toPng($this->size, $this->size);
return '
';
} catch (IcingaException $_) {
return '';
@@ -394,17 +211,17 @@ EOD;
}
$template = $this->template;
+ // TODO: Check whether we are XHR and don't send
+ $template = str_replace('{noscript}', $this->noscript, $template);
$template = str_replace('{url}', $this->url, $template);
+ $template = str_replace('{class}', $this->class, $template);
// style
- $template = str_replace('{width}', $this->width, $template);
- $template = str_replace('{height}', $this->height, $template);
- $template = str_replace('{title}', htmlspecialchars($this->title), $template);
- $template = str_replace('{style}', $this->style, $template);
+ $template = str_replace('{size}',
+ isset($this->size) ? 'sparkWidth="' . $this->size . '" sparkHeight="' . $this->size . '" ' : '', $template);
+ $template = str_replace('{title}', $this->title, $template);
+
$template = str_replace('{colors}', implode(',', $this->colors), $template);
- $template = str_replace('{borderWidth}', $this->borderWidth, $template);
- $template = str_replace('{borderColor}', $this->borderColor, $template);
- $template = str_replace('{hideEmptyLabel}', $this->hideEmptyLabel ? 'true' : 'false', $template);
// Locale-ignorant string cast. Please. Do. NOT. Remove. This. Again.
// Problem is that implode respects locales when casting floats. This means
@@ -414,38 +231,7 @@ EOD;
$data[] = sprintf('%F', $dat);
}
- // values
- $formatted = array();
- foreach ($this->data as $key => $value) {
- $formatted[$key] = $this->formatValue($value);
- }
$template = str_replace('{data}', htmlspecialchars(implode(',', $data)), $template);
- $template = str_replace('{formatted}', htmlspecialchars(implode('|', $formatted)), $template);
- $template = str_replace('{labels}', htmlspecialchars($this->createLabelString()), $template);
- $template = str_replace('{tooltipFormat}', $this->tooltipFormat, $template);
return $template;
}
-
- /**
- * Format the given value depending on the current value of numberFormat
- *
- * @param float $value The value to format
- *
- * @return string The formatted value
- */
- private function formatValue($value)
- {
- if ($this->format === self::NUMBER_FORMAT_NONE) {
- return (string)$value;
- } elseif ($this->format === self::NUMBER_FORMAT_BYTES) {
- return Format::bytes($value);
- } elseif ($this->format === self::NUMBER_FORMAT_TIME) {
- return Format::duration($value);
- } elseif ($this->format === self::NUMBER_FORMAT_RATIO) {
- return $value;
- } else {
- Logger::warning('Unknown format string "' . $this->format . '" for InlinePie, value not formatted.');
- return $value;
- }
- }
}
diff --git a/library/Icinga/Web/Widget/Tabextension/OutputFormat.php b/library/Icinga/Web/Widget/Tabextension/OutputFormat.php
index b5426ea47..0b533fd82 100644
--- a/library/Icinga/Web/Widget/Tabextension/OutputFormat.php
+++ b/library/Icinga/Web/Widget/Tabextension/OutputFormat.php
@@ -4,6 +4,7 @@
namespace Icinga\Web\Widget\Tabextension;
+use Icinga\Application\Platform;
use Icinga\Web\Url;
use Icinga\Web\Widget\Tab;
use Icinga\Web\Widget\Tabs;
@@ -28,35 +29,6 @@ class OutputFormat implements Tabextension
*/
const TYPE_CSV = 'csv';
- /**
- * An array containing the tab definitions for all supported types
- *
- * Using array_keys on this array or isset allows to check whether a
- * requested type is supported
- *
- * @var array
- */
- private $supportedTypes = array(
- self::TYPE_PDF => array(
- 'name' => 'pdf',
- 'title' => 'PDF',
- 'icon' => 'file-pdf',
- 'urlParams' => array('format' => 'pdf'),
- ),
- self::TYPE_CSV => array(
- 'name' => 'csv',
- 'title' => 'CSV',
- 'icon' => 'file-excel',
- 'urlParams' => array('format' => 'csv')
- ),
- self::TYPE_JSON => array(
- 'name' => 'json',
- 'title' => 'JSON',
- 'icon' => 'img/icons/json.png',
- 'urlParams' => array('format' => 'json')
- )
- );
-
/**
* An array of tabs to be added to the dropdown area
*
@@ -74,7 +46,7 @@ class OutputFormat implements Tabextension
*/
public function __construct(array $disabled = array())
{
- foreach ($this->supportedTypes as $type => $tabConfig) {
+ foreach ($this->getSupportedTypes() as $type => $tabConfig) {
if (!in_array($type, $disabled)) {
$tabConfig['url'] = Url::fromRequest();
$tabConfig['tagParams'] = array(
@@ -98,4 +70,44 @@ class OutputFormat implements Tabextension
$tabs->addAsDropdown($tab->getName(), $tab);
}
}
+
+ /**
+ * Return an array containing the tab definitions for all supported types
+ *
+ * Using array_keys on this array or isset allows to check whether a
+ * requested type is supported
+ *
+ * @return array
+ */
+ public function getSupportedTypes()
+ {
+ $supportedTypes = array();
+
+ if (Platform::extensionLoaded('gd')) {
+ $supportedTypes[self::TYPE_PDF] = array(
+ 'name' => 'pdf',
+ 'title' => 'PDF',
+ 'icon' => 'file-pdf',
+ 'urlParams' => array('format' => 'pdf'),
+ );
+ }
+
+ $supportedTypes[self::TYPE_CSV] = array(
+ 'name' => 'csv',
+ 'title' => 'CSV',
+ 'icon' => 'file-excel',
+ 'urlParams' => array('format' => 'csv')
+ );
+
+ if (Platform::extensionLoaded('json')) {
+ $supportedTypes[self::TYPE_JSON] = array(
+ 'name' => 'json',
+ 'title' => 'JSON',
+ 'icon' => 'img/icons/json.png',
+ 'urlParams' => array('format' => 'json')
+ );
+ }
+
+ return $supportedTypes;
+ }
}
diff --git a/library/vendor/Parsedown/LICENSE.txt b/library/vendor/Parsedown/LICENSE
similarity index 100%
rename from library/vendor/Parsedown/LICENSE.txt
rename to library/vendor/Parsedown/LICENSE
diff --git a/library/vendor/Parsedown/SOURCE b/library/vendor/Parsedown/SOURCE
index c5a2c7c28..43ee6c61c 100644
--- a/library/vendor/Parsedown/SOURCE
+++ b/library/vendor/Parsedown/SOURCE
@@ -4,3 +4,4 @@ DESTINATION=.
wget -O ${FILENAME}.tar.gz https://github.com/erusev/parsedown/archive/${RELEASE}.tar.gz
tar xfz ${FILENAME}.tar.gz -C $DESTINATION/ --strip-components 1 $FILENAME/Parsedown.php $FILENAME/LICENSE.txt
chmod 644 $DESTINATION/Parsedown.php
+mv LICENSE.txt LICENSE
diff --git a/library/vendor/dompdf/LICENSE.LGPL b/library/vendor/dompdf/LICENSE
similarity index 100%
rename from library/vendor/dompdf/LICENSE.LGPL
rename to library/vendor/dompdf/LICENSE
diff --git a/library/vendor/dompdf/SOURCE b/library/vendor/dompdf/SOURCE
index 9343b58cf..c26253e30 100644
--- a/library/vendor/dompdf/SOURCE
+++ b/library/vendor/dompdf/SOURCE
@@ -1,6 +1,7 @@
curl https://codeload.github.com/dompdf/dompdf/tar.gz/v0.6.1 -o dompdf-0.6.1.tar.gz
tar xzf dompdf-0.6.1.tar.gz --strip-components 1 dompdf-0.6.1/{include/*.php,lib,dompdf*.php,LICENSE.LGPL}
rm dompdf-0.6.1.tar.gz
+mv LICENSE.LGPL LICENSE
curl https://codeload.github.com/PhenX/php-font-lib/tar.gz/0.3.1 -o php-font-lib-0.3.1.tar.gz
mkdir lib/php-font-lib/classes
diff --git a/modules/doc/application/controllers/IcingawebController.php b/modules/doc/application/controllers/IcingawebController.php
index 5740f50a9..60c5da5ee 100644
--- a/modules/doc/application/controllers/IcingawebController.php
+++ b/modules/doc/application/controllers/IcingawebController.php
@@ -8,12 +8,36 @@ use Icinga\Module\Doc\DocController;
class Doc_IcingawebController extends DocController
{
+ /**
+ * 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
+ );
+ }
+
/**
* View the toc of Icinga Web 2's documentation
*/
public function tocAction()
{
- return $this->renderToc(Icinga::app()->getApplicationDir('/../doc'), 'Icinga Web 2', 'doc/icingaweb/chapter');
+ $this->renderToc($this->getPath(), 'Icinga Web 2', 'doc/icingaweb/chapter');
}
/**
@@ -26,12 +50,12 @@ class Doc_IcingawebController extends DocController
$chapterId = $this->getParam('chapterId');
if ($chapterId === null) {
throw new Zend_Controller_Action_Exception(
- $this->translate('Missing parameter \'chapterId\''),
+ sprintf($this->translate('Missing parameter \'%s\''), 'chapterId'),
404
);
}
- return $this->renderChapter(
- Icinga::app()->getApplicationDir('/../doc'),
+ $this->renderChapter(
+ $this->getPath(),
$chapterId,
'doc/icingaweb/toc',
'doc/icingaweb/chapter'
@@ -43,6 +67,6 @@ class Doc_IcingawebController extends DocController
*/
public function pdfAction()
{
- return $this->renderPdf(Icinga::app()->getApplicationDir('/../doc'), 'Icinga Web 2', 'doc/icingaweb/chapter');
+ $this->renderPdf($this->getPath(), 'Icinga Web 2', 'doc/icingaweb/chapter');
}
}
diff --git a/modules/doc/application/controllers/ModuleController.php b/modules/doc/application/controllers/ModuleController.php
index 1e9cf43b1..a4d14cf61 100644
--- a/modules/doc/application/controllers/ModuleController.php
+++ b/modules/doc/application/controllers/ModuleController.php
@@ -9,6 +9,40 @@ use Icinga\Module\Doc\Exception\DocException;
class Doc_ModuleController extends DocController
{
+ /**
+ * Get the path to a module documentation
+ *
+ * @param string $module The name of the module
+ * @param string $default The default path
+ * @param bool $suppressErrors Whether to not throw an exception if the module documentation is not
+ * available
+ *
+ * @return string|null Path to the documentation or null if the module documentation is not
+ * available and errors are suppressed
+ *
+ * @throws Zend_Controller_Action_Exception If the module documentation is not available and errors are not
+ * suppressed
+ */
+ protected function getPath($module, $default, $suppressErrors = false)
+ {
+ if (is_dir($default)) {
+ return $default;
+ }
+ if (($path = $this->Config()->get('documentation', 'modules')) !== null) {
+ $path = str_replace('{module}', $module, $path);
+ if (is_dir($path)) {
+ return $path;
+ }
+ }
+ if ($suppressErrors) {
+ return null;
+ }
+ throw new Zend_Controller_Action_Exception(
+ sprintf($this->translate('Documentation for module \'%s\' is not available'), $module),
+ 404
+ );
+ }
+
/**
* List modules which are enabled and having the 'doc' directory
*/
@@ -16,10 +50,10 @@ class Doc_ModuleController extends DocController
{
$moduleManager = Icinga::app()->getModuleManager();
$modules = array();
- foreach (Icinga::app()->getModuleManager()->listEnabledModules() as $enabledModule) {
- $docDir = $moduleManager->getModuleDir($enabledModule, '/doc');
- if (is_dir($docDir)) {
- $modules[] = $enabledModule;
+ foreach (Icinga::app()->getModuleManager()->listEnabledModules() as $module) {
+ $path = $this->getPath($module, $moduleManager->getModuleDir($module, '/doc'), true);
+ if ($path !== null) {
+ $modules[] = $module;
}
}
$this->view->modules = $modules;
@@ -37,7 +71,7 @@ class Doc_ModuleController extends DocController
{
if (empty($moduleName)) {
throw new Zend_Controller_Action_Exception(
- $this->translate('Missing parameter \'moduleName\''),
+ sprintf($this->translate('Missing parameter \'%s\''), 'moduleName'),
404
);
}
@@ -63,16 +97,15 @@ class Doc_ModuleController extends DocController
*/
public function tocAction()
{
- $moduleName = $this->getParam('moduleName');
- $this->assertModuleEnabled($moduleName);
- $this->view->moduleName = $moduleName;
- $moduleManager = Icinga::app()->getModuleManager();
+ $module = $this->getParam('moduleName');
+ $this->assertModuleEnabled($module);
+ $this->view->moduleName = $module;
try {
- return $this->renderToc(
- $moduleManager->getModuleDir($moduleName, '/doc'),
- $moduleName,
+ $this->renderToc(
+ $this->getPath($module, Icinga::app()->getModuleManager()->getModuleDir($module, '/doc')),
+ $module,
'doc/module/chapter',
- array('moduleName' => $moduleName)
+ array('moduleName' => $module)
);
} catch (DocException $e) {
throw new Zend_Controller_Action_Exception($e->getMessage(), 404);
@@ -88,24 +121,23 @@ class Doc_ModuleController extends DocController
*/
public function chapterAction()
{
- $moduleName = $this->getParam('moduleName');
- $this->assertModuleEnabled($moduleName);
+ $module = $this->getParam('moduleName');
+ $this->assertModuleEnabled($module);
$chapterId = $this->getParam('chapterId');
if ($chapterId === null) {
throw new Zend_Controller_Action_Exception(
- $this->translate('Missing parameter \'chapterId\''),
+ sprintf($this->translate('Missing parameter \'%s\''), 'chapterId'),
404
);
}
- $this->view->moduleName = $moduleName;
- $moduleManager = Icinga::app()->getModuleManager();
+ $this->view->moduleName = $module;
try {
- return $this->renderChapter(
- $moduleManager->getModuleDir($moduleName, '/doc'),
+ $this->renderChapter(
+ $this->getPath($module, Icinga::app()->getModuleManager()->getModuleDir($module, '/doc')),
$chapterId,
- $this->_helper->url->url(array('moduleName' => $moduleName), 'doc/module/toc'),
+ $this->_helper->url->url(array('moduleName' => $module), 'doc/module/toc'),
'doc/module/chapter',
- array('moduleName' => $moduleName)
+ array('moduleName' => $module)
);
} catch (DocException $e) {
throw new Zend_Controller_Action_Exception($e->getMessage(), 404);
@@ -119,14 +151,13 @@ class Doc_ModuleController extends DocController
*/
public function pdfAction()
{
- $moduleName = $this->getParam('moduleName');
- $this->assertModuleEnabled($moduleName);
- $moduleManager = Icinga::app()->getModuleManager();
- return $this->renderPdf(
- $moduleManager->getModuleDir($moduleName, '/doc'),
- $moduleName,
+ $module = $this->getParam('moduleName');
+ $this->assertModuleEnabled($module);
+ $this->renderPdf(
+ $this->getPath($module, Icinga::app()->getModuleManager()->getModuleDir($module, '/doc')),
+ $module,
'doc/module/chapter',
- array('moduleName' => $moduleName)
+ array('moduleName' => $module)
);
}
}
diff --git a/modules/doc/configuration.php b/modules/doc/configuration.php
index 87e5da77a..6e924e964 100644
--- a/modules/doc/configuration.php
+++ b/modules/doc/configuration.php
@@ -2,7 +2,7 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
-/* @var $this \Icinga\Application\Modules\Module */
+/** @type $this \Icinga\Application\Modules\Module */
$section = $this->menuSection($this->translate('Documentation'), array(
'title' => 'Documentation',
diff --git a/modules/doc/doc/1-module-documentation.md b/modules/doc/doc/1-module-documentation.md
new file mode 100644
index 000000000..968dd32d7
--- /dev/null
+++ b/modules/doc/doc/1-module-documentation.md
@@ -0,0 +1,59 @@
+# Writing Module Documentation
+
+
+
+Icinga Web 2 is capable of viewing your module's documentation, if the documentation is written in
+[Markdown](http://en.wikipedia.org/wiki/Markdown). Please refer to
+[Markdown Syntax Documentation](http://daringfireball.net/projects/markdown/syntax) for Markdown's formatting syntax.
+
+## Where to Put Module Documentation?
+
+By default, your module's Markdown documentation files must be placed in the `doc` directory beneath your module's root
+directory, e.g.:
+
+ example-module/doc
+
+## Chapters
+
+Each Markdown documentation file represents a chapter of your module's documentation. The first found heading inside
+each file is the chapter's title. The order of chapters is based on the case insensitive "Natural Order" of your files'
+names. Natural Order means that the file names are ordered in the way which seems natural to humans.
+It is best practice to prefix Markdown documentation file names with numbers to ensure that they appear in the correct
+order, e.g.:
+
+ 1-about.md
+ 2-installation.md
+ 3-configuration.md
+
+## Table Of Contents
+
+The table of contents for your module's documentation is auto-generated based on all found headings inside each
+Markdown documentation file.
+
+## Linking Between Headings
+
+For linking between headings, place an anchor where you want to link to, e.g.:
+
+ # Heading
+
+Now you can reference the anchor either in the same or **in another** Markdown documentation file, e.g.:
+
+ This is a link to [Heading](#heading).
+
+## Including Images
+
+Images must placed in the `img` directory beneath your module's `public` directory, e.g.:
+
+ example-module/public/img/doc
+
+Module images can be accessed using the following URL:
+
+ {baseURL}/img/{moduleName}/{file} e.g. icingaweb/img/example-module/doc/example.png
+
+Markdown's image syntax is very similar to Markdown's link syntax, but prefixed with an exclamation mark, e.g.:
+
+ 
+
+URLs to images inside your Markdown documentation files must be specified without the base URL, e.g.:
+
+ 
diff --git a/modules/doc/library/Doc/DocController.php b/modules/doc/library/Doc/DocController.php
index bc782953f..0d12f58df 100644
--- a/modules/doc/library/Doc/DocController.php
+++ b/modules/doc/library/Doc/DocController.php
@@ -28,7 +28,7 @@ class DocController extends ModuleActionController
$urlParams
);
$this->view->title = $chapterId;
- return $this->render('chapter', null, true);
+ $this->render('chapter', null, true);
}
/**
@@ -46,7 +46,7 @@ class DocController extends ModuleActionController
$name = ucfirst($name);
$this->view->docName = $name;
$this->view->title = sprintf($this->translate('%s Documentation'), $name);
- return $this->render('toc', null, true);
+ $this->render('toc', null, true);
}
/**
@@ -71,6 +71,6 @@ class DocController extends ModuleActionController
);
$this->view->docName = $name;
$this->_request->setParam('format', 'pdf');
- return $this->render('pdf', null, true);
+ $this->render('pdf', null, true);
}
}
diff --git a/modules/doc/library/Doc/DocIterator.php b/modules/doc/library/Doc/DocIterator.php
index 43a9c7727..3045b6309 100644
--- a/modules/doc/library/Doc/DocIterator.php
+++ b/modules/doc/library/Doc/DocIterator.php
@@ -9,6 +9,8 @@ use Countable;
use IteratorAggregate;
use RecursiveIteratorIterator;
use RecursiveDirectoryIterator;
+use Icinga\File\NonEmptyFileIterator;
+use Icinga\File\FileExtensionFilterIterator;
/**
* Iterator over non-empty Markdown files ordered by the case insensitive "natural order" of file names
@@ -29,12 +31,14 @@ class DocIterator implements Countable, IteratorAggregate
*/
public function __construct($path)
{
- $it = new RecursiveIteratorIterator(
+ $it = new FileExtensionFilterIterator(
new NonEmptyFileIterator(
- new MarkdownFileIterator(
- new RecursiveDirectoryIterator($path)
+ new RecursiveIteratorIterator(
+ new RecursiveDirectoryIterator($path),
+ RecursiveIteratorIterator::SELF_FIRST
)
- )
+ ),
+ 'md'
);
// Unfortunately we have no chance to sort the iterator
$fileInfo = iterator_to_array($it);
diff --git a/modules/doc/library/Doc/DocParser.php b/modules/doc/library/Doc/DocParser.php
index c63532dc1..6cfeca418 100644
--- a/modules/doc/library/Doc/DocParser.php
+++ b/modules/doc/library/Doc/DocParser.php
@@ -31,7 +31,7 @@ class DocParser
/**
* Create a new documentation parser for the given path
*
- * @param string $path Path to the documentation
+ * @param string $path Path to the documentation
*
* @throws DocException If the documentation directory does not exist
* @throws NotReadableError If the documentation directory is not readable
diff --git a/modules/doc/library/Doc/MarkdownFileIterator.php b/modules/doc/library/Doc/MarkdownFileIterator.php
deleted file mode 100644
index 6f317ce6a..000000000
--- a/modules/doc/library/Doc/MarkdownFileIterator.php
+++ /dev/null
@@ -1,31 +0,0 @@
-getInnerIterator()->current();
- /* @var $current \SplFileInfo */
- if (! $current->isFile()) {
- return false;
- }
- $filename = $current->getFilename();
- $sfx = substr($filename, -3);
- return $sfx === false ? false : strtolower($sfx) === '.md';
- }
-}
diff --git a/modules/doc/library/Doc/NonEmptyFileIterator.php b/modules/doc/library/Doc/NonEmptyFileIterator.php
deleted file mode 100644
index 71bf5acfa..000000000
--- a/modules/doc/library/Doc/NonEmptyFileIterator.php
+++ /dev/null
@@ -1,31 +0,0 @@
-getInnerIterator()->current();
- /* @var $current \SplFileInfo */
- if (! $current->isFile()
- || $current->getSize() === 0
- ) {
- return false;
- }
- return true;
- }
-}
diff --git a/modules/doc/module.info b/modules/doc/module.info
index 2826d72de..1689fd940 100644
--- a/modules/doc/module.info
+++ b/modules/doc/module.info
@@ -1,4 +1,4 @@
Module: doc
-Version: 2.0.0~alpha4
+Version: 2.0.0
Description: Documentation module
Extracts, shows and exports documentation for Icinga Web 2 and it's modules.
diff --git a/modules/doc/public/img/doc/markdown.png b/modules/doc/public/img/doc/markdown.png
new file mode 100644
index 000000000..93e729bc7
Binary files /dev/null and b/modules/doc/public/img/doc/markdown.png differ
diff --git a/modules/doc/run.php b/modules/doc/run.php
index 7392e4c22..31aff8ff0 100644
--- a/modules/doc/run.php
+++ b/modules/doc/run.php
@@ -47,4 +47,3 @@ $this->addRoute('doc/module/chapter', $docModuleChapter);
$this->addRoute('doc/icingaweb/chapter', $docIcingaWebChapter);
$this->addRoute('doc/module/toc', $docModuleToc);
$this->addRoute('doc/module/pdf', $docModulePdf);
-
diff --git a/modules/monitoring/application/controllers/HostsController.php b/modules/monitoring/application/controllers/HostsController.php
index 4944cc237..09957a4a0 100644
--- a/modules/monitoring/application/controllers/HostsController.php
+++ b/modules/monitoring/application/controllers/HostsController.php
@@ -72,8 +72,10 @@ class Monitoring_HostsController extends Controller
'host_obsessing'*/
));
$unhandledObjects = array();
+ $unhandledFilterExpressions = array();
$acknowledgedObjects = array();
$objectsInDowntime = array();
+ $downtimeFilterExpressions = array();
$hostStates = array(
Host::getStateText(Host::STATE_UP) => 0,
Host::getStateText(Host::STATE_DOWN) => 0,
@@ -81,15 +83,17 @@ class Monitoring_HostsController extends Controller
Host::getStateText(Host::STATE_PENDING) => 0,
);
foreach ($this->hostList as $host) {
- /** @var Service $host */
+ /** @var Host $host */
if ((bool) $host->problem === true && (bool) $host->handled === false) {
$unhandledObjects[] = $host;
+ $unhandledFilterExpressions[] = Filter::where('host', $host->getName());
}
if ((bool) $host->acknowledged === true) {
$acknowledgedObjects[] = $host;
}
if ((bool) $host->in_downtime === true) {
$objectsInDowntime[] = $host;
+ $downtimeFilterExpressions[] = Filter::where('downtime_host', $host->getName());
}
++$hostStates[$host::getStateText($host->state)];
}
@@ -108,16 +112,15 @@ class Monitoring_HostsController extends Controller
$this->view->hostStates = $hostStates;
$this->view->objects = $this->hostList;
$this->view->unhandledObjects = $unhandledObjects;
- $this->view->acknowledgeUnhandledLink = Url::fromRequest()
- ->setPath('monitoring/hosts/acknowledge-problem')
- ->addParams(array('host_problem' => 1, 'host_handled' => 0));
- $this->view->downtimeUnhandledLink = Url::fromRequest()
- ->setPath('monitoring/hosts/schedule-downtime')
- ->addParams(array('host_problem' => 1, 'host_handled' => 0));
+ $unhandledFilterQueryString = Filter::matchAny($unhandledFilterExpressions)->toQueryString();
+ $this->view->acknowledgeUnhandledLink = Url::fromPath('monitoring/hosts/acknowledge-problem')
+ ->setQueryString($unhandledFilterQueryString);
+ $this->view->downtimeUnhandledLink = Url::fromPath('monitoring/hosts/schedule-downtime')
+ ->setQueryString($unhandledFilterQueryString);
$this->view->acknowledgedObjects = $acknowledgedObjects;
$this->view->objectsInDowntime = $objectsInDowntime;
- $this->view->inDowntimeLink = Url::fromRequest()
- ->setPath('monitoring/list/downtimes');
+ $this->view->inDowntimeLink = Url::fromPath('monitoring/list/downtimes')
+ ->setQueryString(Filter::matchAny($downtimeFilterExpressions)->toQueryString());
$this->view->havingCommentsLink = Url::fromRequest()
->setPath('monitoring/list/comments');
$this->view->hostStatesPieChart = $this->createPieChart(
@@ -131,9 +134,6 @@ class Monitoring_HostsController extends Controller
{
$chart = new InlinePie(array_values($states), $title, $colors);
return $chart
- ->setLabel(array_map('strtoupper', array_keys($states)))
- ->setHeight(100)
- ->setWidth(100)
->setTitle($title);
}
diff --git a/modules/monitoring/application/controllers/MultiController.php b/modules/monitoring/application/controllers/MultiController.php
index 52d927ffb..6deff2fc3 100644
--- a/modules/monitoring/application/controllers/MultiController.php
+++ b/modules/monitoring/application/controllers/MultiController.php
@@ -221,7 +221,7 @@ class Monitoring_MultiController extends Controller
private function createPie($states, $colors, $title)
{
$chart = new InlinePie(array_values($states), $title, $colors);
- $chart->setLabel(array_keys($states))->setHeight(100)->setWidth(100);
+ $chart->setLabel(array_keys($states))->setSize(100);
$chart->setTitle($title);
return $chart;
}
diff --git a/modules/monitoring/application/controllers/ServicesController.php b/modules/monitoring/application/controllers/ServicesController.php
index cdf86f460..4d08622c2 100644
--- a/modules/monitoring/application/controllers/ServicesController.php
+++ b/modules/monitoring/application/controllers/ServicesController.php
@@ -74,8 +74,10 @@ class Monitoring_ServicesController extends Controller
'service_obsessing'*/
));
$unhandledObjects = array();
+ $unhandledFilterExpressions = array();
$acknowledgedObjects = array();
$objectsInDowntime = array();
+ $downtimeFilterExpressions = array();
$serviceStates = array(
Service::getStateText(Service::STATE_OK) => 0,
Service::getStateText(Service::STATE_WARNING) => 0,
@@ -94,12 +96,20 @@ class Monitoring_ServicesController extends Controller
/** @var Service $service */
if ((bool) $service->problem === true && (bool) $service->handled === false) {
$unhandledObjects[] = $service;
+ $unhandledFilterExpressions[] = Filter::matchAll(
+ Filter::where('host', $service->getHost()->getName()),
+ Filter::where('service', $service->getName())
+ );
}
if ((bool) $service->acknowledged === true) {
$acknowledgedObjects[] = $service;
}
if ((bool) $service->in_downtime === true) {
$objectsInDowntime[] = $service;
+ $downtimeFilterExpressions[] = Filter::matchAll(
+ Filter::where('downtime_host', $service->getHost()->getName()),
+ Filter::where('downtime_service', $service->getName())
+ );
}
++$serviceStates[$service::getStateText($service->state)];
if (! isset($knownHostStates[$service->getHost()->getName()])) {
@@ -125,16 +135,15 @@ class Monitoring_ServicesController extends Controller
$this->view->serviceStates = $serviceStates;
$this->view->objects = $this->serviceList;
$this->view->unhandledObjects = $unhandledObjects;
- $this->view->acknowledgeUnhandledLink = Url::fromRequest()
- ->setPath('monitoring/services/acknowledge-problem')
- ->addParams(array('service_problem' => 1, 'service_handled' => 0));
- $this->view->downtimeUnhandledLink = Url::fromRequest()
- ->setPath('monitoring/services/schedule-downtime')
- ->addParams(array('service_problem' => 1, 'service_handled' => 0));
+ $unhandledFilterQueryString = Filter::matchAny($unhandledFilterExpressions)->toQueryString();
+ $this->view->acknowledgeUnhandledLink = Url::fromPath('monitoring/services/acknowledge-problem')
+ ->setQueryString($unhandledFilterQueryString);
+ $this->view->downtimeUnhandledLink = Url::fromPath('monitoring/services/schedule-downtime')
+ ->setQueryString($unhandledFilterQueryString);
$this->view->acknowledgedObjects = $acknowledgedObjects;
$this->view->objectsInDowntime = $objectsInDowntime;
- $this->view->inDowntimeLink = Url::fromRequest()
- ->setPath('monitoring/list/downtimes');
+ $this->view->inDowntimeLink = Url::fromPath('monitoring/list/downtimes')
+ ->setQueryString(Filter::matchAny($downtimeFilterExpressions)->toQueryString());
$this->view->havingCommentsLink = Url::fromRequest()
->setPath('monitoring/list/comments');
$this->view->serviceStatesPieChart = $this->createPieChart(
@@ -153,10 +162,10 @@ class Monitoring_ServicesController extends Controller
{
$chart = new InlinePie(array_values($states), $title, $colors);
return $chart
- ->setLabel(array_map('strtoupper', array_keys($states)))
- ->setHeight(100)
- ->setWidth(100)
- ->setTitle($title);
+ // ->setLabel(array_map('strtoupper', array_keys($states)))
+ ->setSize(50)
+ ->setTitle($title)
+ ->setSparklineClass('sparkline-multi');
}
/**
diff --git a/modules/monitoring/application/controllers/ShowController.php b/modules/monitoring/application/controllers/ShowController.php
index efec6665a..ba865deaa 100644
--- a/modules/monitoring/application/controllers/ShowController.php
+++ b/modules/monitoring/application/controllers/ShowController.php
@@ -73,9 +73,8 @@ class Monitoring_ShowController extends Controller
public function historyAction()
{
$this->getTabs()->activate('history');
- //$this->view->object->populate();
$this->view->object->fetchEventHistory();
- $this->view->history = $this->view->object->eventhistory->paginate($this->params->get('limit', 50));
+ $this->view->history = $this->view->object->eventhistory->getQuery()->paginate($this->params->get('limit', 50));
$this->handleFormatRequest($this->view->object->eventhistory);
$this->fetchHostStats();
}
diff --git a/modules/monitoring/application/forms/Command/Object/AcknowledgeProblemCommandForm.php b/modules/monitoring/application/forms/Command/Object/AcknowledgeProblemCommandForm.php
index 3456e1bfb..25ac76c25 100644
--- a/modules/monitoring/application/forms/Command/Object/AcknowledgeProblemCommandForm.php
+++ b/modules/monitoring/application/forms/Command/Object/AcknowledgeProblemCommandForm.php
@@ -104,7 +104,7 @@ class AcknowledgeProblemCommandForm extends ObjectsCommandForm
array(
'decorators' => array(
'FormElements',
- array('HtmlTag', array('tag' => 'div', 'class' => 'control-group'))
+ array('HtmlTag', array('tag' => 'div'))
)
)
);
diff --git a/modules/monitoring/application/forms/Command/Object/ScheduleServiceDowntimeCommandForm.php b/modules/monitoring/application/forms/Command/Object/ScheduleServiceDowntimeCommandForm.php
index 9fd86a82b..9961d4b65 100644
--- a/modules/monitoring/application/forms/Command/Object/ScheduleServiceDowntimeCommandForm.php
+++ b/modules/monitoring/application/forms/Command/Object/ScheduleServiceDowntimeCommandForm.php
@@ -130,7 +130,7 @@ class ScheduleServiceDowntimeCommandForm extends ObjectsCommandForm
array(
'decorators' => array(
'FormElements',
- array('HtmlTag', array('tag' => 'div', 'class' => 'control-group'))
+ array('HtmlTag', array('tag' => 'div'))
)
)
);
@@ -169,7 +169,7 @@ class ScheduleServiceDowntimeCommandForm extends ObjectsCommandForm
),
'decorators' => array(
'FormElements',
- array('HtmlTag', array('tag' => 'div', 'class' => 'control-group')),
+ array('HtmlTag', array('tag' => 'div')),
array(
'Description',
array('tag' => 'span', 'class' => 'description', 'placement' => 'prepend')
diff --git a/modules/monitoring/application/forms/Config/BackendConfigForm.php b/modules/monitoring/application/forms/Config/BackendConfigForm.php
index 4b1aa65b6..ca45c068b 100644
--- a/modules/monitoring/application/forms/Config/BackendConfigForm.php
+++ b/modules/monitoring/application/forms/Config/BackendConfigForm.php
@@ -5,10 +5,10 @@
namespace Icinga\Module\Monitoring\Forms\Config;
use InvalidArgumentException;
-use Icinga\Web\Notification;
-use Icinga\Forms\ConfigForm;
use Icinga\Application\Config;
use Icinga\Exception\ConfigurationError;
+use Icinga\Forms\ConfigForm;
+use Icinga\Web\Notification;
/**
* Form class for creating/modifying monitoring backends
@@ -18,7 +18,7 @@ class BackendConfigForm extends ConfigForm
/**
* The available monitoring backend resources split by type
*
- * @var array
+ * @type array
*/
protected $resources;
@@ -28,15 +28,15 @@ class BackendConfigForm extends ConfigForm
public function init()
{
$this->setName('form_config_monitoring_backends');
- $this->setSubmitLabel(mt('monitoring', 'Save Changes'));
+ $this->setSubmitLabel($this->translate('Save Changes'));
}
/**
* Set the resource configuration to use
*
- * @param Config $resources The resource configuration
+ * @param Config $resourceConfig The resource configuration
*
- * @return self
+ * @return $this
*
* @throws ConfigurationError In case there are no valid monitoring backend resources
*/
@@ -50,7 +50,7 @@ class BackendConfigForm extends ConfigForm
}
if (empty($resources)) {
- throw new ConfigurationError(mt('monitoring', 'Could not find any valid monitoring backend resources'));
+ throw new ConfigurationError($this->translate('Could not find any valid monitoring backend resources'));
}
$this->resources = $resources;
@@ -64,7 +64,7 @@ class BackendConfigForm extends ConfigForm
*
* @param array $values The values to extend the configuration with
*
- * @return self
+ * @return $this
*
* @throws InvalidArgumentException In case the backend does already exist
*/
@@ -72,9 +72,9 @@ class BackendConfigForm extends ConfigForm
{
$name = isset($values['name']) ? $values['name'] : '';
if (! $name) {
- throw new InvalidArgumentException(mt('monitoring', 'Monitoring backend name missing'));
+ throw new InvalidArgumentException($this->translate('Monitoring backend name missing'));
} elseif ($this->config->hasSection($name)) {
- throw new InvalidArgumentException(mt('monitoring', 'Monitoring backend already exists'));
+ throw new InvalidArgumentException($this->translate('Monitoring backend already exists'));
}
unset($values['name']);
@@ -95,11 +95,11 @@ class BackendConfigForm extends ConfigForm
public function edit($name, array $values)
{
if (! $name) {
- throw new InvalidArgumentException(mt('monitoring', 'Old monitoring backend name missing'));
+ throw new InvalidArgumentException($this->translate('Old monitoring backend name missing'));
} elseif (! ($newName = isset($values['name']) ? $values['name'] : '')) {
- throw new InvalidArgumentException(mt('monitoring', 'New monitoring backend name missing'));
+ throw new InvalidArgumentException($this->translate('New monitoring backend name missing'));
} elseif (! $this->config->hasSection($name)) {
- throw new InvalidArgumentException(mt('monitoring', 'Unknown monitoring backend provided'));
+ throw new InvalidArgumentException($this->translate('Unknown monitoring backend provided'));
}
unset($values['name']);
@@ -119,9 +119,9 @@ class BackendConfigForm extends ConfigForm
public function remove($name)
{
if (! $name) {
- throw new InvalidArgumentException(mt('monitoring', 'Monitoring backend name missing'));
+ throw new InvalidArgumentException($this->translate('Monitoring backend name missing'));
} elseif (! $this->config->hasSection($name)) {
- throw new InvalidArgumentException(mt('monitoring', 'Unknown monitoring backend provided'));
+ throw new InvalidArgumentException($this->translate('Unknown monitoring backend provided'));
}
$backendConfig = $this->config->getSection($name);
@@ -131,23 +131,21 @@ class BackendConfigForm extends ConfigForm
/**
* Add or edit a monitoring backend and save the configuration
- *
- * @see Form::onSuccess()
*/
public function onSuccess()
{
$monitoringBackend = $this->request->getQuery('backend');
try {
- if ($monitoringBackend === null) { // create new backend
+ if ($monitoringBackend === null) { // Create new backend
$this->add($this->getValues());
- $message = mt('monitoring', 'Monitoring backend "%s" has been successfully created');
- } else { // edit existing backend
+ $message = $this->translate('Monitoring backend "%s" has been successfully created');
+ } else { // Edit existing backend
$this->edit($monitoringBackend, $this->getValues());
- $message = mt('monitoring', 'Monitoring backend "%s" has been successfully changed');
+ $message = $this->translate('Monitoring backend "%s" has been successfully changed');
}
} catch (InvalidArgumentException $e) {
Notification::error($e->getMessage());
- return;
+ return null;
}
if ($this->save()) {
@@ -160,18 +158,16 @@ class BackendConfigForm extends ConfigForm
/**
* Populate the form in case a monitoring backend is being edited
*
- * @see Form::onRequest()
- *
- * @throws ConfigurationError In case the backend name is missing in the request or is invalid
+ * @throws ConfigurationError In case the backend name is missing in the request or is invalid
*/
public function onRequest()
{
$monitoringBackend = $this->request->getQuery('backend');
if ($monitoringBackend !== null) {
if ($monitoringBackend === '') {
- throw new ConfigurationError(mt('monitoring', 'Monitoring backend name missing'));
+ throw new ConfigurationError($this->translate('Monitoring backend name missing'));
} elseif (! $this->config->hasSection($monitoringBackend)) {
- throw new ConfigurationError(mt('monitoring', 'Unknown monitoring backend provided'));
+ throw new ConfigurationError($this->translate('Unknown monitoring backend provided'));
}
$backendConfig = $this->config->getSection($monitoringBackend)->toArray();
@@ -181,7 +177,8 @@ class BackendConfigForm extends ConfigForm
}
/**
- * @see Form::createElements()
+ * (non-PHPDoc)
+ * @see Form::createElements() For the method documentation.
*/
public function createElements(array $formData)
{
@@ -200,7 +197,7 @@ class BackendConfigForm extends ConfigForm
'disabled',
array(
'required' => true,
- 'label' => mt('monitoring', 'Disable This Backend')
+ 'label' => $this->translate('Disable This Backend')
)
);
$this->addElement(
@@ -208,8 +205,8 @@ class BackendConfigForm extends ConfigForm
'name',
array(
'required' => true,
- 'label' => mt('monitoring', 'Backend Name'),
- 'description' => mt('monitoring', 'The identifier of this backend')
+ 'label' => $this->translate('Backend Name'),
+ 'description' => $this->translate('The identifier of this backend')
)
);
$this->addElement(
@@ -218,8 +215,8 @@ class BackendConfigForm extends ConfigForm
array(
'required' => true,
'autosubmit' => true,
- 'label' => mt('monitoring', 'Backend Type'),
- 'description' => mt('monitoring', 'The data source used for retrieving monitoring information'),
+ 'label' => $this->translate('Backend Type'),
+ 'description' => $this->translate('The data source used for retrieving monitoring information'),
'multiOptions' => $resourceTypes,
'value' => $resourceType
)
@@ -230,8 +227,8 @@ class BackendConfigForm extends ConfigForm
'resource',
array(
'required' => true,
- 'label' => mt('monitoring', 'Resource'),
- 'description' => mt('monitoring', 'The resource to use'),
+ 'label' => $this->translate('Resource'),
+ 'description' => $this->translate('The resource to use'),
'multiOptions' => $this->resources[$resourceType],
'autosubmit' => true
)
@@ -253,8 +250,8 @@ class BackendConfigForm extends ConfigForm
array(
'value' => sprintf(
'%s',
- $this->getView()->href('/icingaweb/config/editresource', array('resource' => $resourceName)),
- mt('monitoring', 'Show resource configuration')
+ $this->getView()->url('config/editresource', array('resource' => $resourceName)),
+ $this->translate('Show resource configuration')
),
'escape' => false
)
diff --git a/modules/monitoring/application/views/helpers/Perfdata.php b/modules/monitoring/application/views/helpers/Perfdata.php
index eb649e77d..47c34d156 100644
--- a/modules/monitoring/application/views/helpers/Perfdata.php
+++ b/modules/monitoring/application/views/helpers/Perfdata.php
@@ -9,33 +9,36 @@ use Icinga\Module\Monitoring\Plugin\PerfdataSet;
class Zend_View_Helper_Perfdata extends Zend_View_Helper_Abstract
{
- public function perfdata($perfdataStr, $compact = false)
+
+ /**
+ * Display the given perfdata string to the user
+ *
+ * @param $perfdataStr The perfdata string
+ * @param bool $compact Whether to display the perfdata in compact mode
+ * @param $color The color indicating the perfdata state
+ *
+ * @return string
+ */
+ public function perfdata($perfdataStr, $compact = false, $color = Perfdata::PERFDATA_DEFAULT)
{
- $pset = PerfdataSet::fromString($perfdataStr)->asArray();
- $onlyPieChartData = array_filter($pset, function ($e) { return $e->getPercentage() > 0; });
- if ($compact) {
- $onlyPieChartData = array_slice($onlyPieChartData, 0, 5);
- } else {
- $nonPieChartData = array_filter($pset, function ($e) { return $e->getPercentage() == 0; });
- }
+ $pieChartData = PerfdataSet::fromString($perfdataStr)->asArray();
$result = '';
$table = array();
- foreach ($onlyPieChartData as $perfdata) {
- $pieChart = $this->createInlinePie($perfdata);
- if ($compact) {
- $result .= $pieChart->render();
- } else {
- if (! $perfdata->isPercentage()) {
- // TODO: Should we trust sprintf-style placeholders in perfdata titles?
- $pieChart->setTooltipFormat('{{label}}: {{formatted}} ({{percent}}%)');
+ foreach ($pieChartData as $perfdata) {
+ if ($perfdata->isVisualizable()) {
+ $pieChart = $perfdata->asInlinePie($color);
+ if ($compact) {
+ $result .= $pieChart->render();
+ } else {
+ $table[] = '' . $pieChart->render()
+ . htmlspecialchars($perfdata->getLabel())
+ . ' '
+ . htmlspecialchars($this->formatPerfdataValue($perfdata)) .
+ ' ';
}
- // $pieChart->setStyle('margin: 0.2em 0.5em 0.2em 0.5em;');
- $table[] = '' . $pieChart->render()
- . htmlspecialchars($perfdata->getLabel())
- . ' '
- . htmlspecialchars($this->formatPerfdataValue($perfdata)) .
- ' ';
+ } else {
+ $table[] = (string)$perfdata;
}
}
@@ -43,32 +46,10 @@ class Zend_View_Helper_Perfdata extends Zend_View_Helper_Abstract
return $result;
} else {
$pieCharts = empty($table) ? '' : '' . implode("\n", $table) . '
';
- return $pieCharts . "\n" . implode("
\n", $nonPieChartData);
+ return $pieCharts;
}
}
- protected function calculatePieChartData(Perfdata $perfdata)
- {
- $rawValue = $perfdata->getValue();
- $minValue = $perfdata->getMinimumValue() !== null ? $perfdata->getMinimumValue() : 0;
- $maxValue = $perfdata->getMaximumValue();
- $usedValue = ($rawValue - $minValue);
- $unusedValue = ($maxValue - $minValue) - $usedValue;
-
- $gray = $unusedValue;
- $green = $orange = $red = 0;
- // TODO(#6122): Add proper treshold parsing.
- if ($perfdata->getCriticalThreshold() && $perfdata->getValue() > $perfdata->getCriticalThreshold()) {
- $red = $usedValue;
- } elseif ($perfdata->getWarningThreshold() && $perfdata->getValue() > $perfdata->getWarningThreshold()) {
- $orange = $usedValue;
- } else {
- $green = $usedValue;
- }
-
- return array($green, $orange, $red, $gray);
- }
-
protected function formatPerfdataValue(Perfdata $perfdata)
{
if ($perfdata->isBytes()) {
@@ -82,24 +63,4 @@ class Zend_View_Helper_Perfdata extends Zend_View_Helper_Abstract
return $perfdata->getValue();
}
- protected function createInlinePie(Perfdata $perfdata)
- {
- $pieChart = new InlinePie($this->calculatePieChartData($perfdata), $perfdata->getLabel());
- $pieChart->setLabel(htmlspecialchars($perfdata->getLabel()));
- $pieChart->setHideEmptyLabel();
-
- //$pieChart->setHeight(32)->setWidth(32);
- if ($perfdata->isBytes()) {
- $pieChart->setTooltipFormat('{{label}}: {{formatted}} ({{percent}}%)');
- $pieChart->setNumberFormat(InlinePie::NUMBER_FORMAT_BYTES);
- } else if ($perfdata->isSeconds()) {
- $pieChart->setTooltipFormat('{{label}}: {{formatted}} ({{percent}}%)');
- $pieChart->setNumberFormat(InlinePie::NUMBER_FORMAT_TIME);
- } else {
- $pieChart->setTooltipFormat('{{label}}: {{formatted}}%');
- $pieChart->setNumberFormat(InlinePie::NUMBER_FORMAT_RATIO);
- $pieChart->setHideEmptyLabel();
- }
- return $pieChart;
- }
}
diff --git a/modules/monitoring/application/views/scripts/list/downtimes.phtml b/modules/monitoring/application/views/scripts/list/downtimes.phtml
index 37b34fe5e..8a8e5576c 100644
--- a/modules/monitoring/application/views/scripts/list/downtimes.phtml
+++ b/modules/monitoring/application/views/scripts/list/downtimes.phtml
@@ -53,7 +53,7 @@ use Icinga\Module\Monitoring\Object\Service;
= mt('setup', 'In case the IcingaCLI is missing you can create the token manually:'); ?>
= sprintf(
mt('setup', 'Please see the %s for an extensive description on how to access and use this wizard.'),
diff --git a/modules/setup/library/Setup/Web/Form/Validator/TokenValidator.php b/modules/setup/library/Setup/Web/Form/Validator/TokenValidator.php
index 7dc2ea2f9..fa858f531 100644
--- a/modules/setup/library/Setup/Web/Form/Validator/TokenValidator.php
+++ b/modules/setup/library/Setup/Web/Form/Validator/TokenValidator.php
@@ -38,10 +38,6 @@ class TokenValidator extends Zend_Validate_Abstract
mt('setup', 'Cannot validate token, file "%s" is empty. Please define a token.'),
$tokenPath
),
- 'TOKEN_FILE_PUBLIC' => sprintf(
- mt('setup', 'Cannot validate token, file "%s" must only be accessible by the webserver\'s user.'),
- $tokenPath
- ),
'TOKEN_INVALID' => mt('setup', 'Invalid token supplied.')
);
}
@@ -56,12 +52,6 @@ class TokenValidator extends Zend_Validate_Abstract
*/
public function isValid($value, $context = null)
{
- $tokenStats = @stat($this->tokenPath);
- if (($tokenStats['mode'] & 4) === 4) {
- $this->_error('TOKEN_FILE_PUBLIC');
- return false;
- }
-
try {
$file = new File($this->tokenPath);
$expectedToken = trim($file->fgets());
diff --git a/modules/setup/library/Setup/WebWizard.php b/modules/setup/library/Setup/WebWizard.php
index 53a6bb8a8..102c2c6a0 100644
--- a/modules/setup/library/Setup/WebWizard.php
+++ b/modules/setup/library/Setup/WebWizard.php
@@ -9,6 +9,7 @@ use Icinga\Web\Form;
use Icinga\Web\Wizard;
use Icinga\Web\Request;
use Icinga\Application\Config;
+use Icinga\Application\Icinga;
use Icinga\Application\Platform;
use Icinga\Module\Setup\Forms\ModulePage;
use Icinga\Module\Setup\Forms\WelcomePage;
@@ -343,7 +344,7 @@ class WebWizard extends Wizard implements SetupWizard
);
}
- $configDir = $this->getConfigDir();
+ $configDir = Icinga::app()->getConfigDir();
$setup->addStep(
new MakeDirStep(
array(
@@ -351,7 +352,7 @@ class WebWizard extends Wizard implements SetupWizard
$configDir . '/preferences',
$configDir . '/enabledModules'
),
- 0775
+ 2770
)
);
@@ -461,8 +462,8 @@ class WebWizard extends Wizard implements SetupWizard
mt('setup', 'PHP Module: GD'),
mt(
'setup',
- 'In case you want icons being exported to PDF as'
- . ' well, you\'ll need the GD extension for PHP.'
+ 'In case you want views being exported to PDF,'
+ . ' you\'ll need the GD extension for PHP.'
),
Platform::extensionLoaded('gd'),
Platform::extensionLoaded('gd') ? mt('setup', 'The PHP module GD is available') : (
@@ -528,12 +529,12 @@ class WebWizard extends Wizard implements SetupWizard
)
);
- $configDir = $this->getConfigDir();
+ $configDir = Icinga::app()->getConfigDir();
$requirements->addMandatory(
mt('setup', 'Writable Config Directory'),
mt(
'setup',
- 'The Icinga Web 2 configuration directory defaults to "/etc/icingaweb", if' .
+ 'The Icinga Web 2 configuration directory defaults to "/etc/icingaweb2", if' .
' not explicitly set in the environment variable "ICINGAWEB_CONFIGDIR".'
),
is_writable($configDir),
@@ -551,21 +552,4 @@ class WebWizard extends Wizard implements SetupWizard
return $requirements;
}
-
- /**
- * Return the configuration directory of Icinga Web 2
- *
- * @return string
- */
- protected function getConfigDir()
- {
- if (array_key_exists('ICINGAWEB_CONFIGDIR', $_SERVER)) {
- $configDir = $_SERVER['ICINGAWEB_CONFIGDIR'];
- } else {
- $configDir = '/etc/icingaweb';
- }
-
- $canonical = realpath($configDir);
- return $canonical ? $canonical : $configDir;
- }
}
diff --git a/modules/translation/library/Translation/Util/GettextTranslationHelper.php b/modules/translation/library/Translation/Util/GettextTranslationHelper.php
index 0d5a950e1..5702def85 100644
--- a/modules/translation/library/Translation/Util/GettextTranslationHelper.php
+++ b/modules/translation/library/Translation/Util/GettextTranslationHelper.php
@@ -101,7 +101,7 @@ class GettextTranslationHelper
*/
public function __construct(ApplicationBootstrap $bootstrap, $locale)
{
- $this->moduleMgr = $bootstrap->getModuleManager()->loadCoreModules()->loadEnabledModules();
+ $this->moduleMgr = $bootstrap->getModuleManager()->loadEnabledModules();
$this->appDir = $bootstrap->getApplicationDir();
$this->locale = $locale;
}
diff --git a/packages/files/apache/icingaweb.conf b/packages/files/apache/icingaweb2.conf
similarity index 91%
rename from packages/files/apache/icingaweb.conf
rename to packages/files/apache/icingaweb2.conf
index 2c52b73e3..6bf0b7a66 100644
--- a/packages/files/apache/icingaweb.conf
+++ b/packages/files/apache/icingaweb2.conf
@@ -1,4 +1,4 @@
-Alias /icingaweb "/usr/share/icingaweb2/public"
+Alias /icingaweb2 "/usr/share/icingaweb2/public"