2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-17 19:44:31 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/customvarobject.hpp"
|
2015-09-22 09:42:30 +02:00
|
|
|
#impl_include "icinga/notificationcommand.hpp"
|
2015-08-25 13:53:43 +02:00
|
|
|
#impl_include "icinga/service.hpp"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library icinga;
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-04-05 22:17:20 +02:00
|
|
|
code {{{
|
2017-12-31 07:22:16 +01:00
|
|
|
class NotificationNameComposer : public NameComposer
|
2014-04-05 22:17:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-06 19:35:47 +01:00
|
|
|
virtual String MakeName(const String& shortName, const Object::Ptr& context) const;
|
2015-08-13 09:02:52 +02:00
|
|
|
virtual Dictionary::Ptr ParseName(const String& name) const;
|
2014-04-05 22:17:20 +02:00
|
|
|
};
|
|
|
|
}}}
|
|
|
|
|
2014-05-12 16:45:25 +02:00
|
|
|
class Notification : CustomVarObject < NotificationNameComposer
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
2015-02-25 12:43:03 +01:00
|
|
|
load_after Host;
|
|
|
|
load_after Service;
|
|
|
|
|
2015-09-22 09:42:30 +02:00
|
|
|
[config, protected, required, navigation] name(NotificationCommand) command (CommandRaw) {
|
|
|
|
navigate {{{
|
|
|
|
return NotificationCommand::GetByName(GetCommandRaw());
|
|
|
|
}}}
|
|
|
|
};
|
2014-04-09 10:25:23 +02:00
|
|
|
[config] double interval {
|
2014-04-09 06:49:55 +02:00
|
|
|
default {{{ return 1800; }}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
2015-09-22 09:42:30 +02:00
|
|
|
[config, navigation] name(TimePeriod) period (PeriodRaw) {
|
|
|
|
navigate {{{
|
|
|
|
return TimePeriod::GetByName(GetPeriodRaw());
|
|
|
|
}}}
|
|
|
|
};
|
2021-10-08 16:43:09 +02:00
|
|
|
[config, signal_with_old_value] array(name(User)) users (UsersRaw);
|
|
|
|
[config, signal_with_old_value] array(name(UserGroup)) user_groups (UserGroupsRaw);
|
2013-10-26 09:41:45 +02:00
|
|
|
[config] Dictionary::Ptr times;
|
2016-06-21 14:46:01 +02:00
|
|
|
[config] array(Value) types;
|
2016-07-19 20:09:14 +02:00
|
|
|
[no_user_view, no_user_modify] int type_filter_real (TypeFilter);
|
2016-06-21 14:46:01 +02:00
|
|
|
[config] array(Value) states;
|
2016-07-19 20:09:14 +02:00
|
|
|
[no_user_view, no_user_modify] int state_filter_real (StateFilter);
|
2022-06-20 15:25:40 +02:00
|
|
|
[config, no_user_modify, protected, required, navigation(host)] name(Host) host_name {
|
2015-09-22 09:42:30 +02:00
|
|
|
navigate {{{
|
|
|
|
return Host::GetByName(GetHostName());
|
|
|
|
}}}
|
|
|
|
};
|
2022-06-20 15:25:40 +02:00
|
|
|
[config, protected, no_user_modify, navigation(service)] String service_name {
|
2015-08-25 13:53:43 +02:00
|
|
|
track {{{
|
|
|
|
if (!oldValue.IsEmpty()) {
|
|
|
|
Service::Ptr service = Service::GetByNamePair(GetHostName(), oldValue);
|
|
|
|
DependencyGraph::RemoveDependency(this, service.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!newValue.IsEmpty()) {
|
|
|
|
Service::Ptr service = Service::GetByNamePair(GetHostName(), newValue);
|
2016-05-09 13:48:30 +02:00
|
|
|
DependencyGraph::AddDependency(this, service.get());
|
2015-08-25 13:53:43 +02:00
|
|
|
}
|
|
|
|
}}}
|
2015-09-22 09:42:30 +02:00
|
|
|
navigate {{{
|
|
|
|
if (GetServiceName().IsEmpty())
|
2017-11-30 08:36:35 +01:00
|
|
|
return nullptr;
|
2015-09-22 09:42:30 +02:00
|
|
|
|
|
|
|
Host::Ptr host = Host::GetByName(GetHostName());
|
|
|
|
return host->GetServiceByShortName(GetServiceName());
|
|
|
|
}}}
|
2015-08-25 13:53:43 +02:00
|
|
|
};
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2016-11-15 15:12:26 +01:00
|
|
|
[state, no_user_modify] Array::Ptr notified_problem_users {
|
2014-11-12 20:32:34 +01:00
|
|
|
default {{{ return new Array(); }}}
|
|
|
|
};
|
|
|
|
|
2016-08-15 18:32:51 +02:00
|
|
|
[state, no_user_modify] bool no_more_notifications {
|
|
|
|
default {{{ return false; }}}
|
|
|
|
};
|
|
|
|
|
2019-07-08 18:31:42 +02:00
|
|
|
[state, no_user_view, no_user_modify] Array::Ptr stashed_notifications {
|
|
|
|
default {{{ return new Array(); }}}
|
|
|
|
};
|
|
|
|
|
2016-06-21 11:29:12 +02:00
|
|
|
[state] Timestamp last_notification;
|
|
|
|
[state] Timestamp next_notification;
|
2016-06-15 11:27:01 +02:00
|
|
|
[state] int notification_number;
|
2016-06-21 11:29:12 +02:00
|
|
|
[state] Timestamp last_problem_notification;
|
2014-11-13 11:23:57 +01:00
|
|
|
|
2020-07-29 17:13:41 +02:00
|
|
|
[state, no_user_view, no_user_modify] int suppressed_notifications {
|
|
|
|
default {{{ return 0; }}}
|
|
|
|
};
|
|
|
|
|
2015-09-22 09:42:30 +02:00
|
|
|
[config, navigation] name(Endpoint) command_endpoint (CommandEndpointRaw) {
|
|
|
|
navigate {{{
|
|
|
|
return Endpoint::GetByName(GetCommandEndpointRaw());
|
|
|
|
}}}
|
|
|
|
};
|
2014-11-30 23:32:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
validator Notification {
|
|
|
|
Dictionary times {
|
|
|
|
Number begin;
|
|
|
|
Number end;
|
|
|
|
};
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
2013-11-06 08:36:22 +01:00
|
|
|
}
|