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