]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/authorization/ao/ao.h
Rename BASE_AUTH and BASE_STORE to AUTH and STORE
[stg.git] / projects / stargazer / plugins / authorization / ao / ao.h
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19  */
20
21 /*
22  $Revision: 1.21 $
23  $Date: 2010/09/10 06:38:26 $
24  $Author: faust $
25 */
26
27 #ifndef AO_H
28 #define AO_H
29
30 #include <pthread.h>
31
32 #include <string>
33 #include <list>
34
35 #include "auth.h"
36 #include "store.h"
37 #include "notifer.h"
38 #include "user_ips.h"
39 #include "user.h"
40
41 extern "C" PLUGIN * GetPlugin();
42
43 class AUTH_AO;
44 class USERS;
45 //-----------------------------------------------------------------------------
46 template <typename varParamType>
47 class CHG_BEFORE_NOTIFIER: public PROPERTY_NOTIFIER_BASE<varParamType> {
48 public:
49                 CHG_BEFORE_NOTIFIER(AUTH_AO & a, USER_PTR u) : user(u), auth(a) {}
50     void        Notify(const varParamType & oldValue, const varParamType & newValue);
51     USER_PTR      GetUser() const { return user; }
52
53 private:
54     USER_PTR      user;
55     const       AUTH_AO & auth;
56 };
57 //-----------------------------------------------------------------------------
58 template <typename varParamType>
59 class CHG_AFTER_NOTIFIER: public PROPERTY_NOTIFIER_BASE<varParamType> {
60 public:
61                 CHG_AFTER_NOTIFIER(AUTH_AO & a, USER_PTR u) : user(u), auth(a) {}
62     void        Notify(const varParamType & oldValue, const varParamType & newValue);
63     USER_PTR      GetUser() const { return user; }
64
65 private:
66     USER_PTR          user;
67     const AUTH_AO & auth;
68 };
69 //-----------------------------------------------------------------------------
70 class AUTH_AO_SETTINGS {
71 public:
72     const std::string & GetStrError() const { static std::string s; return s; }
73     int ParseSettings(const MODULE_SETTINGS &) { return 0; }
74 };
75 //-----------------------------------------------------------------------------
76 class AUTH_AO :public AUTH {
77 public:
78     AUTH_AO();
79     virtual ~AUTH_AO(){};
80
81     void                SetUsers(USERS * u);
82     void                SetTariffs(TARIFFS *) {}
83     void                SetAdmins(ADMINS *) {}
84     void                SetTraffcounter(TRAFFCOUNTER *) {}
85     void                SetStore(STORE *) {}
86     void                SetStgSettings(const SETTINGS *) {}
87
88     int                 Start();
89     int                 Stop();
90     int                 Reload() { return 0; }
91     bool                IsRunning();
92     void                SetSettings(const MODULE_SETTINGS & s);
93     int                 ParseSettings();
94     const std::string & GetStrError() const;
95     const std::string   GetVersion() const;
96     uint16_t            GetStartPosition() const;
97     uint16_t            GetStopPosition() const;
98
99     void                AddUser(USER_PTR u);
100     void                DelUser(USER_PTR u);
101
102     void                UpdateUserAuthorization(USER_PTR u) const;
103     void                Unauthorize(USER_PTR u) const;
104
105     int                 SendMessage(const STG_MSG & msg, uint32_t ip) const;
106
107 private:
108     void                GetUsers();
109     void                SetUserNotifiers(USER_PTR u);
110     void                UnSetUserNotifiers(USER_PTR u);
111
112     mutable std::string errorStr;
113     AUTH_AO_SETTINGS    aoSettings;
114     USERS *             users;
115     std::list<USER_PTR> usersList;
116     bool                isRunning;
117     MODULE_SETTINGS     settings;
118
119     /*
120     ÍÙ ÄÏÌÖÎÙ ÐÅÒÅÐÒÏ×ÅÒÉÔØ ×ÏÚÍÏÖÎÏÓÔØ Á×ÔÏÒÉÚÁÃÉÉ ÀÚÅÒÁ ÐÒÉ ÉÚÍÅÎÅÎÉÉ
121     ÓÌÅÄÕÀÝÉÈ ÅÇÏ ÐÁÒÁÍÅÔÒÏ×:
122     - alwaysOnline
123     - ips
124     */
125
126     list<CHG_BEFORE_NOTIFIER<int> >         BeforeChgAONotifierList;
127     list<CHG_AFTER_NOTIFIER<int> >          AfterChgAONotifierList;
128
129     list<CHG_BEFORE_NOTIFIER<USER_IPS> >    BeforeChgIPNotifierList;
130     list<CHG_AFTER_NOTIFIER<USER_IPS> >     AfterChgIPNotifierList;
131
132     class ADD_USER_NONIFIER: public NOTIFIER_BASE<USER_PTR> {
133     public:
134         ADD_USER_NONIFIER(AUTH_AO & a) : auth(a) {}
135         virtual ~ADD_USER_NONIFIER() {}
136
137         void Notify(const USER_PTR & user)
138             {
139             auth.AddUser(user);
140             }
141
142     private:
143         AUTH_AO & auth;
144     } onAddUserNotifier;
145
146     class DEL_USER_NONIFIER: public NOTIFIER_BASE<USER_PTR> {
147     public:
148         DEL_USER_NONIFIER(AUTH_AO & a) : auth(a) {}
149         virtual ~DEL_USER_NONIFIER() {}
150
151         void Notify(const USER_PTR & user)
152             {
153             auth.DelUser(user);
154             }
155
156     private:
157         AUTH_AO & auth;
158     } onDelUserNotifier;
159
160 };
161 //-----------------------------------------------------------------------------
162
163 #endif