2013-06-13 11:33:00 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-01-09 00:32:11 +01:00
|
|
|
* Copyright (C) 2012-present Icinga Development Team (http://www.icinga.org) *
|
2013-06-13 11:33:00 +02: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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-11-04 14:41:24 +01:00
|
|
|
#include "methods/plugineventtask.h"
|
2013-06-13 11:33:00 +02:00
|
|
|
#include "icinga/eventcommand.h"
|
|
|
|
#include "icinga/macroprocessor.h"
|
|
|
|
#include "icinga/icingaapplication.h"
|
|
|
|
#include "base/dynamictype.h"
|
|
|
|
#include "base/logger_fwd.h"
|
|
|
|
#include "base/scriptfunction.h"
|
|
|
|
#include "base/utility.h"
|
|
|
|
#include "base/process.h"
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
REGISTER_SCRIPTFUNCTION(PluginEvent, &PluginEventTask::ScriptFunc);
|
|
|
|
|
|
|
|
void PluginEventTask::ScriptFunc(const Service::Ptr& service)
|
|
|
|
{
|
|
|
|
EventCommand::Ptr commandObj = service->GetEventCommand();
|
2013-07-02 08:44:03 +02:00
|
|
|
Value raw_command = commandObj->GetCommandLine();
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
std::vector<MacroResolver::Ptr> resolvers;
|
|
|
|
resolvers.push_back(service);
|
|
|
|
resolvers.push_back(service->GetHost());
|
2013-09-10 10:33:15 +02:00
|
|
|
resolvers.push_back(commandObj);
|
2013-06-13 11:33:00 +02:00
|
|
|
resolvers.push_back(IcingaApplication::GetInstance());
|
|
|
|
|
2013-11-04 09:28:23 +01:00
|
|
|
Value command = MacroProcessor::ResolveMacros(raw_command, resolvers, service->GetLastCheckResult(), Utility::EscapeShellCmd, commandObj->GetEscapeMacros());
|
2013-06-13 11:33:00 +02:00
|
|
|
|
2013-11-06 08:51:56 +01:00
|
|
|
Dictionary::Ptr envMacros = make_shared<Dictionary>();
|
2013-06-13 11:33:00 +02:00
|
|
|
|
|
|
|
Array::Ptr export_macros = commandObj->GetExportMacros();
|
|
|
|
|
|
|
|
if (export_macros) {
|
|
|
|
BOOST_FOREACH(const String& macro, export_macros) {
|
|
|
|
String value;
|
|
|
|
|
2013-11-04 09:28:23 +01:00
|
|
|
if (!MacroProcessor::ResolveMacro(macro, resolvers, service->GetLastCheckResult(), &value)) {
|
2013-06-13 11:33:00 +02:00
|
|
|
Log(LogWarning, "icinga", "export_macros for command '" + commandObj->GetName() + "' refers to unknown macro '" + macro + "'");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
envMacros->Set(macro, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-06 08:51:56 +01:00
|
|
|
Process::Ptr process = make_shared<Process>(Process::SplitCommand(command), envMacros);
|
2013-06-13 11:33:00 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
process->SetTimeout(commandObj->GetTimeout());
|
2013-06-13 12:05:24 +02:00
|
|
|
|
2013-06-13 11:33:00 +02:00
|
|
|
process->Run();
|
|
|
|
}
|