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