/****************************************************************************** * 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. * ******************************************************************************/ #include "livestatus/contactstable.h" #include "icinga/user.h" #include "base/dynamictype.h" #include using namespace icinga; using namespace livestatus; ContactsTable::ContactsTable(void) { 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)); 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)); table->AddColumn(prefix + "can_submit_commands", Column(&ContactsTable::CanSubmitCommandsAccessor, objectAccessor)); 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)); table->AddColumn(prefix + "custom_variable_names", Column(&ContactsTable::CustomVariableNamesAccessor, objectAccessor)); table->AddColumn(prefix + "custom_variable_values", Column(&ContactsTable::CustomVariableValuesAccessor, objectAccessor)); table->AddColumn(prefix + "custom_variables", Column(&ContactsTable::CustomVariablesAccessor, objectAccessor)); table->AddColumn(prefix + "modified_attributes", Column(&ContactsTable::ModifiedAttributesAccessor, objectAccessor)); table->AddColumn(prefix + "modified_attributes_list", Column(&ContactsTable::ModifiedAttributesListAccessor, objectAccessor)); } String ContactsTable::GetName(void) const { return "contacts"; } void ContactsTable::FetchRows(const AddRowFunction& addRowFn) { BOOST_FOREACH(const DynamicObject::Ptr& object, DynamicType::GetObjects("User")) { addRowFn(object); } } Value ContactsTable::NameAccessor(const Value& row) { return static_cast(row)->GetName(); } Value ContactsTable::AliasAccessor(const Value& row) { return static_cast(row)->GetDisplayName(); } Value ContactsTable::EmailAccessor(const Value& row) { Dictionary::Ptr macros = static_cast(row)->GetMacros(); if (!macros) return Value(); return macros->Get("email"); } Value ContactsTable::PagerAccessor(const Value& row) { Dictionary::Ptr macros = static_cast(row)->GetMacros(); if (!macros) return Value(); return macros->Get("pager"); } Value ContactsTable::HostNotificationPeriodAccessor(const Value& row) { /* TODO */ return Value(); } Value ContactsTable::ServiceNotificationPeriodAccessor(const Value& row) { /* TODO */ return Value(); } Value ContactsTable::CanSubmitCommandsAccessor(const Value& row) { /* TODO - default 1*/ return 1; } Value ContactsTable::HostNotificationsEnabledAccessor(const Value& row) { /* TODO */ return Value(); } Value ContactsTable::ServiceNotificationsEnabledAccessor(const Value& row) { /* TODO */ return Value(); } Value ContactsTable::InHostNotificationPeriodAccessor(const Value& row) { /* TODO */ return Value(); } Value ContactsTable::InServiceNotificationPeriodAccessor(const Value& row) { /* TODO */ return Value(); } Value ContactsTable::CustomVariableNamesAccessor(const Value& row) { /* TODO */ return Value(); } Value ContactsTable::CustomVariableValuesAccessor(const Value& row) { /* TODO */ return Value(); } Value ContactsTable::CustomVariablesAccessor(const Value& row) { /* TODO */ return Value(); } Value ContactsTable::ModifiedAttributesAccessor(const Value& row) { /* not supported */ return Value(); } Value ContactsTable::ModifiedAttributesListAccessor(const Value& row) { /* not supported */ return Value(); }