2013-02-24 08:26:10 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2013-02-24 08:26:10 +01: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 16:23:35 +02:00
|
|
|
#include "icinga/user.hpp"
|
2014-11-16 16:20:39 +01:00
|
|
|
#include "icinga/usergroup.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/notification.hpp"
|
|
|
|
#include "icinga/usergroup.hpp"
|
2015-01-21 08:47:45 +01:00
|
|
|
#include "base/function.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/objectlock.hpp"
|
2014-12-18 15:43:01 +01:00
|
|
|
#include "base/exception.hpp"
|
2014-05-11 17:14:35 +02:00
|
|
|
#include <boost/foreach.hpp>
|
2013-02-24 08:26:10 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
REGISTER_TYPE(User);
|
2014-04-07 13:59:41 +02:00
|
|
|
REGISTER_SCRIPTFUNCTION(ValidateUserFilters, &User::ValidateFilters);
|
2013-02-24 08:26:10 +01:00
|
|
|
|
2014-07-10 10:57:44 +02:00
|
|
|
boost::signals2::signal<void (const User::Ptr&, bool, const MessageOrigin&)> User::OnEnableNotificationsChanged;
|
|
|
|
|
2013-08-29 16:53:57 +02:00
|
|
|
void User::OnConfigLoaded(void)
|
2013-02-26 10:13:54 +01:00
|
|
|
{
|
2014-11-21 18:31:37 +01:00
|
|
|
DynamicObject::OnConfigLoaded();
|
|
|
|
|
2014-04-09 10:25:23 +02:00
|
|
|
SetTypeFilter(FilterArrayToInt(GetTypes(), ~0));
|
|
|
|
SetStateFilter(FilterArrayToInt(GetStates(), ~0));
|
2014-11-21 18:31:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void User::OnAllConfigLoaded(void)
|
|
|
|
{
|
|
|
|
DynamicObject::OnAllConfigLoaded();
|
|
|
|
|
|
|
|
UserGroup::EvaluateObjectRules(this);
|
2014-04-07 13:59:41 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
Array::Ptr groups = GetGroups();
|
2013-02-27 21:49:03 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (groups) {
|
2014-10-28 18:58:22 +01:00
|
|
|
groups = groups->ShallowClone();
|
|
|
|
|
2013-09-09 13:52:37 +02:00
|
|
|
ObjectLock olock(groups);
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
BOOST_FOREACH(const String& name, groups) {
|
|
|
|
UserGroup::Ptr ug = UserGroup::GetByName(name);
|
2013-03-02 09:07:47 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (ug)
|
2014-11-08 21:17:16 +01:00
|
|
|
ug->ResolveGroupMembership(this, true);
|
2013-08-20 11:06:04 +02:00
|
|
|
}
|
|
|
|
}
|
2013-02-26 10:13:54 +01:00
|
|
|
}
|
2013-02-24 08:26:10 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void User::Stop(void)
|
2013-02-24 08:26:10 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
DynamicObject::Stop();
|
|
|
|
|
|
|
|
Array::Ptr groups = GetGroups();
|
|
|
|
|
|
|
|
if (groups) {
|
2013-09-09 13:52:37 +02:00
|
|
|
ObjectLock olock(groups);
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
BOOST_FOREACH(const String& name, groups) {
|
|
|
|
UserGroup::Ptr ug = UserGroup::GetByName(name);
|
2013-02-24 08:26:10 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (ug)
|
2014-11-08 21:17:16 +01:00
|
|
|
ug->ResolveGroupMembership(this, false);
|
2013-08-20 11:06:04 +02:00
|
|
|
}
|
|
|
|
}
|
2013-02-24 08:26:10 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 23:53:08 +02:00
|
|
|
void User::AddGroup(const String& name)
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock lock(m_UserMutex);
|
|
|
|
|
|
|
|
Array::Ptr groups = GetGroups();
|
|
|
|
|
2014-05-02 00:38:46 +02:00
|
|
|
if (groups && groups->Contains(name))
|
|
|
|
return;
|
|
|
|
|
2014-05-01 23:53:08 +02:00
|
|
|
if (!groups)
|
2014-11-08 21:17:16 +01:00
|
|
|
groups = new Array();
|
2014-05-01 23:53:08 +02:00
|
|
|
|
|
|
|
groups->Add(name);
|
|
|
|
}
|
|
|
|
|
2014-04-09 10:25:23 +02:00
|
|
|
TimePeriod::Ptr User::GetPeriod(void) const
|
2013-03-21 13:42:46 +01:00
|
|
|
{
|
2014-04-09 10:25:23 +02:00
|
|
|
return TimePeriod::GetByName(GetPeriodRaw());
|
2013-08-08 08:30:19 +02:00
|
|
|
}
|
|
|
|
|
2014-12-18 15:43:01 +01:00
|
|
|
void User::ValidateFilters(const String& location, const User::Ptr& object)
|
2014-04-07 13:59:41 +02:00
|
|
|
{
|
2014-12-18 15:43:01 +01:00
|
|
|
int sfilter = FilterArrayToInt(object->GetStates(), 0);
|
2014-04-07 13:59:41 +02:00
|
|
|
|
|
|
|
if ((sfilter & ~(StateFilterUp | StateFilterDown | StateFilterOK | StateFilterWarning | StateFilterCritical | StateFilterUnknown)) != 0) {
|
2014-12-18 15:11:57 +01:00
|
|
|
BOOST_THROW_EXCEPTION(ScriptError("Validation failed for " +
|
2014-12-18 15:43:01 +01:00
|
|
|
location + ": State filter is invalid.", object->GetDebugInfo()));
|
2014-04-07 13:59:41 +02:00
|
|
|
}
|
|
|
|
|
2014-12-18 15:43:01 +01:00
|
|
|
int tfilter = FilterArrayToInt(object->GetTypes(), 0);
|
2014-04-07 13:59:41 +02:00
|
|
|
|
|
|
|
if ((tfilter & ~(1 << NotificationDowntimeStart | 1 << NotificationDowntimeEnd | 1 << NotificationDowntimeRemoved |
|
|
|
|
1 << NotificationCustom | 1 << NotificationAcknowledgement | 1 << NotificationProblem | 1 << NotificationRecovery |
|
|
|
|
1 << NotificationFlappingStart | 1 << NotificationFlappingEnd)) != 0) {
|
2014-12-18 15:11:57 +01:00
|
|
|
BOOST_THROW_EXCEPTION(ScriptError("Validation failed for " +
|
2014-12-18 15:43:01 +01:00
|
|
|
location + ": Type filter is invalid.", object->GetDebugInfo()));
|
2014-04-07 13:59:41 +02:00
|
|
|
}
|
|
|
|
}
|
2014-04-17 15:20:28 +02:00
|
|
|
|
|
|
|
int User::GetModifiedAttributes(void) const
|
|
|
|
{
|
|
|
|
int attrs = 0;
|
|
|
|
|
2014-11-07 21:40:47 +01:00
|
|
|
if (GetOverrideVars())
|
2014-04-17 15:20:28 +02:00
|
|
|
attrs |= ModAttrCustomVariable;
|
|
|
|
|
|
|
|
return attrs;
|
|
|
|
}
|
|
|
|
|
2014-05-10 17:24:39 +02:00
|
|
|
void User::SetModifiedAttributes(int flags, const MessageOrigin& origin)
|
2014-04-17 15:20:28 +02:00
|
|
|
{
|
|
|
|
if ((flags & ModAttrCustomVariable) == 0) {
|
|
|
|
SetOverrideVars(Empty);
|
2014-11-08 21:17:16 +01:00
|
|
|
OnVarsChanged(this, GetVars(), origin);
|
2014-04-17 15:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-10 10:57:44 +02:00
|
|
|
|
|
|
|
bool User::GetEnableNotifications(void) const
|
|
|
|
{
|
|
|
|
if (!GetOverrideEnableNotifications().IsEmpty())
|
|
|
|
return GetOverrideEnableNotifications();
|
|
|
|
else
|
|
|
|
return GetEnableNotificationsRaw();
|
|
|
|
}
|
|
|
|
|
|
|
|
void User::SetEnableNotifications(bool enabled, const MessageOrigin& origin)
|
|
|
|
{
|
|
|
|
SetOverrideEnableNotifications(enabled);
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
OnEnableNotificationsChanged(this, enabled, origin);
|
2014-07-10 10:57:44 +02:00
|
|
|
}
|
|
|
|
|