icinga2/lib/icinga/service-notification.cpp

199 lines
6.5 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2013-03-16 21:18:53 +01:00
#include "icinga/service.h"
2013-03-17 20:19:29 +01:00
#include "base/dynamictype.h"
2013-03-16 21:18:53 +01:00
#include "base/objectlock.h"
#include "base/logger_fwd.h"
#include "base/timer.h"
#include "base/utility.h"
2013-03-17 20:19:29 +01:00
#include "config/configitembuilder.h"
2013-03-15 18:21:29 +01:00
#include <boost/tuple/tuple.hpp>
2013-03-16 21:18:53 +01:00
#include <boost/smart_ptr/make_shared.hpp>
#include <boost/foreach.hpp>
#include <boost/exception/diagnostic_information.hpp>
using namespace icinga;
boost::signals2::signal<void (const Service::Ptr&, const std::set<User::Ptr>&, const NotificationType&, const Dictionary::Ptr&, const String&, const String&, unsigned long)> Service::OnNotificationSentToAllUsers;
boost::signals2::signal<void (const Service::Ptr&, const User::Ptr&, const NotificationType&, const Dictionary::Ptr&, const String&, const String&)> Service::OnNotificationSentToUser;
Dictionary::Ptr Service::GetNotificationDescriptions(void) const
{
return m_NotificationDescriptions;
}
2013-07-18 17:04:09 +02:00
void Service::ResetNotificationNumbers(void)
{
BOOST_FOREACH(const Notification::Ptr& notification, GetNotifications()) {
ObjectLock olock(notification);
notification->ResetNotificationNumber();
}
}
void Service::SendNotifications(NotificationType type, const Dictionary::Ptr& cr, const String& author, const String& text)
{
bool force = GetForceNextNotification();
2013-03-02 09:07:47 +01:00
if (!GetEnableNotifications()) {
if (!force) {
Log(LogInformation, "icinga", "Notifications are disabled for service '" + GetName() + "'.");
return;
}
SetForceNextNotification(false);
}
2013-03-16 21:18:53 +01:00
Log(LogInformation, "icinga", "Sending notifications for service '" + GetName() + "'");
2013-03-16 21:18:53 +01:00
std::set<Notification::Ptr> notifications = GetNotifications();
2013-03-06 15:41:13 +01:00
if (notifications.empty())
2013-03-16 21:18:53 +01:00
Log(LogInformation, "icinga", "Service '" + GetName() + "' does not have any notifications.");
BOOST_FOREACH(const Notification::Ptr& notification, notifications) {
2013-02-24 08:26:10 +01:00
try {
notification->BeginExecuteNotification(type, cr, force, author, text);
2013-03-16 21:18:53 +01:00
} catch (const std::exception& ex) {
std::ostringstream msgbuf;
2013-02-24 08:26:10 +01:00
msgbuf << "Exception occured during notification for service '"
2013-03-16 21:18:53 +01:00
<< GetName() << "': " << boost::diagnostic_information(ex);
2013-02-24 08:26:10 +01:00
String message = msgbuf.str();
2013-03-16 21:18:53 +01:00
Log(LogWarning, "icinga", message);
2013-02-24 08:26:10 +01:00
}
}
}
std::set<Notification::Ptr> Service::GetNotifications(void) const
2013-02-27 15:23:25 +01:00
{
return m_Notifications;
2013-02-27 15:23:25 +01:00
}
void Service::AddNotification(const Notification::Ptr& notification)
{
m_Notifications.insert(notification);
}
void Service::RemoveNotification(const Notification::Ptr& notification)
{
m_Notifications.erase(notification);
}
2013-03-04 15:52:42 +01:00
void Service::UpdateSlaveNotifications(void)
{
ConfigItem::Ptr item = ConfigItem::GetObject("Service", GetName());
2013-02-26 10:13:54 +01:00
/* Don't create slave notifications unless we own this object */
if (!item)
return;
/* Service notification descs */
Dictionary::Ptr descs = GetNotificationDescriptions();
if (!descs)
2013-03-04 15:52:42 +01:00
return;
2013-02-26 10:13:54 +01:00
ObjectLock olock(descs);
2013-03-01 12:07:52 +01:00
String nfcname;
Value nfcdesc;
BOOST_FOREACH(boost::tie(nfcname, nfcdesc), descs) {
std::ostringstream namebuf;
namebuf << GetName() << ":" << nfcname;
String name = namebuf.str();
2013-02-19 23:02:08 +01:00
std::vector<String> path;
path.push_back("notifications");
path.push_back(nfcname);
2013-02-19 23:02:08 +01:00
DebugInfo di;
item->GetLinkedExpressionList()->FindDebugInfoPath(path, di);
if (di.Path.IsEmpty())
di = item->GetDebugInfo();
2013-02-26 10:13:54 +01:00
ConfigItemBuilder::Ptr builder = boost::make_shared<ConfigItemBuilder>(di);
builder->SetType("Notification");
builder->SetName(name);
2013-09-25 09:19:25 +02:00
builder->AddExpression("host", OperatorSet, GetHost()->GetName());
builder->AddExpression("service", OperatorSet, GetShortName());
if (!nfcdesc.IsObjectType<Dictionary>())
BOOST_THROW_EXCEPTION(std::invalid_argument("Notification description must be a dictionary."));
2013-09-24 13:13:14 +02:00
Dictionary::Ptr notification = nfcdesc;
2013-09-24 13:13:14 +02:00
Array::Ptr templates = notification->Get("templates");
2013-09-24 13:13:14 +02:00
if (templates) {
ObjectLock tlock(templates);
BOOST_FOREACH(const Value& tmpl, templates) {
builder->AddParent(tmpl);
}
}
/* Clone attributes from the notification expression list. */
ExpressionList::Ptr nfc_exprl = boost::make_shared<ExpressionList>();
item->GetLinkedExpressionList()->ExtractPath(path, nfc_exprl);
std::vector<String> dpath;
dpath.push_back("templates");
nfc_exprl->ErasePath(dpath);
2013-03-01 12:07:52 +01:00
builder->AddExpressionList(nfc_exprl);
ConfigItem::Ptr notificationItem = builder->Compile();
notificationItem->Register();
DynamicObject::Ptr dobj = notificationItem->Commit();
dobj->OnConfigLoaded();
}
}
bool Service::GetEnableNotifications(void) const
{
if (m_EnableNotifications.IsEmpty())
return true;
else
return m_EnableNotifications;
}
void Service::SetEnableNotifications(bool enabled, const String& authority)
{
m_EnableNotifications = enabled;
2013-09-01 06:01:27 +02:00
Utility::QueueAsyncCallback(boost::bind(boost::ref(OnEnableNotificationsChanged), GetSelf(), enabled, authority));
}
bool Service::GetForceNextNotification(void) const
{
if (m_ForceNextNotification.IsEmpty())
return false;
return static_cast<bool>(m_ForceNextNotification);
}
void Service::SetForceNextNotification(bool forced, const String& authority)
{
m_ForceNextNotification = forced ? 1 : 0;
2013-09-01 06:01:27 +02:00
Utility::QueueAsyncCallback(boost::bind(boost::ref(OnForceNextNotificationChanged), GetSelf(), forced, authority));
}