mirror of https://github.com/Icinga/icinga2.git
44 lines
882 B
C++
44 lines
882 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef USERGROUP_H
|
|
#define USERGROUP_H
|
|
|
|
#include "icinga/i2-icinga.hpp"
|
|
#include "icinga/usergroup-ti.hpp"
|
|
#include "icinga/user.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class ConfigItem;
|
|
|
|
/**
|
|
* An Icinga user group.
|
|
*
|
|
* @ingroup icinga
|
|
*/
|
|
class UserGroup final : public ObjectImpl<UserGroup>
|
|
{
|
|
public:
|
|
DECLARE_OBJECT(UserGroup);
|
|
DECLARE_OBJECTNAME(UserGroup);
|
|
|
|
std::set<User::Ptr> GetMembers() const;
|
|
void AddMember(const User::Ptr& user);
|
|
void RemoveMember(const User::Ptr& user);
|
|
|
|
bool ResolveGroupMembership(const User::Ptr& user, bool add = true, int rstack = 0);
|
|
|
|
static void EvaluateObjectRules(const User::Ptr& user);
|
|
|
|
private:
|
|
mutable boost::mutex m_UserGroupMutex;
|
|
std::set<User::Ptr> m_Members;
|
|
|
|
static bool EvaluateObjectRule(const User::Ptr& user, const intrusive_ptr<ConfigItem>& group);
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* USERGROUP_H */
|