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 = '

' . mt('monitoring', 'Monitoring Backend', 'setup.page.title') . '

'; $backendDescription = '

' . 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'] ) . '

'; if ($this->data['resourceConfig']['type'] === 'db') { $resourceTitle = '

' . mt('monitoring', 'Database Resource') . '

'; $resourceHtml = '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '
' . 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'])) . '
'; } else { // $this->data['resourceConfig']['type'] === 'livestatus' $resourceTitle = '

' . mt('monitoring', 'Livestatus Resource') . '

'; $resourceHtml = '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '' . '
' . t('Resource Name') . '' . $this->data['resourceConfig']['name'] . '
' . t('Socket') . '' . $this->data['resourceConfig']['socket'] . '
'; } return $pageTitle . '
' . $backendDescription . $resourceTitle . $resourceHtml . '
'; } public function getReport() { $report = ''; if ($this->backendIniError === false) { $message = mt('monitoring', 'Monitoring backend configuration has been successfully written to: %s'); $report .= '

' . sprintf($message, Config::resolvePath('modules/monitoring/backends.ini')) . '

'; } elseif ($this->backendIniError !== null) { $message = mt( 'monitoring', 'Monitoring backend configuration could not be written to: %s; An error occured:' ); $report .= '

' . sprintf( $message, Config::resolvePath('modules/monitoring/backends.ini') ) . '

' . $this->backendIniError->getMessage() . '

'; } if ($this->resourcesIniError === false) { $message = mt('monitoring', 'Resource configuration has been successfully updated: %s'); $report .= '

' . sprintf($message, Config::resolvePath('resources.ini')) . '

'; } elseif ($this->resourcesIniError !== null) { $message = mt('monitoring', 'Resource configuration could not be udpated: %s; An error occured:'); $report .= '

' . sprintf($message, Config::resolvePath('resources.ini')) . '

' . '

' . $this->resourcesIniError->getMessage() . '

'; } return $report; } }