2015-07-30 17:50:17 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-10-18 09:27:04 +02:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://icinga.com/) *
|
2015-07-30 17:50:17 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#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();
|
|
|
|
}
|