]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_services_account.cpp
Merge pull request #230 from Robby-/insp20-openssl
[user/henk/code/inspircd.git] / src / modules / m_services_account.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
7  *   Copyright (C) 2006, 2008 Craig Edwards <craigedwards@brainbox.cc>
8  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 /* $ModDesc: Provides support for ircu-style services accounts, including chmode +R, etc. */
25
26 #include "inspircd.h"
27 #include "account.h"
28
29 /** Channel mode +r - mark a channel as identified
30  */
31 class Channel_r : public ModeHandler
32 {
33  public:
34         Channel_r(Module* Creator) : ModeHandler(Creator, "c_registered", 'r', PARAM_NONE, MODETYPE_CHANNEL) { }
35
36         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
37         {
38                 // only a u-lined server may add or remove the +r mode.
39                 if (!IS_LOCAL(source) || ServerInstance->ULine(source->nick.c_str()) || ServerInstance->ULine(source->server))
40                 {
41                         // Only change the mode if it's not redundant
42                         if ((adding != channel->IsModeSet('r')))
43                         {
44                                 channel->SetMode('r',adding);
45                                 return MODEACTION_ALLOW;
46                         }
47                 }
48                 else
49                 {
50                         source->WriteNumeric(500, "%s :Only a server may modify the +r channel mode", source->nick.c_str());
51                 }
52                 return MODEACTION_DENY;
53         }
54 };
55
56 /** User mode +r - mark a user as identified
57  */
58 class User_r : public ModeHandler
59 {
60
61  public:
62         User_r(Module* Creator) : ModeHandler(Creator, "u_registered", 'r', PARAM_NONE, MODETYPE_USER) { }
63
64         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
65         {
66                 if (!IS_LOCAL(source) || ServerInstance->ULine(source->nick.c_str()) || ServerInstance->ULine(source->server))
67                 {
68                         if ((adding != dest->IsModeSet('r')))
69                         {
70                                 dest->SetMode('r',adding);
71                                 return MODEACTION_ALLOW;
72                         }
73                 }
74                 else
75                 {
76                         source->WriteNumeric(500, "%s :Only a server may modify the +r user mode", source->nick.c_str());
77                 }
78                 return MODEACTION_DENY;
79         }
80 };
81
82 /** Channel mode +R - unidentified users cannot join
83  */
84 class AChannel_R : public SimpleChannelModeHandler
85 {
86  public:
87         AChannel_R(Module* Creator) : SimpleChannelModeHandler(Creator, "reginvite", 'R') { }
88 };
89
90 /** User mode +R - unidentified users cannot message
91  */
92 class AUser_R : public SimpleUserModeHandler
93 {
94  public:
95         AUser_R(Module* Creator) : SimpleUserModeHandler(Creator, "regdeaf", 'R') { }
96 };
97
98 /** Channel mode +M - unidentified users cannot message channel
99  */
100 class AChannel_M : public SimpleChannelModeHandler
101 {
102  public:
103         AChannel_M(Module* Creator) : SimpleChannelModeHandler(Creator, "regmoderated", 'M') { }
104 };
105
106 class ModuleServicesAccount : public Module
107 {
108         AChannel_R m1;
109         AChannel_M m2;
110         AUser_R m3;
111         Channel_r m4;
112         User_r m5;
113         AccountExtItem accountname;
114  public:
115         ModuleServicesAccount() : m1(this), m2(this), m3(this), m4(this), m5(this),
116                 accountname("accountname", this)
117         {
118         }
119
120         void init()
121         {
122                 ServerInstance->Modules->AddService(m1);
123                 ServerInstance->Modules->AddService(m2);
124                 ServerInstance->Modules->AddService(m3);
125                 ServerInstance->Modules->AddService(m4);
126                 ServerInstance->Modules->AddService(m5);
127                 ServerInstance->Modules->AddService(accountname);
128                 Implementation eventlist[] = { I_OnWhois, I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserPreJoin, I_OnCheckBan,
129                         I_OnDecodeMetaData, I_On005Numeric, I_OnUserPostNick, I_OnSetConnectClass };
130
131                 ServerInstance->Modules->Attach(eventlist, this, 9);
132         }
133
134         void On005Numeric(std::string &t)
135         {
136                 ServerInstance->AddExtBanChar('R');
137         }
138
139         /* <- :twisted.oscnet.org 330 w00t2 w00t2 w00t :is logged in as */
140         void OnWhois(User* source, User* dest)
141         {
142                 std::string *account = accountname.get(dest);
143
144                 if (account)
145                 {
146                         ServerInstance->SendWhoisLine(source, dest, 330, "%s %s %s :is logged in as", source->nick.c_str(), dest->nick.c_str(), account->c_str());
147                 }
148
149                 if (dest->IsModeSet('r'))
150                 {
151                         /* user is registered */
152                         ServerInstance->SendWhoisLine(source, dest, 307, "%s %s :is a registered nick", source->nick.c_str(), dest->nick.c_str());
153                 }
154         }
155
156         void OnUserPostNick(User* user, const std::string &oldnick)
157         {
158                 /* On nickchange, if they have +r, remove it */
159                 if (user->IsModeSet('r') && assign(user->nick) != oldnick)
160                 {
161                         std::vector<std::string> modechange;
162                         modechange.push_back(user->nick);
163                         modechange.push_back("-r");
164                         ServerInstance->SendMode(modechange, ServerInstance->FakeClient);
165                 }
166         }
167
168         ModResult OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
169         {
170                 if (!IS_LOCAL(user))
171                         return MOD_RES_PASSTHRU;
172
173                 std::string *account = accountname.get(user);
174                 bool is_registered = account && !account->empty();
175
176                 if ((ServerInstance->ULine(user->nick.c_str())) || (ServerInstance->ULine(user->server)))
177                 {
178                         // user is ulined, can speak regardless
179                         return MOD_RES_PASSTHRU;
180                 }
181
182                 if (target_type == TYPE_CHANNEL)
183                 {
184                         Channel* c = (Channel*)dest;
185                         ModResult res = ServerInstance->OnCheckExemption(user,c,"regmoderated");
186
187                         if (c->IsModeSet('M') && !is_registered && res != MOD_RES_ALLOW)
188                         {
189                                 // user messaging a +M channel and is not registered
190                                 user->WriteNumeric(477, ""+std::string(user->nick)+" "+std::string(c->name)+" :You need to be identified to a registered account to message this channel");
191                                 return MOD_RES_DENY;
192                         }
193                 }
194                 else if (target_type == TYPE_USER)
195                 {
196                         User* u = (User*)dest;
197
198                         if (u->IsModeSet('R') && !is_registered)
199                         {
200                                 // user messaging a +R user and is not registered
201                                 user->WriteNumeric(477, ""+ user->nick +" "+ u->nick +" :You need to be identified to a registered account to message this user");
202                                 return MOD_RES_DENY;
203                         }
204                 }
205                 return MOD_RES_PASSTHRU;
206         }
207
208         ModResult OnCheckBan(User* user, Channel* chan, const std::string& mask)
209         {
210                 if (mask[0] == 'R' && mask[1] == ':')
211                 {
212                         std::string *account = accountname.get(user);
213                         if (account && InspIRCd::Match(*account, mask.substr(2)))
214                                 return MOD_RES_DENY;
215                 }
216                 return MOD_RES_PASSTHRU;
217         }
218
219         ModResult OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
220         {
221                 return OnUserPreMessage(user, dest, target_type, text, status, exempt_list);
222         }
223
224         ModResult OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven)
225         {
226                 if (!IS_LOCAL(user))
227                         return MOD_RES_PASSTHRU;
228
229                 std::string *account = accountname.get(user);
230                 bool is_registered = account && !account->empty();
231
232                 if (chan)
233                 {
234                         if ((ServerInstance->ULine(user->nick.c_str())) || (ServerInstance->ULine(user->server)))
235                         {
236                                 // user is ulined, won't be stopped from joining
237                                 return MOD_RES_PASSTHRU;
238                         }
239
240                         if (chan->IsModeSet('R'))
241                         {
242                                 if (!is_registered)
243                                 {
244                                         // joining a +R channel and not identified
245                                         user->WriteNumeric(477, user->nick + " " + chan->name + " :You need to be identified to a registered account to join this channel");
246                                         return MOD_RES_DENY;
247                                 }
248                         }
249                 }
250                 return MOD_RES_PASSTHRU;
251         }
252
253         // Whenever the linking module receives metadata from another server and doesnt know what
254         // to do with it (of course, hence the 'meta') it calls this method, and it is up to each
255         // module in turn to figure out if this metadata key belongs to them, and what they want
256         // to do with it.
257         // In our case we're only sending a single string around, so we just construct a std::string.
258         // Some modules will probably get much more complex and format more detailed structs and classes
259         // in a textual way for sending over the link.
260         void OnDecodeMetaData(Extensible* target, const std::string &extname, const std::string &extdata)
261         {
262                 User* dest = dynamic_cast<User*>(target);
263                 // check if its our metadata key, and its associated with a user
264                 if (dest && (extname == "accountname"))
265                 {
266                         std::string *account = accountname.get(dest);
267                         if (account && !account->empty())
268                         {
269                                 trim(*account);
270
271                                 if (IS_LOCAL(dest))
272                                         dest->WriteNumeric(900, "%s %s %s :You are now logged in as %s",
273                                                 dest->nick.c_str(), dest->GetFullHost().c_str(), account->c_str(), account->c_str());
274
275                                 AccountEvent(this, dest, *account).Send();
276                         }
277                         else
278                         {
279                                 AccountEvent(this, dest, "").Send();
280                         }
281                 }
282         }
283
284         ModResult OnSetConnectClass(LocalUser* user, ConnectClass* myclass)
285         {
286                 if (myclass->config->getBool("requireaccount") && !accountname.get(user))
287                         return MOD_RES_DENY;
288                 return MOD_RES_PASSTHRU;
289         }
290
291         Version GetVersion()
292         {
293                 return Version("Provides support for ircu-style services accounts, including chmode +R, etc.",VF_OPTCOMMON|VF_VENDOR);
294         }
295 };
296
297 MODULE_INIT(ModuleServicesAccount)