-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/multiple-tts-integrations-10909'
resolves #10909
- Loading branch information
Showing
19 changed files
with
876 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.gitignore export-ignore | ||
.gitattributes export-ignore | ||
icingaexchange.yml export-ignore | ||
# Exclude files related to git when creating an archive | ||
.git* export-ignore | ||
|
||
# Exclude Icinga Exchange control-file when creating an archive | ||
icingaexchange.yml export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Exclude all hidden files | ||
.* | ||
|
||
# Except those related to Git and .mailmap | ||
!.git* | ||
!.mailmap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Eric Lippmann <eric.lippmann@netways.de> | ||
Johannes Meyer <johannes.meyer@netways.de> | ||
Marius Hein <marius.hein@netways.de> | ||
Thomas Gelf <thomas@gelf.net> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Eric Lippmann <eric.lippmann@netways.de> | ||
Johannes Meyer <johannes.meyer@netways.de> | ||
Marius Hein <marius.hein@netways.de> | ||
Thomas Gelf <thomas@gelf.net> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
<?php | ||
/* Icinga Web 2 | (c) 2016 Icinga Development Team | GPLv2+ */ | ||
|
||
namespace Icinga\Module\Generictts\Controllers; | ||
|
||
use Icinga\Exception\NotFoundError; | ||
use Icinga\Forms\ConfirmRemovalForm; | ||
use Icinga\Module\Generictts\Forms\Config\TtsIntegrationConfigForm; | ||
use Icinga\Web\Controller; | ||
use Icinga\Web\Notification; | ||
|
||
/** | ||
* Manage trouble ticket system integrations | ||
*/ | ||
class IntegrationsController extends Controller | ||
{ | ||
/** | ||
* List trouble ticket system integrations | ||
*/ | ||
public function indexAction() | ||
{ | ||
$this->getTabs()->add('integrations', array( | ||
'active' => true, | ||
'label' => $this->translate('Integrations'), | ||
'url' => $this->getRequest()->getUrl() | ||
)); | ||
$this->view->integrations = $this->Config(); | ||
} | ||
|
||
/** | ||
* Integrate a new trouble ticket system | ||
*/ | ||
public function newAction() | ||
{ | ||
$this->getTabs()->add('new-integration', array( | ||
'active' => true, | ||
'label' => $this->translate('New Integration'), | ||
'url' => $this->getRequest()->getUrl() | ||
)); | ||
|
||
$integrations = new TtsIntegrationConfigForm(); | ||
$integrations | ||
->setIniConfig($this->Config()) | ||
->setRedirectUrl('generictts/integrations') | ||
->handleRequest(); | ||
|
||
$this->view->form = $integrations; | ||
} | ||
|
||
/** | ||
* Remove a trouble ticket system integration | ||
*/ | ||
public function removeAction() | ||
{ | ||
$integration = $this->params->getRequired('integration'); | ||
|
||
$this->getTabs()->add('remove-integration', array( | ||
'active' => true, | ||
'label' => $this->translate('Remove Integration'), | ||
'url' => $this->getRequest()->getUrl() | ||
)); | ||
|
||
$integrations = new TtsIntegrationConfigForm(); | ||
try { | ||
$integrations | ||
->setIniConfig($this->Config()) | ||
->bind($integration); | ||
} catch (NotFoundError $e) { | ||
$this->httpNotFound($e->getMessage()); | ||
} | ||
|
||
$confirmation = new ConfirmRemovalForm(array( | ||
'onSuccess' => function (ConfirmRemovalForm $confirmation) use ($integration, $integrations) { | ||
$integrations->remove($integration); | ||
if ($integrations->save()) { | ||
Notification::success(mt('generictts', 'TTS integration removed')); | ||
return true; | ||
} | ||
return false; | ||
} | ||
)); | ||
$confirmation | ||
->setRedirectUrl('generictts/integrations') | ||
->setSubmitLabel($this->translate('Remove Integration')) | ||
->handleRequest(); | ||
|
||
$this->view->form = $confirmation; | ||
} | ||
|
||
/** | ||
* Update a trouble ticket system integration | ||
*/ | ||
public function updateAction() | ||
{ | ||
$integration = $this->params->getRequired('integration'); | ||
|
||
$this->getTabs()->add('update-integration', array( | ||
'active' => true, | ||
'label' => $this->translate('Update Integration'), | ||
'url' => $this->getRequest()->getUrl() | ||
)); | ||
|
||
$integrations = new TtsIntegrationConfigForm(); | ||
try { | ||
$integrations | ||
->setIniConfig($this->Config()) | ||
->bind($integration); | ||
} catch (NotFoundError $e) { | ||
$this->httpNotFound($e->getMessage()); | ||
} | ||
$integrations | ||
->setRedirectUrl('generictts/integrations') | ||
->handleRequest(); | ||
|
||
$this->view->form = $integrations; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.