2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "livestatus/contactgroupstable.hpp"
|
|
|
|
#include "icinga/usergroup.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2013-03-10 09:55:46 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
ContactGroupsTable::ContactGroupsTable()
|
2013-03-10 09:55:46 +01:00
|
|
|
{
|
2013-03-10 18:49:14 +01:00
|
|
|
AddColumns(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContactGroupsTable::AddColumns(Table *table, const String& prefix,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Column::ObjectAccessor& objectAccessor)
|
2013-03-10 18:49:14 +01:00
|
|
|
{
|
|
|
|
table->AddColumn(prefix + "name", Column(&ContactGroupsTable::NameAccessor, objectAccessor));
|
2013-07-09 17:15:38 +02:00
|
|
|
table->AddColumn(prefix + "alias", Column(&ContactGroupsTable::AliasAccessor, objectAccessor));
|
2013-03-10 18:49:14 +01:00
|
|
|
table->AddColumn(prefix + "members", Column(&ContactGroupsTable::MembersAccessor, objectAccessor));
|
2013-03-10 09:55:46 +01:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String ContactGroupsTable::GetName() const
|
2013-03-10 09:55:46 +01:00
|
|
|
{
|
|
|
|
return "contactgroups";
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String ContactGroupsTable::GetPrefix() const
|
2014-06-25 11:30:27 +02:00
|
|
|
{
|
|
|
|
return "contactgroup";
|
|
|
|
}
|
|
|
|
|
2013-03-15 18:21:29 +01:00
|
|
|
void ContactGroupsTable::FetchRows(const AddRowFunction& addRowFn)
|
2013-03-10 09:55:46 +01:00
|
|
|
{
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const UserGroup::Ptr& ug : ConfigType::GetObjectsByType<UserGroup>()) {
|
2015-03-04 12:03:35 +01:00
|
|
|
if (!addRowFn(ug, LivestatusGroupByNone, Empty))
|
|
|
|
return;
|
2013-03-10 09:55:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactGroupsTable::NameAccessor(const Value& row)
|
2013-03-10 09:55:46 +01:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
UserGroup::Ptr user_group = static_cast<UserGroup::Ptr>(row);
|
|
|
|
|
2015-02-11 15:47:45 +01:00
|
|
|
if (!user_group)
|
2013-10-29 13:44:43 +01:00
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return user_group->GetName();
|
2013-03-10 09:55:46 +01:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactGroupsTable::AliasAccessor(const Value& row)
|
2013-07-09 17:15:38 +02:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
UserGroup::Ptr user_group = static_cast<UserGroup::Ptr>(row);
|
|
|
|
|
2015-02-11 15:47:45 +01:00
|
|
|
if (!user_group)
|
2013-10-29 13:44:43 +01:00
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return user_group->GetName();
|
2013-07-09 17:15:38 +02:00
|
|
|
}
|
|
|
|
|
2013-07-10 14:06:46 +02:00
|
|
|
Value ContactGroupsTable::MembersAccessor(const Value& row)
|
2013-03-10 09:55:46 +01:00
|
|
|
{
|
2013-10-29 13:44:43 +01:00
|
|
|
UserGroup::Ptr user_group = static_cast<UserGroup::Ptr>(row);
|
|
|
|
|
2015-02-11 15:47:45 +01:00
|
|
|
if (!user_group)
|
2013-10-29 13:44:43 +01:00
|
|
|
return Empty;
|
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
ArrayData result;
|
2013-03-10 09:55:46 +01:00
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const User::Ptr& user : user_group->GetMembers()) {
|
2018-01-11 11:17:38 +01:00
|
|
|
result.push_back(user->GetName());
|
2013-03-10 09:55:46 +01:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:17:38 +01:00
|
|
|
return new Array(std::move(result));
|
2013-03-15 18:21:29 +01:00
|
|
|
}
|