2013-07-09 18:09:03 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2013-07-09 18:09:03 +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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "livestatus/commandstable.hpp"
|
|
|
|
#include "icinga/icingaapplication.hpp"
|
|
|
|
#include "icinga/checkcommand.hpp"
|
|
|
|
#include "icinga/eventcommand.hpp"
|
|
|
|
#include "icinga/notificationcommand.hpp"
|
|
|
|
#include "icinga/compatutility.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/convert.hpp"
|
2013-07-09 18:09:03 +02:00
|
|
|
#include <boost/foreach.hpp>
|
2013-07-11 11:47:32 +02:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
2013-07-09 18:09:03 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
CommandsTable::CommandsTable(void)
|
|
|
|
{
|
|
|
|
AddColumns(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommandsTable::AddColumns(Table *table, const String& prefix,
|
|
|
|
const Column::ObjectAccessor& objectAccessor)
|
|
|
|
{
|
|
|
|
table->AddColumn(prefix + "name", Column(&CommandsTable::NameAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "line", Column(&CommandsTable::LineAccessor, objectAccessor));
|
2014-04-04 17:32:23 +02:00
|
|
|
table->AddColumn(prefix + "custom_variable_names", Column(&CommandsTable::CustomVariableNamesAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "custom_variable_values", Column(&CommandsTable::CustomVariableValuesAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "custom_variables", Column(&CommandsTable::CustomVariablesAccessor, objectAccessor));
|
2014-04-17 15:20:28 +02:00
|
|
|
table->AddColumn(prefix + "modified_attributes", Column(&CommandsTable::ModifiedAttributesAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "modified_attributes_list", Column(&CommandsTable::ModifiedAttributesListAccessor, objectAccessor));
|
2013-07-09 18:09:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
String CommandsTable::GetName(void) const
|
2014-06-25 11:30:27 +02:00
|
|
|
{
|
|
|
|
return "commands";
|
|
|
|
}
|
|
|
|
|
|
|
|
String CommandsTable::GetPrefix(void) const
|
2013-07-09 18:09:03 +02:00
|
|
|
{
|
|
|
|
return "command";
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommandsTable::FetchRows(const AddRowFunction& addRowFn)
|
|
|
|
{
|
2015-08-15 20:28:05 +02:00
|
|
|
BOOST_FOREACH(const ConfigObject::Ptr& object, ConfigType::GetObjectsByType<CheckCommand>()) {
|
2015-03-04 12:03:35 +01:00
|
|
|
if (!addRowFn(object, LivestatusGroupByNone, Empty))
|
|
|
|
return;
|
2013-07-09 18:09:03 +02:00
|
|
|
}
|
2015-03-04 12:03:35 +01:00
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
BOOST_FOREACH(const ConfigObject::Ptr& object, ConfigType::GetObjectsByType<EventCommand>()) {
|
2015-03-04 12:03:35 +01:00
|
|
|
if (!addRowFn(object, LivestatusGroupByNone, Empty))
|
|
|
|
return;
|
2013-07-09 18:09:03 +02:00
|
|
|
}
|
2015-03-04 12:03:35 +01:00
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
BOOST_FOREACH(const ConfigObject::Ptr& object, ConfigType::GetObjectsByType<NotificationCommand>()) {
|
2015-03-04 12:03:35 +01:00
|
|
|
if (!addRowFn(object, LivestatusGroupByNone, Empty))
|
|
|
|
return;
|
2013-07-09 18:09:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value CommandsTable::NameAccessor(const Value& row)
|
2013-07-09 18:09:03 +02:00
|
|
|
{
|
2013-07-11 11:47:32 +02:00
|
|
|
Command::Ptr command = static_cast<Command::Ptr>(row);
|
2015-02-13 15:50:20 +01:00
|
|
|
|
2014-05-12 14:30:15 +02:00
|
|
|
return CompatUtility::GetCommandName(command);
|
2013-07-09 18:09:03 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value CommandsTable::LineAccessor(const Value& row)
|
2013-07-09 18:09:03 +02:00
|
|
|
{
|
2013-07-11 11:47:32 +02:00
|
|
|
Command::Ptr command = static_cast<Command::Ptr>(row);
|
2015-02-13 15:50:20 +01:00
|
|
|
|
2013-10-29 13:44:43 +01:00
|
|
|
if (!command)
|
|
|
|
return Empty;
|
2013-07-11 11:47:32 +02:00
|
|
|
|
2014-05-12 14:30:15 +02:00
|
|
|
return CompatUtility::GetCommandLine(command);
|
2013-07-09 18:09:03 +02:00
|
|
|
}
|
2014-04-04 17:32:23 +02:00
|
|
|
|
|
|
|
Value CommandsTable::CustomVariableNamesAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Command::Ptr command = static_cast<Command::Ptr>(row);
|
|
|
|
|
|
|
|
if (!command)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
Dictionary::Ptr vars;
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(command);
|
|
|
|
vars = CompatUtility::GetCustomAttributeConfig(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!vars)
|
|
|
|
return Empty;
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr cv = new Array();
|
2014-04-04 17:32:23 +02:00
|
|
|
|
|
|
|
String key;
|
|
|
|
Value value;
|
2015-02-16 14:16:45 +01:00
|
|
|
|
|
|
|
ObjectLock xlock(vars);
|
2014-04-04 17:32:23 +02:00
|
|
|
BOOST_FOREACH(tie(key, value), vars) {
|
|
|
|
cv->Add(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cv;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value CommandsTable::CustomVariableValuesAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Command::Ptr command = static_cast<Command::Ptr>(row);
|
|
|
|
|
|
|
|
if (!command)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
Dictionary::Ptr vars;
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(command);
|
|
|
|
vars = CompatUtility::GetCustomAttributeConfig(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!vars)
|
|
|
|
return Empty;
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr cv = new Array();
|
2014-04-04 17:32:23 +02:00
|
|
|
|
|
|
|
String key;
|
|
|
|
Value value;
|
2015-02-16 14:16:45 +01:00
|
|
|
|
|
|
|
ObjectLock xlock(vars);
|
2014-04-04 17:32:23 +02:00
|
|
|
BOOST_FOREACH(tie(key, value), vars) {
|
|
|
|
cv->Add(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cv;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value CommandsTable::CustomVariablesAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Command::Ptr command = static_cast<Command::Ptr>(row);
|
|
|
|
|
|
|
|
if (!command)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
Dictionary::Ptr vars;
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(command);
|
|
|
|
vars = CompatUtility::GetCustomAttributeConfig(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!vars)
|
|
|
|
return Empty;
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr cv = new Array();
|
2014-04-04 17:32:23 +02:00
|
|
|
|
|
|
|
String key;
|
|
|
|
Value value;
|
2015-02-16 14:16:45 +01:00
|
|
|
|
|
|
|
ObjectLock xlock(vars);
|
2014-04-04 17:32:23 +02:00
|
|
|
BOOST_FOREACH(tie(key, value), vars) {
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr key_val = new Array();
|
2014-04-04 17:32:23 +02:00
|
|
|
key_val->Add(key);
|
|
|
|
key_val->Add(value);
|
|
|
|
cv->Add(key_val);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cv;
|
|
|
|
}
|
2014-04-17 15:20:28 +02:00
|
|
|
|
|
|
|
Value CommandsTable::ModifiedAttributesAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Command::Ptr command = static_cast<Command::Ptr>(row);
|
|
|
|
|
|
|
|
if (!command)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
/* not supported */
|
|
|
|
return command->GetModifiedAttributes();
|
|
|
|
}
|
|
|
|
|
|
|
|
Value CommandsTable::ModifiedAttributesListAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Command::Ptr command = static_cast<Command::Ptr>(row);
|
|
|
|
|
|
|
|
if (!command)
|
|
|
|
return Empty;
|
|
|
|
|
2014-04-17 16:01:44 +02:00
|
|
|
return CompatUtility::GetModifiedAttributesList(command);
|
2014-04-17 15:20:28 +02:00
|
|
|
}
|