]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_nonicks.cpp
Merge insp20
[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 class NoNicks : public SimpleChannelModeHandler
25 {
26  public:
27         NoNicks(Module* Creator) : SimpleChannelModeHandler(Creator, "nonick", 'N') { }
28 };
29
30 class ModuleNoNickChange : public Module
31 {
32         NoNicks nn;
33         bool override;
34  public:
35         ModuleNoNickChange() : nn(this)
36         {
37         }
38
39         void init() CXX11_OVERRIDE
40         {
41                 OnRehash(NULL);
42                 ServerInstance->Modules->AddService(nn);
43         }
44
45         Version GetVersion() CXX11_OVERRIDE
46         {
47                 return Version("Provides support for channel mode +N & extban +b N: which prevents nick changes on channel", VF_VENDOR);
48         }
49
50         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
51         {
52                 tokens["EXTBAN"].push_back('N');
53         }
54
55         ModResult OnUserPreNick(User* user, const std::string &newnick) CXX11_OVERRIDE
56         {
57                 if (!IS_LOCAL(user))
58                         return MOD_RES_PASSTHRU;
59
60                 for (UCListIter i = user->chans.begin(); i != user->chans.end(); i++)
61                 {
62                         Channel* curr = *i;
63
64                         ModResult res = ServerInstance->OnCheckExemption(user,curr,"nonick");
65
66                         if (res == MOD_RES_ALLOW)
67                                 continue;
68
69                         if (override && user->IsOper())
70                                 continue;
71
72                         if (!curr->GetExtBanStatus(user, 'N').check(!curr->IsModeSet(nn)))
73                         {
74                                 user->WriteNumeric(ERR_CANTCHANGENICK, "%s :Can't change nickname while on %s (+N is set)",
75                                         user->nick.c_str(), curr->name.c_str());
76                                 return MOD_RES_DENY;
77                         }
78                 }
79
80                 return MOD_RES_PASSTHRU;
81         }
82
83         void OnRehash(User* user) CXX11_OVERRIDE
84         {
85                 override = ServerInstance->Config->ConfValue("nonicks")->getBool("operoverride", false);
86         }
87 };
88
89 MODULE_INIT(ModuleNoNickChange)