2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-07-30 17:50:17 +02:00
|
|
|
|
|
|
|
#include "remote/apiaction.hpp"
|
|
|
|
#include "base/singleton.hpp"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 08:54:18 +01:00
|
|
|
ApiAction::ApiAction(std::vector<String> types, Callback action)
|
|
|
|
: m_Types(std::move(types)), m_Callback(std::move(action))
|
2015-07-30 17:50:17 +02:00
|
|
|
{ }
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
Value ApiAction::Invoke(const ConfigObject::Ptr& target, const Dictionary::Ptr& params)
|
2015-07-30 17:50:17 +02:00
|
|
|
{
|
|
|
|
return m_Callback(target, params);
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
const std::vector<String>& ApiAction::GetTypes() const
|
2015-07-30 17:50:17 +02:00
|
|
|
{
|
|
|
|
return m_Types;
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiAction::Ptr ApiAction::GetByName(const String& name)
|
|
|
|
{
|
|
|
|
return ApiActionRegistry::GetInstance()->GetItem(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ApiAction::Register(const String& name, const ApiAction::Ptr& action)
|
|
|
|
{
|
|
|
|
ApiActionRegistry::GetInstance()->Register(name, action);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ApiAction::Unregister(const String& name)
|
|
|
|
{
|
|
|
|
ApiActionRegistry::GetInstance()->Unregister(name);
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
ApiActionRegistry *ApiActionRegistry::GetInstance()
|
2015-07-30 17:50:17 +02:00
|
|
|
{
|
|
|
|
return Singleton<ApiActionRegistry>::GetInstance();
|
|
|
|
}
|