2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-07-09 18:09:03 +02:00
|
|
|
|
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-11 11:47:32 +02:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
2013-07-09 18:09:03 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
CommandsTable::CommandsTable()
|
2013-07-09 18:09:03 +02:00
|
|
|
{
|
|
|
|
AddColumns(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommandsTable::AddColumns(Table *table, const String& prefix,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Column::ObjectAccessor& objectAccessor)
|
2013-07-09 18:09:03 +02:00
|
|
|
{
|
|
|
|
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));
|
2015-09-28 18:58:00 +02:00
|
|
|
table->AddColumn(prefix + "modified_attributes", Column(&Table::ZeroAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "modified_attributes_list", Column(&Table::ZeroAccessor, objectAccessor));
|
2013-07-09 18:09:03 +02:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String CommandsTable::GetName() const
|
2014-06-25 11:30:27 +02:00
|
|
|
{
|
|
|
|
return "commands";
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String CommandsTable::GetPrefix() const
|
2013-07-09 18:09:03 +02:00
|
|
|
{
|
|
|
|
return "command";
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommandsTable::FetchRows(const AddRowFunction& addRowFn)
|
|
|
|
{
|
2016-08-25 06:19:44 +02:00
|
|
|
for (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
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (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
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (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;
|
|
|
|
|
2017-12-21 15:45:11 +01:00
|
|
|
Dictionary::Ptr vars = command->GetVars();
|
2014-04-04 17:32:23 +02:00
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
ArrayData keys;
|
2014-04-04 17:32:23 +02:00
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
if (vars) {
|
2016-08-25 06:19:44 +02:00
|
|
|
ObjectLock xlock(vars);
|
|
|
|
for (const auto& kv : vars) {
|
2018-01-11 11:17:38 +01:00
|
|
|
keys.push_back(kv.first);
|
2016-08-25 06:19:44 +02:00
|
|
|
}
|
2014-04-04 17:32:23 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
return new Array(std::move(keys));
|
2014-04-04 17:32:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Value CommandsTable::CustomVariableValuesAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Command::Ptr command = static_cast<Command::Ptr>(row);
|
|
|
|
|
|
|
|
if (!command)
|
|
|
|
return Empty;
|
|
|
|
|
2017-12-21 15:45:11 +01:00
|
|
|
Dictionary::Ptr vars = command->GetVars();
|
2014-04-04 17:32:23 +02:00
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
ArrayData keys;
|
2017-10-30 14:49:22 +01:00
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
if (vars) {
|
2016-08-25 06:19:44 +02:00
|
|
|
ObjectLock xlock(vars);
|
|
|
|
for (const auto& kv : vars) {
|
2018-01-11 11:17:38 +01:00
|
|
|
keys.push_back(kv.second);
|
2016-08-25 06:19:44 +02:00
|
|
|
}
|
2014-04-04 17:32:23 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
return new Array(std::move(keys));
|
2014-04-04 17:32:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Value CommandsTable::CustomVariablesAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Command::Ptr command = static_cast<Command::Ptr>(row);
|
|
|
|
|
|
|
|
if (!command)
|
|
|
|
return Empty;
|
|
|
|
|
2017-12-21 15:45:11 +01:00
|
|
|
Dictionary::Ptr vars = command->GetVars();
|
2014-04-04 17:32:23 +02:00
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
ArrayData result;
|
2017-10-30 14:49:22 +01:00
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
if (vars) {
|
2016-08-25 06:19:44 +02:00
|
|
|
ObjectLock xlock(vars);
|
|
|
|
for (const auto& kv : vars) {
|
2018-01-11 11:17:38 +01:00
|
|
|
result.push_back(new Array({
|
|
|
|
kv.first,
|
|
|
|
kv.second
|
|
|
|
}));
|
2016-08-25 06:19:44 +02:00
|
|
|
}
|
2014-04-04 17:32:23 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
return new Array(std::move(result));
|
2014-04-04 17:32:23 +02:00
|
|
|
}
|