2013-02-24 08:26:10 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2013-02-24 08:26:10 +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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef USER_H
|
|
|
|
#define USER_H
|
|
|
|
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "icinga/i2-icinga.h"
|
2013-10-26 09:41:45 +02:00
|
|
|
#include "icinga/user.th"
|
2013-03-22 14:40:55 +01:00
|
|
|
#include "icinga/macroresolver.h"
|
2013-03-21 13:42:46 +01:00
|
|
|
#include "icinga/timeperiod.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "base/array.h"
|
2014-05-10 17:24:39 +02:00
|
|
|
#include "remote/messageorigin.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
|
2013-02-24 08:26:10 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A User.
|
|
|
|
*
|
|
|
|
* @ingroup icinga
|
|
|
|
*/
|
2014-04-08 13:23:24 +02:00
|
|
|
class I2_ICINGA_API User : public ObjectImpl<User>
|
2013-02-24 08:26:10 +01:00
|
|
|
{
|
|
|
|
public:
|
2013-07-09 08:42:08 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(User);
|
2013-08-20 11:06:04 +02:00
|
|
|
DECLARE_TYPENAME(User);
|
2013-02-24 08:26:10 +01:00
|
|
|
|
2014-05-01 23:53:08 +02:00
|
|
|
void AddGroup(const String& name);
|
|
|
|
|
2013-07-16 13:17:10 +02:00
|
|
|
/* Notifications */
|
2014-04-09 10:25:23 +02:00
|
|
|
TimePeriod::Ptr GetPeriod(void) const;
|
2013-03-22 14:40:55 +01:00
|
|
|
|
2014-04-07 13:59:41 +02:00
|
|
|
static void ValidateFilters(const String& location, const Dictionary::Ptr& attrs);
|
|
|
|
|
2014-04-17 15:20:28 +02:00
|
|
|
int GetModifiedAttributes(void) const;
|
2014-05-10 17:24:39 +02:00
|
|
|
void SetModifiedAttributes(int flags, const MessageOrigin& origin = MessageOrigin());
|
2014-04-17 15:20:28 +02:00
|
|
|
|
2013-02-27 21:49:03 +01:00
|
|
|
protected:
|
2013-08-20 11:06:04 +02:00
|
|
|
virtual void Stop(void);
|
|
|
|
|
2013-08-29 16:53:57 +02:00
|
|
|
virtual void OnConfigLoaded(void);
|
2014-05-01 23:53:08 +02:00
|
|
|
private:
|
|
|
|
mutable boost::mutex m_UserMutex;
|
2013-02-24 08:26:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* USER_H */
|