From d7ed6bd249eaf7eb400f2d9a7c861d87ebae7e85 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 25 Jul 2014 16:00:38 +0200 Subject: [PATCH] Adjust removebackend-action to suit the new backend form interface Drops additionally the ConfirmRemovalForm of the monitoring module as there is already one in icingaweb2's form-set. refs #5525 --- .../controllers/ConfigController.php | 27 ++++---- .../forms/Config/ConfirmRemovalForm.php | 68 ------------------- .../views/scripts/config/removebackend.phtml | 10 +-- 3 files changed, 14 insertions(+), 91 deletions(-) delete mode 100644 modules/monitoring/application/forms/Config/ConfirmRemovalForm.php diff --git a/modules/monitoring/application/controllers/ConfigController.php b/modules/monitoring/application/controllers/ConfigController.php index c8f2780bc..39023d692 100644 --- a/modules/monitoring/application/controllers/ConfigController.php +++ b/modules/monitoring/application/controllers/ConfigController.php @@ -7,8 +7,8 @@ use \Zend_Config; use Icinga\Config\PreservingIniWriter; use Icinga\Web\Controller\ModuleActionController; use Icinga\Web\Notification; +use Icinga\Form\Config\ConfirmRemovalForm; use Icinga\Module\Monitoring\Form\Config\BackendForm; -use Icinga\Module\Monitoring\Form\Config\ConfirmRemovalForm; use Icinga\Module\Monitoring\Form\Config\Instance\EditInstanceForm; use Icinga\Module\Monitoring\Form\Config\Instance\CreateInstanceForm; use Icinga\Exception\NotReadableError; @@ -107,29 +107,26 @@ class Monitoring_ConfigController extends ModuleActionController public function removebackendAction() { $backend = $this->getParam('backend'); - if (!$this->isExistingBackend($backend)) { - $this->view->error = 'Unknown backend ' . $backend; - return; + $backendsConfig = $this->Config('backends')->toArray(); + if (false === array_key_exists($backend, $backendsConfig)) { + // TODO: Should behave as in the app's config controller (Specific redirect to an error action) + Notification::error(sprintf($this->translate('Cannot remove "%s". Backend not found.'), $backend)); + $this->redirectNow('monitoring/config'); } + $form = new ConfirmRemovalForm(); - $form->setRequest($this->getRequest()); - $form->setRemoveTarget('backend', $backend); - - if ($form->isSubmittedAndValid()) { - $configArray = $this->Config('backends')->toArray(); - unset($configArray[$backend]); - - if ($this->writeConfiguration(new Zend_Config($configArray), 'backends')) { - Notification::success('Backend "' . $backend . '" Removed'); + $request = $this->getRequest(); + if ($request->isPost() && $form->isValid($request->getPost())) { + unset($backendsConfig[$backend]); + if ($this->writeConfiguration($backendsConfig, 'backends')) { + Notification::success(sprintf($this->translate('Backend "%s" successfully removed.'), $backend)); $this->redirectNow('monitoring/config'); } else { $this->render('show-configuration'); } - return; } $this->view->form = $form; - $this->view->name = $backend; } /** diff --git a/modules/monitoring/application/forms/Config/ConfirmRemovalForm.php b/modules/monitoring/application/forms/Config/ConfirmRemovalForm.php deleted file mode 100644 index 6a9e17bd5..000000000 --- a/modules/monitoring/application/forms/Config/ConfirmRemovalForm.php +++ /dev/null @@ -1,68 +0,0 @@ -targetName = $name; - $this->removeTarget = $target; - } - - /** - * Create the confirmation form - * - * @see Form::create() - */ - public function create() - { - $this->addElement( - 'hidden', - $this->targetName, - array( - 'value' => $this->removeTarget, - 'required' => true - ) - ); - - $this->addElement( - 'button', - 'btn_submit', - array( - 'type' => 'submit', - 'escape' => false, - 'value' => '1', - 'class' => 'btn btn-cta btn-common', - 'label' => $this->getView()->icon('remove.png') . ' Confirm Removal' - ) - ); - } -} diff --git a/modules/monitoring/application/views/scripts/config/removebackend.phtml b/modules/monitoring/application/views/scripts/config/removebackend.phtml index bd4a95f3b..fc7da17e3 100644 --- a/modules/monitoring/application/views/scripts/config/removebackend.phtml +++ b/modules/monitoring/application/views/scripts/config/removebackend.phtml @@ -1,8 +1,2 @@ - -

Remove Backend "escape($this->name) ?>"

- -

- Are you sure you want to remove the backend escape($this->name) ?>? -

- -form; ?> +

translate('Remove Existing Backend'); ?>

+ \ No newline at end of file