2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-02-24 02:26:10 -05:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/user.hpp"
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "icinga/user-ti.cpp"
|
2014-11-16 10:20:39 -05:00
|
|
|
#include "icinga/usergroup.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/notification.hpp"
|
|
|
|
|
#include "icinga/usergroup.hpp"
|
|
|
|
|
#include "base/objectlock.hpp"
|
2014-12-18 09:43:01 -05:00
|
|
|
#include "base/exception.hpp"
|
2013-02-24 02:26:10 -05:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2013-03-01 06:07:52 -05:00
|
|
|
REGISTER_TYPE(User);
|
2013-02-24 02:26:10 -05:00
|
|
|
|
2025-05-21 03:09:10 -04:00
|
|
|
User::User()
|
2013-02-26 04:13:54 -05:00
|
|
|
{
|
2025-05-21 03:09:10 -04:00
|
|
|
// If a User is created without specifying the "types/states" attribute, the Set* methods won't be called,
|
|
|
|
|
// consequently the filter bitset will also be 0. Thus, we need to ensure that the type/state filter are
|
|
|
|
|
// initialized to the default values, which are all types and states enabled.
|
|
|
|
|
SetTypes(nullptr, false, Empty);
|
|
|
|
|
SetStates(nullptr, false, Empty);
|
2014-11-21 12:31:37 -05:00
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void User::OnAllConfigLoaded()
|
2014-11-21 12:31:37 -05:00
|
|
|
{
|
2015-08-25 07:53:43 -04:00
|
|
|
ObjectImpl<User>::OnAllConfigLoaded();
|
2014-11-21 12:31:37 -05:00
|
|
|
|
|
|
|
|
UserGroup::EvaluateObjectRules(this);
|
2014-04-07 07:59:41 -04:00
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
Array::Ptr groups = GetGroups();
|
2013-02-27 15:49:03 -05:00
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
if (groups) {
|
2014-10-28 13:58:22 -04:00
|
|
|
groups = groups->ShallowClone();
|
|
|
|
|
|
2013-09-09 07:52:37 -04:00
|
|
|
ObjectLock olock(groups);
|
|
|
|
|
|
2023-03-31 06:36:37 -04:00
|
|
|
for (String name : groups) {
|
2013-08-20 05:06:04 -04:00
|
|
|
UserGroup::Ptr ug = UserGroup::GetByName(name);
|
2013-03-02 03:07:47 -05:00
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
if (ug)
|
2014-11-08 15:17:16 -05:00
|
|
|
ug->ResolveGroupMembership(this, true);
|
2013-08-20 05:06:04 -04:00
|
|
|
}
|
|
|
|
|
}
|
2013-02-26 04:13:54 -05:00
|
|
|
}
|
2013-02-24 02:26:10 -05:00
|
|
|
|
2015-08-20 11:18:48 -04:00
|
|
|
void User::Stop(bool runtimeRemoved)
|
2013-02-24 02:26:10 -05:00
|
|
|
{
|
2015-08-20 11:18:48 -04:00
|
|
|
ObjectImpl<User>::Stop(runtimeRemoved);
|
2013-08-20 05:06:04 -04:00
|
|
|
|
|
|
|
|
Array::Ptr groups = GetGroups();
|
|
|
|
|
|
|
|
|
|
if (groups) {
|
2013-09-09 07:52:37 -04:00
|
|
|
ObjectLock olock(groups);
|
|
|
|
|
|
2023-03-31 06:36:37 -04:00
|
|
|
for (String name : groups) {
|
2013-08-20 05:06:04 -04:00
|
|
|
UserGroup::Ptr ug = UserGroup::GetByName(name);
|
2013-02-24 02:26:10 -05:00
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
if (ug)
|
2014-11-08 15:17:16 -05:00
|
|
|
ug->ResolveGroupMembership(this, false);
|
2013-08-20 05:06:04 -04:00
|
|
|
}
|
|
|
|
|
}
|
2013-02-24 02:26:10 -05:00
|
|
|
}
|
|
|
|
|
|
2014-05-01 17:53:08 -04:00
|
|
|
void User::AddGroup(const String& name)
|
|
|
|
|
{
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_UserMutex);
|
2014-05-01 17:53:08 -04:00
|
|
|
|
|
|
|
|
Array::Ptr groups = GetGroups();
|
|
|
|
|
|
2014-05-01 18:38:46 -04:00
|
|
|
if (groups && groups->Contains(name))
|
|
|
|
|
return;
|
|
|
|
|
|
2014-05-01 17:53:08 -04:00
|
|
|
if (!groups)
|
2014-11-08 15:17:16 -05:00
|
|
|
groups = new Array();
|
2014-05-01 17:53:08 -04:00
|
|
|
|
|
|
|
|
groups->Add(name);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
TimePeriod::Ptr User::GetPeriod() const
|
2013-03-21 08:42:46 -04:00
|
|
|
{
|
2014-04-09 04:25:23 -04:00
|
|
|
return TimePeriod::GetByName(GetPeriodRaw());
|
2013-08-08 02:30:19 -04:00
|
|
|
}
|
|
|
|
|
|
2025-05-21 03:09:10 -04:00
|
|
|
Array::Ptr User::GetTypes() const
|
|
|
|
|
{
|
|
|
|
|
return m_Types.load();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void User::SetTypes(const Array::Ptr& value, bool suppress_events, const Value& cookie)
|
|
|
|
|
{
|
|
|
|
|
m_Types.store(value);
|
|
|
|
|
// Ensure that the type filter is updated when the types attribute changes.
|
|
|
|
|
SetTypeFilter(FilterArrayToInt(value, Notification::GetTypeFilterMap(), ~0));
|
|
|
|
|
if (!suppress_events) {
|
|
|
|
|
NotifyTypes(cookie);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Array::Ptr User::GetStates() const
|
|
|
|
|
{
|
|
|
|
|
return m_States.load();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void User::SetStates(const Array::Ptr& value, bool suppress_events, const Value& cookie)
|
|
|
|
|
{
|
|
|
|
|
m_States.store(value);
|
|
|
|
|
// Ensure that the state filter is updated when the states attribute changes.
|
|
|
|
|
SetStateFilter(FilterArrayToInt(value, Notification::GetStateFilterMap(), ~0));
|
|
|
|
|
if (!suppress_events) {
|
|
|
|
|
NotifyStates(cookie);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-11 01:08:09 -05:00
|
|
|
void User::ValidateStates(const Lazy<Array::Ptr>& lvalue, const ValidationUtils& utils)
|
2014-04-07 07:59:41 -04:00
|
|
|
{
|
2018-01-11 01:08:09 -05:00
|
|
|
ObjectImpl<User>::ValidateStates(lvalue, utils);
|
2014-11-30 17:32:13 -05:00
|
|
|
|
2018-01-11 01:08:09 -05:00
|
|
|
int filter = FilterArrayToInt(lvalue(), Notification::GetStateFilterMap(), 0);
|
2014-04-07 07:59:41 -04:00
|
|
|
|
2016-06-21 08:46:01 -04:00
|
|
|
if (filter == -1 || (filter & ~(StateFilterUp | StateFilterDown | StateFilterOK | StateFilterWarning | StateFilterCritical | StateFilterUnknown)) != 0)
|
2017-11-30 12:09:38 -05:00
|
|
|
BOOST_THROW_EXCEPTION(ValidationError(this, { "states" }, "State filter is invalid."));
|
2014-11-30 17:32:13 -05:00
|
|
|
}
|
2014-04-07 07:59:41 -04:00
|
|
|
|
2018-01-11 01:08:09 -05:00
|
|
|
void User::ValidateTypes(const Lazy<Array::Ptr>& lvalue, const ValidationUtils& utils)
|
2014-11-30 17:32:13 -05:00
|
|
|
{
|
2018-01-11 01:08:09 -05:00
|
|
|
ObjectImpl<User>::ValidateTypes(lvalue, utils);
|
2016-03-24 04:15:09 -04:00
|
|
|
|
2018-01-11 01:08:09 -05:00
|
|
|
int filter = FilterArrayToInt(lvalue(), Notification::GetTypeFilterMap(), 0);
|
2014-04-07 07:59:41 -04:00
|
|
|
|
2016-06-21 08:46:01 -04:00
|
|
|
if (filter == -1 || (filter & ~(NotificationDowntimeStart | NotificationDowntimeEnd | NotificationDowntimeRemoved |
|
2017-12-19 09:50:05 -05:00
|
|
|
NotificationCustom | NotificationAcknowledgement | NotificationProblem | NotificationRecovery |
|
|
|
|
|
NotificationFlappingStart | NotificationFlappingEnd)) != 0)
|
2017-11-30 12:09:38 -05:00
|
|
|
BOOST_THROW_EXCEPTION(ValidationError(this, { "types" }, "Type filter is invalid."));
|
2014-04-07 07:59:41 -04:00
|
|
|
}
|