Implement command to send custom notifications

Added command and mask to send custom
notifications for hosts/services.

refs #4355
This commit is contained in:
Johannes Meyer 2013-07-09 12:40:31 +02:00 committed by Marius Hein
parent 087e4dfe90
commit 72efe7e8a0
2 changed files with 32 additions and 0 deletions

View File

@ -510,6 +510,37 @@ class Monitoring_CommandController extends ModuleActionController
}
}
public function sendcustomnotificationAction()
{
$form = new SendCommand("Send custom notification");
$form->addTextBox("author", "Author (Your name):", "", true);
$form->addTextBox("comment", "Comment:", "", false, true);
$form->addCheckbox("force", "Forced:", false);
$form->addCheckbox("broadcast", "Broadcast:", false);
if ($this->_request->isPost()) {
if ($form->isValid()) {
$comment = new Comment($form->getText("author"), $form->getText("comment"));
$targets = $this->selectCommandTargets($form->getHosts(), $form->getServices());
if ($form->isChecked("force")) {
$this->target->sendForcedCustomNotification($targets, $comment,
$form->isChecked("broadcast"));
} else {
$this->target->sendCustomNotification($targets, $comment,
$form->isChecked("broadcast"));
}
}
} else {
$form->getElement("author")->setValue(Manager::getInstance()->getUser()->getUsername());
$form->setServices($this->getParameter("services", false));
$form->setHosts($this->getParameter("hosts"));
$form->setAction($this->view->url());
$form->addSubmitButton("Commit");
$this->view->form = $form;
}
}
public function sendComment()
{
$author = "AUTHOR"; //@TODO: get from auth backend

View File

@ -0,0 +1 @@
<?= $this->form ?>