data = $data; } public function apply() { $success = $this->createBackendsIni(); $success &= $this->createResourcesIni(); return $success; } protected function createBackendsIni() { $config = array(); $config[$this->data['backendConfig']['name']] = array( 'type' => $this->data['backendConfig']['type'], 'resource' => $this->data['resourceConfig']['name'] ); try { Config::fromArray($config) ->setConfigFile(Config::resolvePath('modules/monitoring/backends.ini')) ->saveIni(); } catch (Exception $e) { $this->backendIniError = $e; return false; } $this->backendIniError = false; return true; } protected function createResourcesIni() { $resourceConfig = $this->data['resourceConfig']; $resourceName = $resourceConfig['name']; unset($resourceConfig['name']); try { $config = Config::app('resources', true); $config->setSection($resourceName, $resourceConfig); $config->saveIni(); } catch (Exception $e) { $this->resourcesIniError = $e; return false; } $this->resourcesIniError = false; return true; } public function getSummary() { $pageTitle = '
' . sprintf( mt( 'monitoring', 'Icinga Web 2 will retrieve information from your monitoring environment' . ' using a backend called "%s" and the specified resource below:' ), $this->data['backendConfig']['name'] ) . '
'; $resourceTitle = null; $resourceHtml = null; if ($this->data['resourceConfig']['type'] === 'db') { $resourceTitle = '' . t('Resource Name') . ' | ' . '' . $this->data['resourceConfig']['name'] . ' | ' . '
' . t('Database Type') . ' | ' . '' . $this->data['resourceConfig']['db'] . ' | ' . '
' . t('Host') . ' | ' . '' . $this->data['resourceConfig']['host'] . ' | ' . '
' . t('Port') . ' | ' . '' . $this->data['resourceConfig']['port'] . ' | ' . '
' . t('Database Name') . ' | ' . '' . $this->data['resourceConfig']['dbname'] . ' | ' . '
' . t('Username') . ' | ' . '' . $this->data['resourceConfig']['username'] . ' | ' . '
' . t('Password') . ' | ' . '' . str_repeat('*', strlen($this->data['resourceConfig']['password'])) . ' | ' . '
' . t('SSL Do Not Verify Server Certificate') . ' | ' . '' . $this->data['resourceConfig']['ssl_do_not_verify_server_cert'] . ' | ' . '
' . t('SSL Key') . ' | ' . '' . $this->data['resourceConfig']['ssl_key'] . ' | ' . '
' . t('SSL Cert') . ' | ' . '' . $this->data['resourceConfig']['ssl_cert'] . ' | ' . '
' . t('CA') . ' | ' . '' . $this->data['resourceConfig']['ssl_ca'] . ' | ' . '
' . t('CA Path') . ' | ' . '' . $this->data['resourceConfig']['ssl_capath'] . ' | ' . '
' . t('Cipher') . ' | ' . '' . $this->data['resourceConfig']['ssl_cipher'] . ' | ' . '