2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-07-30 11:50:17 -04:00
|
|
|
|
|
|
|
|
#ifndef APIACTIONS_H
|
|
|
|
|
#define APIACTIONS_H
|
|
|
|
|
|
|
|
|
|
#include "icinga/i2-icinga.hpp"
|
2015-08-15 14:28:05 -04:00
|
|
|
#include "base/configobject.hpp"
|
2015-07-30 11:50:17 -04:00
|
|
|
#include "base/dictionary.hpp"
|
2020-07-07 08:23:36 -04:00
|
|
|
#include "remote/apiuser.hpp"
|
2015-07-30 11:50:17 -04:00
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @ingroup icinga
|
|
|
|
|
*/
|
2017-12-31 01:22:16 -05:00
|
|
|
class ApiActions
|
2015-07-30 11:50:17 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2015-08-15 14:28:05 -04:00
|
|
|
static Dictionary::Ptr ProcessCheckResult(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2015-08-03 09:27:09 -04:00
|
|
|
static Dictionary::Ptr RescheduleCheck(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2015-10-16 05:44:18 -04:00
|
|
|
static Dictionary::Ptr SendCustomNotification(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
|
|
|
|
static Dictionary::Ptr DelayNotification(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2015-08-03 09:27:09 -04:00
|
|
|
static Dictionary::Ptr AcknowledgeProblem(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
|
|
|
|
static Dictionary::Ptr RemoveAcknowledgement(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
|
|
|
|
static Dictionary::Ptr AddComment(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2015-11-06 10:45:09 -05:00
|
|
|
static Dictionary::Ptr RemoveComment(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2015-08-03 09:27:09 -04:00
|
|
|
static Dictionary::Ptr ScheduleDowntime(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2015-11-06 10:45:09 -05:00
|
|
|
static Dictionary::Ptr RemoveDowntime(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2015-08-21 09:50:40 -04:00
|
|
|
static Dictionary::Ptr ShutdownProcess(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2015-08-20 08:30:34 -04:00
|
|
|
static Dictionary::Ptr RestartProcess(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2016-08-15 08:32:41 -04:00
|
|
|
static Dictionary::Ptr GenerateTicket(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2020-06-02 05:43:32 -04:00
|
|
|
static Dictionary::Ptr ExecuteCommand(const ConfigObject::Ptr& object, const Dictionary::Ptr& params);
|
2015-07-31 11:18:49 -04:00
|
|
|
|
|
|
|
|
private:
|
2017-11-30 02:36:35 -05:00
|
|
|
static Dictionary::Ptr CreateResult(int code, const String& status, const Dictionary::Ptr& additional = nullptr);
|
2020-07-07 09:45:58 -04:00
|
|
|
static Value GetSingleObjectByNameUsingPermissions(const String& type, const String& value, const ApiUser::Ptr& user);
|
2015-07-30 11:50:17 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* APIACTIONS_H */
|