icinga2/lib/icinga/user.cpp

188 lines
5.0 KiB
C++
Raw Normal View History

2013-02-24 08:26:10 +01:00
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* 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-03-16 21:18:53 +01:00
#include <boost/smart_ptr/make_shared.hpp>
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
void User::OnConfigLoaded(void)
2013-02-26 10:13:54 +01:00
{
Array::Ptr groups = GetGroups();
2013-02-27 21:49:03 +01:00
if (groups) {
BOOST_FOREACH(const String& name, groups) {
UserGroup::Ptr ug = UserGroup::GetByName(name);
2013-03-02 09:07:47 +01:00
if (ug)
ug->AddMember(GetSelf());
}
}
2013-02-26 10:13:54 +01:00
}
2013-02-24 08:26:10 +01:00
void User::Stop(void)
2013-02-24 08:26:10 +01:00
{
DynamicObject::Stop();
Array::Ptr groups = GetGroups();
if (groups) {
BOOST_FOREACH(const String& name, groups) {
UserGroup::Ptr ug = UserGroup::GetByName(name);
2013-02-24 08:26:10 +01:00
if (ug)
ug->RemoveMember(GetSelf());
}
}
2013-02-24 08:26:10 +01:00
}
String User::GetDisplayName(void) const
{
if (!m_DisplayName.IsEmpty())
return m_DisplayName;
else
return GetName();
}
2013-03-14 12:17:46 +01:00
Array::Ptr User::GetGroups(void) const
2013-02-27 21:49:03 +01:00
{
return m_Groups;
}
2013-02-24 08:26:10 +01:00
Dictionary::Ptr User::GetMacros(void) const
{
2013-02-26 10:13:54 +01:00
return m_Macros;
2013-02-24 08:26:10 +01:00
}
bool User::GetEnableNotifications(void) const
{
if (m_EnableNotifications.IsEmpty())
return true;
else
return m_EnableNotifications;
}
void User::SetEnableNotifications(bool enabled)
{
m_EnableNotifications = enabled;
}
TimePeriod::Ptr User::GetNotificationPeriod(void) const
{
return TimePeriod::GetByName(m_NotificationPeriod);
}
unsigned long User::GetNotificationTypeFilter(void) const
{
if (m_NotificationTypeFilter.IsEmpty())
return ~(unsigned long)0; /* All states. */
else
return m_NotificationTypeFilter;
}
unsigned long User::GetNotificationStateFilter(void) const
{
if (m_NotificationStateFilter.IsEmpty())
return ~(unsigned long)0; /* All states. */
else
return m_NotificationStateFilter;
}
2013-08-08 08:30:19 +02:00
void User::SetLastNotification(double ts)
{
m_LastNotification = ts;
}
double User::GetLastNotification(void) const
{
return m_LastNotification;
}
bool User::ResolveMacro(const String& macro, const Dictionary::Ptr&, String *result) const
2013-02-24 08:26:10 +01:00
{
if (macro == "CONTACTNAME") {
*result = GetName();
return true;
} else if (macro == "CONTACTALIAS") {
*result = GetDisplayName();
return true;
} else {
String tmacro;
if (macro == "CONTACTEMAIL")
tmacro = "email";
else if (macro == "CONTACTPAGER")
tmacro = "pager";
else
tmacro = macro;
Dictionary::Ptr macros = GetMacros();
if (macros && macros->Contains(tmacro)) {
*result = macros->Get(tmacro);
return true;
}
return false;
}
2013-02-24 08:26:10 +01:00
}
2013-08-08 08:30:19 +02:00
void User::InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const
{
DynamicObject::InternalSerialize(bag, attributeTypes);
if (attributeTypes & Attribute_Config) {
bag->Set("display_name", m_DisplayName);
bag->Set("macros", m_Macros);
bag->Set("groups", m_Groups);
bag->Set("notification_period", m_NotificationPeriod);
bag->Set("notification_type_filter", m_NotificationTypeFilter);
bag->Set("notification_state_filter", m_NotificationStateFilter);
}
2013-08-29 10:40:43 +02:00
if (attributeTypes & Attribute_State) {
bag->Set("enable_notifications", m_EnableNotifications);
bag->Set("last_notification", m_LastNotification);
}
}
void User::InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes)
{
DynamicObject::InternalDeserialize(bag, attributeTypes);
if (attributeTypes & Attribute_Config) {
m_DisplayName = bag->Get("display_name");
m_Macros = bag->Get("macros");
m_Groups = bag->Get("groups");
m_NotificationPeriod = bag->Get("notification_period");
m_NotificationTypeFilter = bag->Get("notification_type_filter");
m_NotificationStateFilter = bag->Get("notification_state_filter");
}
2013-08-29 10:40:43 +02:00
if (attributeTypes & Attribute_State) {
m_EnableNotifications = bag->Get("enable_notifications");
m_LastNotification = bag->Get("last_notification");
}
}