2013-03-10 09:55:46 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2013-03-10 09:55:46 +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 "livestatus/contactstable.hpp"
|
|
|
|
#include "icinga/user.hpp"
|
|
|
|
#include "icinga/timeperiod.hpp"
|
|
|
|
#include "icinga/compatutility.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/objectlock.hpp"
|
2014-11-04 16:44:45 +01:00
|
|
|
#include "base/json.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/utility.hpp"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2013-07-16 13:18:02 +02:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
2013-03-10 09:55:46 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
ContactsTable::ContactsTable(void)
|
|
|
|
{
|
2013-03-10 18:49:14 +01:00
|
|
|
AddColumns(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContactsTable::AddColumns(Table *table, const String& prefix,
|
|
|
|
const Column::ObjectAccessor& objectAccessor)
|
|
|
|
{
|
|
|
|
table->AddColumn(prefix + "name", Column(&ContactsTable::NameAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "alias", Column(&ContactsTable::NameAccessor, objectAccessor));
|
2013-07-09 17:15:38 +02:00
|
|
|
table->AddColumn(prefix + "email", Column(&ContactsTable::EmailAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "pager", Column(&ContactsTable::PagerAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "host_notification_period", Column(&ContactsTable::HostNotificationPeriodAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "service_notification_period", Column(&ContactsTable::ServiceNotificationPeriodAccessor, objectAccessor));
|
2013-10-03 18:58:48 +02:00
|
|
|
table->AddColumn(prefix + "can_submit_commands", Column(&Table::OneAccessor, objectAccessor));
|
2013-07-09 17:15:38 +02:00
|
|
|
table->AddColumn(prefix + "host_notifications_enabled", Column(&ContactsTable::HostNotificationsEnabledAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "service_notifications_enabled", Column(&ContactsTable::ServiceNotificationsEnabledAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "in_host_notification_period", Column(&ContactsTable::InHostNotificationPeriodAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "in_service_notification_period", Column(&ContactsTable::InServiceNotificationPeriodAccessor, objectAccessor));
|
2014-04-03 10:30:11 +02:00
|
|
|
table->AddColumn(prefix + "vars_variable_names", Column(&ContactsTable::CustomVariableNamesAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "vars_variable_values", Column(&ContactsTable::CustomVariableValuesAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "vars_variables", Column(&ContactsTable::CustomVariablesAccessor, objectAccessor));
|
2015-09-28 18:58:00 +02:00
|
|
|
table->AddColumn(prefix + "modified_attributes", Column(&Table::ZeroAccessor, objectAccessor));
|
|
|
|
table->AddColumn(prefix + "modified_attributes_list", Column(&Table::ZeroAccessor, objectAccessor));
|
2014-11-04 16:44:45 +01:00
|
|
|
table->AddColumn(prefix + "cv_is_json", Column(&ContactsTable::CVIsJsonAccessor, objectAccessor));
|
|
|
|
|
2013-03-10 09:55:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String ContactsTable::GetName(void) const
|
|
|
|
{
|
|
|
|
return "contacts";
|
|
|
|
}
|
|
|
|
|
2014-06-25 11:30:27 +02:00
|
|
|
String ContactsTable::GetPrefix(void) const
|
|
|
|
{
|
|
|
|
return "contact";
|
|
|
|
}
|
|
|
|
|
2013-03-15 18:21:29 +01:00
|
|
|
void ContactsTable::FetchRows(const AddRowFunction& addRowFn)
|
2013-03-10 09:55:46 +01:00
|
|
|
{
|
2015-08-15 20:28:05 +02:00
|
|
|
BOOST_FOREACH(const User::Ptr& user, ConfigType::GetObjectsByType<User>()) {
|
2015-03-04 12:03:35 +01:00
|
|
|
if (!addRowFn(user, LivestatusGroupByNone, Empty))
|
|
|
|
return;
|
2013-03-10 09:55:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::NameAccessor(const Value& row)
|
2013-03-10 09:55:46 +01:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return user->GetName();
|
2013-03-10 09:55:46 +01:00
|
|
|
}
|
2013-07-09 17:15:38 +02:00
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::AliasAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return user->GetDisplayName();
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::EmailAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
2014-04-17 13:49:45 +02:00
|
|
|
return user->GetEmail();
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::PagerAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
2014-04-17 13:49:45 +02:00
|
|
|
return user->GetPager();
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::HostNotificationPeriodAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
2013-07-16 13:18:02 +02:00
|
|
|
/* same as service */
|
2014-04-09 10:25:23 +02:00
|
|
|
TimePeriod::Ptr timeperiod = user->GetPeriod();
|
2013-07-16 13:18:02 +02:00
|
|
|
|
|
|
|
if (!timeperiod)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return timeperiod->GetName();
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::ServiceNotificationPeriodAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
2014-04-09 10:25:23 +02:00
|
|
|
TimePeriod::Ptr timeperiod = user->GetPeriod();
|
2013-07-16 13:18:02 +02:00
|
|
|
|
|
|
|
if (!timeperiod)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return timeperiod->GetName();
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::HostNotificationsEnabledAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return (user->GetEnableNotifications() ? 1 : 0);
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::ServiceNotificationsEnabledAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return (user->GetEnableNotifications() ? 1 : 0);
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::InHostNotificationPeriodAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
2014-04-09 10:25:23 +02:00
|
|
|
TimePeriod::Ptr timeperiod = user->GetPeriod();
|
2013-07-16 13:18:02 +02:00
|
|
|
|
|
|
|
if (!timeperiod)
|
|
|
|
return Empty;
|
|
|
|
|
2013-07-16 14:56:32 +02:00
|
|
|
return (timeperiod->IsInside(Utility::GetTime()) ? 1 : 0);
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::InServiceNotificationPeriodAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
2014-04-09 10:25:23 +02:00
|
|
|
TimePeriod::Ptr timeperiod = user->GetPeriod();
|
2013-07-16 13:18:02 +02:00
|
|
|
|
|
|
|
if (!timeperiod)
|
|
|
|
return Empty;
|
|
|
|
|
2013-07-16 14:56:32 +02:00
|
|
|
return (timeperiod->IsInside(Utility::GetTime()) ? 1 : 0);
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::CustomVariableNamesAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
2014-11-04 16:44:45 +01:00
|
|
|
Dictionary::Ptr vars;
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(user);
|
|
|
|
vars = CompatUtility::GetCustomAttributeConfig(user);
|
|
|
|
}
|
2013-07-16 13:18:02 +02:00
|
|
|
|
2014-04-03 10:30:11 +02:00
|
|
|
if (!vars)
|
2013-07-16 13:18:02 +02:00
|
|
|
return Empty;
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr cv = new Array();
|
2013-07-16 13:18:02 +02:00
|
|
|
|
2014-04-03 10:30:11 +02:00
|
|
|
ObjectLock olock(vars);
|
2014-11-04 16:44:45 +01:00
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, vars) {
|
|
|
|
cv->Add(kv.first);
|
2013-07-16 13:18:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return cv;
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::CustomVariableValuesAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
2014-11-04 16:44:45 +01:00
|
|
|
Dictionary::Ptr vars;
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(user);
|
|
|
|
vars = CompatUtility::GetCustomAttributeConfig(user);
|
|
|
|
}
|
2013-07-16 13:18:02 +02:00
|
|
|
|
2014-04-03 10:30:11 +02:00
|
|
|
if (!vars)
|
2013-07-16 13:18:02 +02:00
|
|
|
return Empty;
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr cv = new Array();
|
2013-07-16 13:18:02 +02:00
|
|
|
|
2014-04-03 10:30:11 +02:00
|
|
|
ObjectLock olock(vars);
|
2014-11-04 16:44:45 +01:00
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, vars) {
|
|
|
|
if (kv.second.IsObjectType<Array>() || kv.second.IsObjectType<Dictionary>())
|
|
|
|
cv->Add(JsonEncode(kv.second));
|
|
|
|
else
|
|
|
|
cv->Add(kv.second);
|
2013-07-16 13:18:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return cv;
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactsTable::CustomVariablesAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
2014-11-04 16:44:45 +01:00
|
|
|
Dictionary::Ptr vars;
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(user);
|
|
|
|
vars = CompatUtility::GetCustomAttributeConfig(user);
|
|
|
|
}
|
2013-07-16 13:18:02 +02:00
|
|
|
|
2014-04-03 10:30:11 +02:00
|
|
|
if (!vars)
|
2013-07-16 13:18:02 +02:00
|
|
|
return Empty;
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr cv = new Array();
|
2013-07-16 13:18:02 +02:00
|
|
|
|
2014-04-03 10:30:11 +02:00
|
|
|
ObjectLock olock(vars);
|
2014-11-04 16:44:45 +01:00
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, vars) {
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr key_val = new Array();
|
2014-11-04 16:44:45 +01:00
|
|
|
key_val->Add(kv.first);
|
|
|
|
|
|
|
|
if (kv.second.IsObjectType<Array>() || kv.second.IsObjectType<Dictionary>())
|
|
|
|
key_val->Add(JsonEncode(kv.second));
|
|
|
|
else
|
|
|
|
key_val->Add(kv.second);
|
|
|
|
|
2013-07-16 13:18:02 +02:00
|
|
|
cv->Add(key_val);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cv;
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2014-11-04 16:44:45 +01:00
|
|
|
Value ContactsTable::CVIsJsonAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
User::Ptr user = static_cast<User::Ptr>(row);
|
|
|
|
|
|
|
|
if (!user)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
Dictionary::Ptr vars;
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(user);
|
|
|
|
vars = CompatUtility::GetCustomAttributeConfig(user);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!vars)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
bool cv_is_json = false;
|
|
|
|
|
|
|
|
ObjectLock olock(vars);
|
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, vars) {
|
|
|
|
if (kv.second.IsObjectType<Array>() || kv.second.IsObjectType<Dictionary>())
|
|
|
|
cv_is_json = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cv_is_json;
|
|
|
|
}
|