mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-19 02:29:16 -05:00
34 lines
915 B
C++
34 lines
915 B
C++
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "remote/apiaction.hpp"
|
|
|
|
using namespace icinga;
|
|
|
|
INITIALIZE_ONCE_WITH_PRIORITY([]{
|
|
ApiActionRegistry::GetInstance()->Freeze();
|
|
}, InitializePriority::FreezeNamespaces);
|
|
|
|
ApiAction::ApiAction(std::vector<String> types, Callback action)
|
|
: m_Types(std::move(types)), m_Callback(std::move(action))
|
|
{ }
|
|
|
|
Value ApiAction::Invoke(const ConfigObject::Ptr& target, const ApiUser::Ptr& user, const Dictionary::Ptr& params)
|
|
{
|
|
return m_Callback(target, user, params);
|
|
}
|
|
|
|
const std::vector<String>& ApiAction::GetTypes() const
|
|
{
|
|
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);
|
|
}
|