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.
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.
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
18 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
23 $Date: 2010/03/04 12:29:06 $
31 #include <algorithm> // for_each
32 #include <functional> // mem_fun_ref
35 #include "stg/users.h"
36 #include "stg/user_property.h"
37 #include "stg/common.h"
38 #include "stg/plugin_creator.h"
41 //-----------------------------------------------------------------------------
42 //-----------------------------------------------------------------------------
43 //-----------------------------------------------------------------------------
44 static PLUGIN_CREATOR<AUTH_AO> aoc;
45 //-----------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------
47 //-----------------------------------------------------------------------------
50 return aoc.GetPlugin();
52 //-----------------------------------------------------------------------------
53 //-----------------------------------------------------------------------------
54 //-----------------------------------------------------------------------------
55 template <typename varType>
56 class IS_CONTAINS_USER: public std::binary_function<varType, USER_PTR, bool>
59 bool operator()(varType notifier, USER_PTR user) const
61 return notifier.GetUser() == user;
64 //-----------------------------------------------------------------------------
65 //-----------------------------------------------------------------------------
66 //-----------------------------------------------------------------------------
67 std::string AUTH_AO::GetVersion() const
69 return "Always Online authorizator v.1.0";
71 //-----------------------------------------------------------------------------
78 BeforeChgAONotifierList(),
79 AfterChgAONotifierList(),
80 BeforeChgIPNotifierList(),
81 AfterChgIPNotifierList(),
82 onAddUserNotifier(*this),
83 onDelUserNotifier(*this),
84 logger(GetPluginLogger(GetStgLogger(), "auth_ao"))
87 //-----------------------------------------------------------------------------
90 printfd(__FILE__, "AUTH_AO::Start()\n");
93 users->AddNotifierUserAdd(&onAddUserNotifier);
94 users->AddNotifierUserDel(&onDelUserNotifier);
96 std::for_each(usersList.begin(), usersList.end(), std::bind1st(std::mem_fun(&AUTH_AO::UpdateUserAuthorization), this));
102 //-----------------------------------------------------------------------------
105 printfd(__FILE__, "AUTH_AO::Stop()\n");
109 users->DelNotifierUserAdd(&onAddUserNotifier);
110 users->DelNotifierUserDel(&onDelUserNotifier);
112 std::list<USER_PTR>::iterator users_iter;
113 users_iter = usersList.begin();
114 while (users_iter != usersList.end())
116 if ((*users_iter)->IsAuthorizedBy(this))
117 users->Unauthorize((*users_iter)->GetLogin(), this);
118 UnSetUserNotifiers(*users_iter);
124 //-----------------------------------------------------------------------------
125 void AUTH_AO::SetUserNotifiers(USER_PTR u)
127 // ---------- AlwaysOnline -------------------
128 CHG_BEFORE_NOTIFIER<int> BeforeChgAONotifier(*this, u);
129 CHG_AFTER_NOTIFIER<int> AfterChgAONotifier(*this, u);
131 BeforeChgAONotifierList.push_front(BeforeChgAONotifier);
132 AfterChgAONotifierList.push_front(AfterChgAONotifier);
134 u->GetProperty().alwaysOnline.AddBeforeNotifier(&BeforeChgAONotifierList.front());
135 u->GetProperty().alwaysOnline.AddAfterNotifier(&AfterChgAONotifierList.front());
136 // ---------- AlwaysOnline end ---------------
138 // ---------- IP -------------------
139 CHG_BEFORE_NOTIFIER<USER_IPS> BeforeChgIPNotifier(*this, u);
140 CHG_AFTER_NOTIFIER<USER_IPS> AfterChgIPNotifier(*this, u);
142 BeforeChgIPNotifierList.push_front(BeforeChgIPNotifier);
143 AfterChgIPNotifierList.push_front(AfterChgIPNotifier);
145 u->GetProperty().ips.AddBeforeNotifier(&BeforeChgIPNotifierList.front());
146 u->GetProperty().ips.AddAfterNotifier(&AfterChgIPNotifierList.front());
147 // ---------- IP end ---------------
149 //-----------------------------------------------------------------------------
150 void AUTH_AO::UnSetUserNotifiers(USER_PTR u)
152 // --- AlwaysOnline ---
153 IS_CONTAINS_USER<CHG_BEFORE_NOTIFIER<int> > IsContainsUserAOB;
154 IS_CONTAINS_USER<CHG_AFTER_NOTIFIER<int> > IsContainsUserAOA;
156 std::list<CHG_BEFORE_NOTIFIER<int> >::iterator aoBIter;
157 std::list<CHG_AFTER_NOTIFIER<int> >::iterator aoAIter;
159 aoBIter = find_if(BeforeChgAONotifierList.begin(),
160 BeforeChgAONotifierList.end(),
161 bind2nd(IsContainsUserAOB, u));
163 if (aoBIter != BeforeChgAONotifierList.end())
165 aoBIter->GetUser()->GetProperty().alwaysOnline.DelBeforeNotifier(&(*aoBIter));
166 BeforeChgAONotifierList.erase(aoBIter);
169 aoAIter = find_if(AfterChgAONotifierList.begin(),
170 AfterChgAONotifierList.end(),
171 bind2nd(IsContainsUserAOA, u));
173 if (aoAIter != AfterChgAONotifierList.end())
175 aoAIter->GetUser()->GetProperty().alwaysOnline.DelAfterNotifier(&(*aoAIter));
176 AfterChgAONotifierList.erase(aoAIter);
178 // --- AlwaysOnline end ---
181 IS_CONTAINS_USER<CHG_BEFORE_NOTIFIER<USER_IPS> > IsContainsUserIPB;
182 IS_CONTAINS_USER<CHG_AFTER_NOTIFIER<USER_IPS> > IsContainsUserIPA;
184 std::list<CHG_BEFORE_NOTIFIER<USER_IPS> >::iterator ipBIter;
185 std::list<CHG_AFTER_NOTIFIER<USER_IPS> >::iterator ipAIter;
187 ipBIter = std::find_if(BeforeChgIPNotifierList.begin(),
188 BeforeChgIPNotifierList.end(),
189 bind2nd(IsContainsUserIPB, u));
191 if (ipBIter != BeforeChgIPNotifierList.end())
193 ipBIter->GetUser()->GetProperty().ips.DelBeforeNotifier(&(*ipBIter));
194 BeforeChgIPNotifierList.erase(ipBIter);
197 ipAIter = find_if(AfterChgIPNotifierList.begin(),
198 AfterChgIPNotifierList.end(),
199 bind2nd(IsContainsUserIPA, u));
201 if (ipAIter != AfterChgIPNotifierList.end())
203 ipAIter->GetUser()->GetProperty().ips.DelAfterNotifier(&(*ipAIter));
204 AfterChgIPNotifierList.erase(ipAIter);
208 //-----------------------------------------------------------------------------
209 void AUTH_AO::GetUsers()
212 int h = users->OpenSearch();
213 assert(h && "USERS::OpenSearch is always correct");
215 while (!users->SearchNext(h, &u))
217 usersList.push_back(u);
221 users->CloseSearch(h);
223 //-----------------------------------------------------------------------------
224 void AUTH_AO::UpdateUserAuthorization(CONST_USER_PTR u) const
226 if (u->GetProperty().alwaysOnline)
228 USER_IPS ips = u->GetProperty().ips;
231 users->Authorize(u->GetLogin(), ips[0].ip, 0xFFffFFff, this);
235 //-----------------------------------------------------------------------------
236 void AUTH_AO::AddUser(USER_PTR u)
239 usersList.push_back(u);
240 UpdateUserAuthorization(u);
242 //-----------------------------------------------------------------------------
243 void AUTH_AO::DelUser(USER_PTR u)
245 if (u->IsAuthorizedBy(this))
246 users->Unauthorize(u->GetLogin(), this);
247 UnSetUserNotifiers(u);
250 //-----------------------------------------------------------------------------
251 int AUTH_AO::SendMessage(const STG_MSG &, uint32_t) const
253 errorStr = "Authorization modele \'AlwaysOnline\' does not support sending messages";
256 //-----------------------------------------------------------------------------
257 template <typename varParamType>
258 void CHG_BEFORE_NOTIFIER<varParamType>::Notify(const varParamType &, const varParamType &)
260 //EVENT_LOOP_SINGLETON::GetInstance().Enqueue(auth, &AUTH_AO::Unauthorize, user);
261 if (user->IsAuthorizedBy(&auth))
262 auth.users->Unauthorize(user->GetLogin(), &auth);
264 //-----------------------------------------------------------------------------
265 template <typename varParamType>
266 void CHG_AFTER_NOTIFIER<varParamType>::Notify(const varParamType &, const varParamType &)
268 //EVENT_LOOP_SINGLETON::GetInstance().Enqueue(auth, &AUTH_AO::UpdateUserAuthorization, user);
269 auth.UpdateUserAuthorization(user);
271 //-----------------------------------------------------------------------------