]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_gecosban.cpp
Fix typo opermoth -> opermotd. Thanks Ankit.
[user/henk/code/inspircd.git] / src / modules / m_gecosban.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15
16 /* $ModDesc: Implements extban +b r: - realname (gecos) bans */
17
18 class ModuleGecosBan : public Module
19 {
20  private:
21  public:
22         ModuleGecosBan(InspIRCd* Me) : Module(Me)
23         {
24                 Implementation eventlist[] = { I_OnUserPreJoin, I_On005Numeric };
25                 ServerInstance->Modules->Attach(eventlist, this, 2);
26         }
27
28         virtual ~ModuleGecosBan()
29         {
30         }
31
32         virtual Version GetVersion()
33         {
34                 return Version("$Id$", VF_VENDOR, API_VERSION);
35         }
36
37         virtual int OnUserPreJoin(User *user, Channel *c, const char *cname, std::string &privs, const std::string &key)
38         {
39                 if (!IS_LOCAL(user))
40                         return 0;
41
42                 if (!c)
43                         return 0;
44
45                 if (c->IsExtBanned(user->fullname, 'r'))
46                 {
47                         user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Cannot join channel (You're banned)", user->nick.c_str(),  c->name.c_str());
48                         return 1;
49                 }
50
51                 return 0;
52         }
53
54         virtual void On005Numeric(std::string &output)
55         {
56                 ServerInstance->AddExtBanChar('r');
57         }
58 };
59
60
61 MODULE_INIT(ModuleGecosBan)
62