icinga2/lib/methods/pluginnotificationtask.cpp

95 lines
4.0 KiB
C++
Raw Normal View History

2013-02-09 11:42:22 +01:00
/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
2013-02-09 11:42:22 +01:00
* *
* 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. *
******************************************************************************/
#include "methods/pluginnotificationtask.h"
2013-03-17 20:19:29 +01:00
#include "icinga/notification.h"
#include "icinga/notificationcommand.h"
2013-03-17 20:19:29 +01:00
#include "icinga/service.h"
#include "icinga/macroprocessor.h"
#include "icinga/icingaapplication.h"
2013-03-17 20:19:29 +01:00
#include "base/scriptfunction.h"
2013-03-16 21:18:53 +01:00
#include "base/logger_fwd.h"
2013-03-25 18:36:15 +01:00
#include "base/utility.h"
2013-03-25 20:47:02 +01:00
#include "base/process.h"
#include <boost/foreach.hpp>
2013-02-09 11:42:22 +01:00
using namespace icinga;
2013-03-25 20:47:02 +01:00
REGISTER_SCRIPTFUNCTION(PluginNotification, &PluginNotificationTask::ScriptFunc);
2013-02-09 11:42:22 +01:00
void PluginNotificationTask::ScriptFunc(const Notification::Ptr& notification, const User::Ptr& user, const CheckResult::Ptr& cr, int itype,
const String& author, const String& comment)
2013-02-09 11:42:22 +01:00
{
NotificationCommand::Ptr commandObj = notification->GetNotificationCommand();
2013-03-25 20:47:02 +01:00
NotificationType type = static_cast<NotificationType>(itype);
2013-02-09 11:42:22 +01:00
2013-03-02 09:07:47 +01:00
Service::Ptr service = notification->GetService();
2013-03-25 18:36:15 +01:00
Value raw_command = commandObj->GetCommandLine();
2013-02-18 14:40:24 +01:00
StaticMacroResolver::Ptr notificationMacroResolver = make_shared<StaticMacroResolver>();
notificationMacroResolver->Add("NOTIFICATIONTYPE", Notification::NotificationTypeToString(type));
notificationMacroResolver->Add("NOTIFICATIONAUTHOR", author);
notificationMacroResolver->Add("NOTIFICATIONAUTHORNAME", author);
notificationMacroResolver->Add("NOTIFICATIONCOMMENT", comment);
std::vector<MacroResolver::Ptr> resolvers;
resolvers.push_back(user);
resolvers.push_back(notificationMacroResolver);
resolvers.push_back(notification);
resolvers.push_back(service);
resolvers.push_back(service->GetHost());
2013-09-10 10:33:15 +02:00
resolvers.push_back(commandObj);
resolvers.push_back(IcingaApplication::GetInstance());
Value command = MacroProcessor::ResolveMacros(raw_command, resolvers, cr, Utility::EscapeShellCmd, commandObj->GetEscapeMacros());
Dictionary::Ptr envMacros = make_shared<Dictionary>();
2013-03-18 12:55:41 +01:00
2013-10-26 09:41:45 +02:00
Array::Ptr export_macros = commandObj->GetExportMacros();
2013-03-18 12:55:41 +01:00
if (export_macros) {
BOOST_FOREACH(const String& macro, export_macros) {
String value;
2013-03-18 12:55:41 +01:00
if (!MacroProcessor::ResolveMacro(macro, resolvers, cr, &value)) {
Log(LogWarning, "icinga", "export_macros for notification '" + notification->GetName() + "' refers to unknown macro '" + macro + "'");
continue;
}
envMacros->Set(macro, value);
}
}
2013-02-09 11:42:22 +01:00
Process::Ptr process = make_shared<Process>(Process::SplitCommand(command), envMacros);
2013-02-09 11:42:22 +01:00
process->SetTimeout(commandObj->GetTimeout());
2013-03-25 18:36:15 +01:00
ProcessResult pr = process->Run();
2013-02-09 11:42:22 +01:00
2013-03-25 18:36:15 +01:00
if (pr.ExitStatus != 0) {
std::ostringstream msgbuf;
msgbuf << "Notification command '" << command << "' for service '"
2013-03-25 18:36:15 +01:00
<< service->GetName() << "' failed; exit status: "
<< pr.ExitStatus << ", output: " << pr.Output;
Log(LogWarning, "icinga", msgbuf.str());
2013-02-09 11:42:22 +01:00
}
}