]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_nonicks.cpp
Merge pull request #92 from Robby-/insp20-headers
[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 ModeHandler
27 {
28  public:
29         NoNicks(Module* Creator) : ModeHandler(Creator, "nonick", 'N', PARAM_NONE, MODETYPE_CHANNEL) { }
30
31         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
32         {
33                 if (adding)
34                 {
35                         if (!channel->IsModeSet('N'))
36                         {
37                                 channel->SetMode('N',true);
38                                 return MODEACTION_ALLOW;
39                         }
40                 }
41                 else
42                 {
43                         if (channel->IsModeSet('N'))
44                         {
45                                 channel->SetMode('N',false);
46                                 return MODEACTION_ALLOW;
47                         }
48                 }
49
50                 return MODEACTION_DENY;
51         }
52 };
53
54 class ModuleNoNickChange : public Module
55 {
56         NoNicks nn;
57         bool override;
58  public:
59         ModuleNoNickChange() : nn(this)
60         {
61                 OnRehash(NULL);
62                 ServerInstance->Modes->AddMode(&nn);
63                 Implementation eventlist[] = { I_OnUserPreNick, I_On005Numeric, I_OnRehash };
64                 ServerInstance->Modules->Attach(eventlist, this, 3);
65         }
66
67         virtual ~ModuleNoNickChange()
68         {
69         }
70
71         virtual Version GetVersion()
72         {
73                 return Version("Provides support for channel mode +N & extban +b N: which prevents nick changes on channel", VF_VENDOR);
74         }
75
76
77         virtual void On005Numeric(std::string &output)
78         {
79                 ServerInstance->AddExtBanChar('N');
80         }
81
82         virtual ModResult OnUserPreNick(User* user, const std::string &newnick)
83         {
84                 if (!IS_LOCAL(user))
85                         return MOD_RES_PASSTHRU;
86
87                 // Allow forced nick changes.
88                 if (ServerInstance->NICKForced.get(user))
89                         return MOD_RES_PASSTHRU;
90
91                 for (UCListIter i = user->chans.begin(); i != user->chans.end(); i++)
92                 {
93                         Channel* curr = *i;
94
95                         ModResult res = ServerInstance->OnCheckExemption(user,curr,"nonick");
96
97                         if (res == MOD_RES_ALLOW)
98                                 continue;
99
100                         if (override && IS_OPER(user))
101                                 continue;
102
103                         if (!curr->GetExtBanStatus(user, 'N').check(!curr->IsModeSet('N')))
104                         {
105                                 user->WriteNumeric(ERR_CANTCHANGENICK, "%s :Can't change nickname while on %s (+N is set)",
106                                         user->nick.c_str(), curr->name.c_str());
107                                 return MOD_RES_DENY;
108                         }
109                 }
110
111                 return MOD_RES_PASSTHRU;
112         }
113
114         virtual void OnRehash(User* user)
115         {
116                 ConfigReader Conf;
117                 override = Conf.ReadFlag("nonicks", "operoverride", "no", 0);
118         }
119 };
120
121 MODULE_INIT(ModuleNoNickChange)