icinga2/lib/methods/pluginnotificationtask.cpp

103 lines
4.3 KiB
C++
Raw Normal View History

2013-02-09 05:42:22 -05:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
2013-02-09 05:42:22 -05: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 15:19:29 -04:00
#include "icinga/notification.h"
#include "icinga/notificationcommand.h"
2013-03-17 15:19:29 -04:00
#include "icinga/service.h"
#include "icinga/macroprocessor.h"
#include "icinga/icingaapplication.h"
2013-03-17 15:19:29 -04:00
#include "base/scriptfunction.h"
2013-03-16 16:18:53 -04:00
#include "base/logger_fwd.h"
2013-03-25 13:36:15 -04:00
#include "base/utility.h"
2013-03-25 15:47:02 -04:00
#include "base/process.h"
#include <boost/foreach.hpp>
2013-02-09 05:42:22 -05:00
using namespace icinga;
2013-03-25 15:47:02 -04:00
REGISTER_SCRIPTFUNCTION(PluginNotification, &PluginNotificationTask::ScriptFunc);
2013-02-09 05:42:22 -05: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 05:42:22 -05:00
{
NotificationCommand::Ptr commandObj = notification->GetNotificationCommand();
2013-03-25 15:47:02 -04:00
NotificationType type = static_cast<NotificationType>(itype);
2013-02-09 05:42:22 -05:00
2014-04-03 09:36:13 -04:00
Checkable::Ptr checkable = notification->GetCheckable();
2013-03-25 13:36:15 -04:00
Value raw_command = commandObj->GetCommandLine();
2013-02-18 08:40:24 -05: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);
2014-04-03 09:36:13 -04:00
Host::Ptr host;
Service::Ptr service;
tie(host, service) = GetHostService(checkable);
std::vector<MacroResolver::Ptr> resolvers;
resolvers.push_back(user);
resolvers.push_back(notificationMacroResolver);
resolvers.push_back(notification);
2014-04-03 09:36:13 -04:00
if (service)
resolvers.push_back(service);
resolvers.push_back(host);;
2013-09-10 04:33:15 -04: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 07:55:41 -04:00
2013-10-26 03:41:45 -04:00
Array::Ptr export_macros = commandObj->GetExportMacros();
2013-03-18 07:55:41 -04:00
if (export_macros) {
BOOST_FOREACH(const String& macro, export_macros) {
String value;
2013-03-18 07:55:41 -04: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 05:42:22 -05:00
Process::Ptr process = make_shared<Process>(Process::SplitCommand(command), envMacros);
2013-02-09 05:42:22 -05:00
process->SetTimeout(commandObj->GetTimeout());
2014-04-03 09:36:13 -04:00
process->Run(boost::bind(&PluginNotificationTask::ProcessFinishedHandler, checkable, command, _1));
}
2013-02-09 05:42:22 -05:00
2014-04-03 09:36:13 -04:00
void PluginNotificationTask::ProcessFinishedHandler(const Checkable::Ptr& checkable, const Value& command, const ProcessResult& pr)
{
2013-03-25 13:36:15 -04:00
if (pr.ExitStatus != 0) {
std::ostringstream msgbuf;
2014-04-03 09:36:13 -04:00
msgbuf << "Notification command '" << command << "' for object '"
<< checkable->GetName() << "' failed; exit status: "
2013-03-25 13:36:15 -04:00
<< pr.ExitStatus << ", output: " << pr.Output;
Log(LogWarning, "icinga", msgbuf.str());
2013-02-09 05:42:22 -05:00
}
2014-04-03 09:36:13 -04:00
}