icinga2/lib/icinga/user.cpp

135 lines
3.5 KiB
C++
Raw Permalink Normal View History

/* 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"
#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
User::User()
2013-02-26 04:13:54 -05: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);
}
void User::OnAllConfigLoaded()
{
ObjectImpl<User>::OnAllConfigLoaded();
UserGroup::EvaluateObjectRules(this);
Array::Ptr groups = GetGroups();
2013-02-27 15:49:03 -05:00
if (groups) {
groups = groups->ShallowClone();
2013-09-09 07:52:37 -04:00
ObjectLock olock(groups);
for (String name : groups) {
UserGroup::Ptr ug = UserGroup::GetByName(name);
2013-03-02 03:07:47 -05:00
if (ug)
ug->ResolveGroupMembership(this, true);
}
}
2013-02-26 04:13:54 -05:00
}
2013-02-24 02:26:10 -05:00
void User::Stop(bool runtimeRemoved)
2013-02-24 02:26:10 -05:00
{
ObjectImpl<User>::Stop(runtimeRemoved);
Array::Ptr groups = GetGroups();
if (groups) {
2013-09-09 07:52:37 -04:00
ObjectLock olock(groups);
for (String name : groups) {
UserGroup::Ptr ug = UserGroup::GetByName(name);
2013-02-24 02:26:10 -05:00
if (ug)
ug->ResolveGroupMembership(this, false);
}
}
2013-02-24 02:26:10 -05:00
}
void User::AddGroup(const String& name)
{
2021-02-02 04:16:04 -05:00
std::unique_lock<std::mutex> lock(m_UserMutex);
Array::Ptr groups = GetGroups();
2014-05-01 18:38:46 -04:00
if (groups && groups->Contains(name))
return;
if (!groups)
groups = new Array();
groups->Add(name);
}
TimePeriod::Ptr User::GetPeriod() const
{
return TimePeriod::GetByName(GetPeriodRaw());
2013-08-08 02:30:19 -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);
}
}
void User::ValidateStates(const Lazy<Array::Ptr>& lvalue, const ValidationUtils& utils)
{
ObjectImpl<User>::ValidateStates(lvalue, utils);
int filter = FilterArrayToInt(lvalue(), Notification::GetStateFilterMap(), 0);
if (filter == -1 || (filter & ~(StateFilterUp | StateFilterDown | StateFilterOK | StateFilterWarning | StateFilterCritical | StateFilterUnknown)) != 0)
BOOST_THROW_EXCEPTION(ValidationError(this, { "states" }, "State filter is invalid."));
}
void User::ValidateTypes(const Lazy<Array::Ptr>& lvalue, const ValidationUtils& utils)
{
ObjectImpl<User>::ValidateTypes(lvalue, utils);
int filter = FilterArrayToInt(lvalue(), Notification::GetTypeFilterMap(), 0);
if (filter == -1 || (filter & ~(NotificationDowntimeStart | NotificationDowntimeEnd | NotificationDowntimeRemoved |
NotificationCustom | NotificationAcknowledgement | NotificationProblem | NotificationRecovery |
NotificationFlappingStart | NotificationFlappingEnd)) != 0)
BOOST_THROW_EXCEPTION(ValidationError(this, { "types" }, "Type filter is invalid."));
}