2013-02-24 08:26:10 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-01-09 00:32:11 +01:00
|
|
|
* Copyright (C) 2012-present 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "icinga/user.h"
|
|
|
|
#include "icinga/usergroup.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/dynamictype.h"
|
2013-03-25 18:36:15 +01:00
|
|
|
#include "base/utility.h"
|
2013-09-09 13:52:37 +02:00
|
|
|
#include "base/objectlock.h"
|
2013-02-24 08:26:10 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
REGISTER_TYPE(User);
|
2013-02-24 08:26:10 +01:00
|
|
|
|
2013-08-29 16:53:57 +02:00
|
|
|
void User::OnConfigLoaded(void)
|
2013-02-26 10:13:54 +01: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) {
|
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)
|
|
|
|
ug->AddMember(GetSelf());
|
|
|
|
}
|
|
|
|
}
|
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)
|
|
|
|
ug->RemoveMember(GetSelf());
|
|
|
|
}
|
|
|
|
}
|
2013-02-24 08:26:10 +01:00
|
|
|
}
|
|
|
|
|
2013-03-21 13:42:46 +01:00
|
|
|
TimePeriod::Ptr User::GetNotificationPeriod(void) const
|
|
|
|
{
|
2013-10-26 09:41:45 +02:00
|
|
|
return TimePeriod::GetByName(GetNotificationPeriodRaw());
|
2013-08-08 08:30:19 +02:00
|
|
|
}
|
|
|
|
|
2013-11-09 14:22:38 +01:00
|
|
|
bool User::ResolveMacro(const String& macro, const CheckResult::Ptr&, String *result) const
|
2013-02-24 08:26:10 +01:00
|
|
|
{
|
2013-10-02 19:01:03 +02:00
|
|
|
if (macro == "USERNAME" || macro == "CONTACTNAME") {
|
2013-03-22 14:40:55 +01:00
|
|
|
*result = GetName();
|
|
|
|
return true;
|
2013-10-02 19:01:03 +02:00
|
|
|
} else if (macro == "USERDISPLAYNAME" || macro == "CONTACTALIAS") {
|
2013-07-02 09:54:24 +02:00
|
|
|
*result = GetDisplayName();
|
2013-03-22 14:40:55 +01:00
|
|
|
return true;
|
2013-12-18 10:53:26 +01:00
|
|
|
} else if (macro.SubStr(0, 5) == "_USER") {
|
|
|
|
Dictionary::Ptr custom = GetCustom();
|
|
|
|
*result = custom ? custom->Get(macro.SubStr(5)) : "";
|
|
|
|
return true;
|
|
|
|
} else if (macro.SubStr(0, 8) == "_CONTACT") {
|
|
|
|
Dictionary::Ptr custom = GetCustom();
|
|
|
|
*result = custom ? custom->Get(macro.SubStr(8)) : "";
|
|
|
|
return true;
|
2013-03-22 14:40:55 +01:00
|
|
|
} else {
|
2013-08-30 15:16:25 +02:00
|
|
|
String tmacro;
|
|
|
|
|
2013-10-02 19:01:03 +02:00
|
|
|
if (macro == "USEREMAIL" || macro == "CONTACTEMAIL")
|
2013-08-30 15:16:25 +02:00
|
|
|
tmacro = "email";
|
2013-10-02 19:01:03 +02:00
|
|
|
else if (macro == "USERPAGER" || macro == "CONTACTPAGER")
|
2013-08-30 15:16:25 +02:00
|
|
|
tmacro = "pager";
|
|
|
|
else
|
|
|
|
tmacro = macro;
|
|
|
|
|
2013-03-22 14:40:55 +01:00
|
|
|
Dictionary::Ptr macros = GetMacros();
|
|
|
|
|
2013-08-30 15:16:25 +02:00
|
|
|
if (macros && macros->Contains(tmacro)) {
|
|
|
|
*result = macros->Get(tmacro);
|
2013-03-22 14:40:55 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-02-24 08:26:10 +01:00
|
|
|
}
|