]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_nonicks.cpp
Switch <stdint.h> test to use a test file too.
[user/henk/code/inspircd.git] / src / modules / m_nonicks.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
5  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6  *   Copyright (C) 2004, 2006 Craig Edwards <craigedwards@brainbox.cc>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 /* $ModDesc: Provides support for channel mode +N & extban +b N: which prevents nick changes on channel */
25
26 class NoNicks : public SimpleChannelModeHandler
27 {
28  public:
29         NoNicks(Module* Creator) : SimpleChannelModeHandler(Creator, "nonick", 'N') { }
30 };
31
32 class ModuleNoNickChange : public Module
33 {
34         NoNicks nn;
35         bool override;
36  public:
37         ModuleNoNickChange() : nn(this)
38         {
39         }
40
41         void init()
42         {
43                 OnRehash(NULL);
44                 ServerInstance->Modules->AddService(nn);
45                 Implementation eventlist[] = { I_OnUserPreNick, I_On005Numeric, I_OnRehash };
46                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
47         }
48
49         virtual ~ModuleNoNickChange()
50         {
51         }
52
53         virtual Version GetVersion()
54         {
55                 return Version("Provides support for channel mode +N & extban +b N: which prevents nick changes on channel", VF_VENDOR);
56         }
57
58
59         virtual void On005Numeric(std::string &output)
60         {
61                 ServerInstance->AddExtBanChar('N');
62         }
63
64         virtual ModResult OnUserPreNick(User* user, const std::string &newnick)
65         {
66                 if (!IS_LOCAL(user))
67                         return MOD_RES_PASSTHRU;
68
69                 // Allow forced nick changes.
70                 if (ServerInstance->NICKForced.get(user))
71                         return MOD_RES_PASSTHRU;
72
73                 for (UCListIter i = user->chans.begin(); i != user->chans.end(); i++)
74                 {
75                         Channel* curr = *i;
76
77                         ModResult res = ServerInstance->OnCheckExemption(user,curr,"nonick");
78
79                         if (res == MOD_RES_ALLOW)
80                                 continue;
81
82                         if (override && IS_OPER(user))
83                                 continue;
84
85                         if (!curr->GetExtBanStatus(user, 'N').check(!curr->IsModeSet('N')))
86                         {
87                                 user->WriteNumeric(ERR_CANTCHANGENICK, "%s :Can't change nickname while on %s (+N is set)",
88                                         user->nick.c_str(), curr->name.c_str());
89                                 return MOD_RES_DENY;
90                         }
91                 }
92
93                 return MOD_RES_PASSTHRU;
94         }
95
96         virtual void OnRehash(User* user)
97         {
98                 override = ServerInstance->Config->ConfValue("nonicks")->getBool("operoverride", false);
99         }
100 };
101
102 MODULE_INIT(ModuleNoNickChange)