icinga2/lib/icinga/usergroup.hpp

44 lines
882 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-02-27 21:49:03 +01:00
#ifndef USERGROUP_H
#define USERGROUP_H
2014-05-25 16:23:35 +02:00
#include "icinga/i2-icinga.hpp"
2018-01-18 13:50:38 +01:00
#include "icinga/usergroup-ti.hpp"
2014-05-25 16:23:35 +02:00
#include "icinga/user.hpp"
2013-03-16 21:18:53 +01:00
2013-02-27 21:49:03 +01:00
namespace icinga
{
class ConfigItem;
2013-02-27 21:49:03 +01:00
/**
* An Icinga user group.
*
* @ingroup icinga
*/
2018-01-04 06:11:04 +01:00
class UserGroup final : public ObjectImpl<UserGroup>
2013-02-27 21:49:03 +01:00
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(UserGroup);
DECLARE_OBJECTNAME(UserGroup);
2013-02-27 21:49:03 +01:00
std::set<User::Ptr> GetMembers() const;
void AddMember(const User::Ptr& user);
void RemoveMember(const User::Ptr& user);
2013-08-05 09:49:19 +02:00
2014-08-17 17:57:20 +02:00
bool ResolveGroupMembership(const User::Ptr& user, bool add = true, int rstack = 0);
static void EvaluateObjectRules(const User::Ptr& user);
2013-02-27 21:49:03 +01:00
private:
mutable boost::mutex m_UserGroupMutex;
std::set<User::Ptr> m_Members;
static bool EvaluateObjectRule(const User::Ptr& user, const intrusive_ptr<ConfigItem>& group);
2013-02-27 21:49:03 +01:00
};
}
#endif /* USERGROUP_H */