]> git.stg.codes - stg.git/blob - projects/stargazer/users_impl.h
Search parameter in map case insensitive
[stg.git] / projects / stargazer / users_impl.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.31 $
23 $Date: 2010/10/07 20:04:48 $
24 $Author: faust $
25 */
26
27
28 #ifndef USERS_IMPL_H
29 #define USERS_IMPL_H
30
31 #include <pthread.h>
32
33 #include <ctime>
34 #include <string>
35 #include <map>
36 #include <list>
37 #include <set>
38
39 #include "stg/os_int.h"
40 #include "stg/store.h"
41 #include "stg/users.h"
42 #include "stg/user.h"
43 #include "stg/tariffs.h"
44 #include "stg/logger.h"
45 #include "stg/notifer.h"
46 #include "stg/noncopyable.h"
47 #include "actions.h"
48 #include "eventloop.h"
49 #include "settings_impl.h"
50 #include "user_impl.h"
51
52 const int userDeleteDelayTime = 120;
53
54 typedef std::list<USER_IMPL>::iterator user_iter;
55 typedef std::list<USER_IMPL>::const_iterator const_user_iter;
56
57 class USERS_IMPL;
58 //-----------------------------------------------------------------------------
59 struct USER_TO_DEL {
60 USER_TO_DEL()
61     : iter(),
62       delTime(0)
63 {}
64
65 std::list<USER_IMPL>::iterator iter;
66 time_t  delTime;
67 };
68 //-----------------------------------------------------------------------------
69 class USERS_IMPL : private NONCOPYABLE, public USERS {
70     friend class PROPERTY_NOTIFER_IP_BEFORE;
71     friend class PROPERTY_NOTIFER_IP_AFTER;
72
73 public:
74     USERS_IMPL(SETTINGS_IMPL * s, STORE * store, TARIFFS * tariffs, const ADMIN * sysAdmin);
75     virtual ~USERS_IMPL();
76
77     int             FindByName(const std::string & login, USER_PTR * user);
78     int             FindByName(const std::string & login, CONST_USER_PTR * user) const;
79
80     bool            TariffInUse(const std::string & tariffName) const;
81
82     void            AddNotifierUserAdd(NOTIFIER_BASE<USER_PTR> *);
83     void            DelNotifierUserAdd(NOTIFIER_BASE<USER_PTR> *);
84
85     void            AddNotifierUserDel(NOTIFIER_BASE<USER_PTR> *);
86     void            DelNotifierUserDel(NOTIFIER_BASE<USER_PTR> *);
87
88     void            AddNotifierUserAdd(NOTIFIER_BASE<USER_IMPL_PTR> *);
89     void            DelNotifierUserAdd(NOTIFIER_BASE<USER_IMPL_PTR> *);
90
91     void            AddNotifierUserDel(NOTIFIER_BASE<USER_IMPL_PTR> *);
92     void            DelNotifierUserDel(NOTIFIER_BASE<USER_IMPL_PTR> *);
93
94     int             Add(const std::string & login, const ADMIN * admin);
95     void            Del(const std::string & login, const ADMIN * admin);
96
97     bool            Authorize(const std::string & login, uint32_t ip,
98                               uint32_t enabledDirs, const AUTH * auth);
99     bool            Unauthorize(const std::string & login,
100                                 const AUTH * auth,
101                                 const std::string & reason = std::string());
102
103     int             ReadUsers();
104     size_t          Count() const { return users.size(); }
105
106     int             FindByIPIdx(uint32_t ip, USER_PTR * user) const;
107     int             FindByIPIdx(uint32_t ip, USER_IMPL ** user) const;
108     bool            IsIPInIndex(uint32_t ip) const;
109     bool            IsIPInUse(uint32_t ip, const std::string & login, CONST_USER_PTR * user) const;
110
111     int             OpenSearch();
112     int             SearchNext(int handler, USER_PTR * user);
113     int             SearchNext(int handler, USER_IMPL ** user);
114     int             CloseSearch(int handler);
115
116     int             Start();
117     int             Stop();
118
119 private:
120     USERS_IMPL(const USERS_IMPL & rvalue);
121     USERS_IMPL & operator=(const USERS_IMPL & rvalue);
122
123     void            AddToIPIdx(user_iter user);
124     void            DelFromIPIdx(uint32_t ip);
125     bool            FindByIPIdx(uint32_t ip, user_iter & iter) const;
126
127     int             FindByNameNonLock(const std::string & login, user_iter * user);
128     int             FindByNameNonLock(const std::string & login, const_user_iter * user) const;
129
130     void            RealDelUser();
131     void            ProcessActions();
132
133     void            AddUserIntoIndexes(user_iter user);
134     void            DelUserFromIndexes(user_iter user);
135
136     static void *   Run(void *);
137     void            NewMinute(const struct tm & t);
138     void            NewDay(const struct tm & t);
139     void            DayResetTraff(const struct tm & t);
140
141     bool            TimeToWriteDetailStat(const struct tm & t);
142
143     std::list<USER_IMPL>                  users;
144     std::list<USER_TO_DEL>                usersToDelete;
145
146     std::map<uint32_t, user_iter>         ipIndex;
147     std::map<std::string, user_iter>      loginIndex;
148
149     SETTINGS_IMPL *     settings;
150     TARIFFS *           tariffs;
151     STORE *             store;
152     const ADMIN *       sysAdmin;
153     STG_LOGGER &        WriteServLog;
154
155     bool                nonstop;
156     bool                isRunning;
157
158     mutable pthread_mutex_t mutex;
159     pthread_t               thread;
160     mutable unsigned int    handle;
161
162     mutable std::map<int, user_iter>  searchDescriptors;
163
164     std::set<NOTIFIER_BASE<USER_PTR>*> onAddNotifiers;
165     std::set<NOTIFIER_BASE<USER_PTR>*> onDelNotifiers;
166     std::set<NOTIFIER_BASE<USER_IMPL_PTR>*> onAddNotifiersImpl;
167     std::set<NOTIFIER_BASE<USER_IMPL_PTR>*> onDelNotifiersImpl;
168 };
169 //-----------------------------------------------------------------------------
170 /*inline
171 void PROPERTY_NOTIFER_IP_BEFORE::Notify(const uint32_t & oldValue,
172                                         const uint32_t &)
173 {
174 if (!oldValue)
175     return;
176
177 //EVENT_LOOP_SINGLETON::GetInstance().Enqueue(users, &USERS::DelFromIPIdx, oldValue);
178 // Using explicit call to assure that index is valid, because fast reconnect with delayed call can result in authorization error
179 users.DelFromIPIdx(oldValue);
180 }
181 //-----------------------------------------------------------------------------
182 inline
183 void PROPERTY_NOTIFER_IP_AFTER::Notify(const uint32_t &,
184                                        const uint32_t & newValue)
185 {
186 if (!newValue)
187     return;
188
189 //EVENT_LOOP_SINGLETON::GetInstance().Enqueue(users, &USERS::AddToIPIdx, user);
190 // Using explicit call to assure that index is valid, because fast reconnect with delayed call can result in authorization error
191 users.AddToIPIdx(user);
192 }*/
193 //-----------------------------------------------------------------------------
194 #endif