2013-02-24 02:26:10 -05:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2016-01-12 02:29:59 -05:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2013-02-24 02:26:10 -05: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. *
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/user.hpp"
|
2015-03-28 06:04:42 -04:00
|
|
|
#include "icinga/user.tcpp"
|
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"
|
2014-05-11 11:14:35 -04:00
|
|
|
#include <boost/foreach.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
|
|
|
|
2013-08-29 10:53:57 -04:00
|
|
|
void User::OnConfigLoaded(void)
|
2013-02-26 04:13:54 -05:00
|
|
|
{
|
2015-08-25 07:53:43 -04:00
|
|
|
ObjectImpl<User>::OnConfigLoaded();
|
2014-11-21 12:31:37 -05:00
|
|
|
|
2014-04-09 04:25:23 -04:00
|
|
|
SetTypeFilter(FilterArrayToInt(GetTypes(), ~0));
|
|
|
|
|
SetStateFilter(FilterArrayToInt(GetStates(), ~0));
|
2014-11-21 12:31:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void User::OnAllConfigLoaded(void)
|
|
|
|
|
{
|
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);
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
BOOST_FOREACH(const String& name, groups) {
|
|
|
|
|
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);
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
BOOST_FOREACH(const String& name, groups) {
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
boost::mutex::scoped_lock lock(m_UserMutex);
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-09 04:25:23 -04:00
|
|
|
TimePeriod::Ptr User::GetPeriod(void) 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
|
|
|
}
|
|
|
|
|
|
2014-11-30 17:32:13 -05:00
|
|
|
void User::ValidateStates(const Array::Ptr& value, const ValidationUtils& utils)
|
2014-04-07 07:59:41 -04:00
|
|
|
{
|
2014-11-30 17:32:13 -05:00
|
|
|
ObjectImpl<User>::ValidateStates(value, utils);
|
|
|
|
|
|
|
|
|
|
int sfilter = FilterArrayToInt(value, 0);
|
2014-04-07 07:59:41 -04:00
|
|
|
|
|
|
|
|
if ((sfilter & ~(StateFilterUp | StateFilterDown | StateFilterOK | StateFilterWarning | StateFilterCritical | StateFilterUnknown)) != 0) {
|
2014-11-30 17:32:13 -05:00
|
|
|
BOOST_THROW_EXCEPTION(ValidationError(this, boost::assign::list_of("states"), "State filter is invalid."));
|
2014-04-07 07:59:41 -04:00
|
|
|
}
|
2014-11-30 17:32:13 -05:00
|
|
|
}
|
2014-04-07 07:59:41 -04:00
|
|
|
|
2014-11-30 17:32:13 -05:00
|
|
|
void User::ValidateTypes(const Array::Ptr& value, const ValidationUtils& utils)
|
|
|
|
|
{
|
2016-03-24 04:15:09 -04:00
|
|
|
ObjectImpl<User>::ValidateTypes(value, utils);
|
|
|
|
|
|
2014-11-30 17:32:13 -05:00
|
|
|
int tfilter = FilterArrayToInt(value, 0);
|
2014-04-07 07:59:41 -04:00
|
|
|
|
|
|
|
|
if ((tfilter & ~(1 << NotificationDowntimeStart | 1 << NotificationDowntimeEnd | 1 << NotificationDowntimeRemoved |
|
|
|
|
|
1 << NotificationCustom | 1 << NotificationAcknowledgement | 1 << NotificationProblem | 1 << NotificationRecovery |
|
|
|
|
|
1 << NotificationFlappingStart | 1 << NotificationFlappingEnd)) != 0) {
|
2014-11-30 17:32:13 -05:00
|
|
|
BOOST_THROW_EXCEPTION(ValidationError(this, boost::assign::list_of("types"), "Type filter is invalid."));
|
2014-04-07 07:59:41 -04:00
|
|
|
}
|
|
|
|
|
}
|