]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_nonicks.cpp
e811b8e67c1c5a9c8e1df8fd01482481448644b0
[user/henk/code/inspircd.git] / src / modules / m_nonicks.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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: Provides support for channel mode +N & extban +b N: which prevents nick changes on channel */
17
18 class NoNicks : public ModeHandler
19 {
20  public:
21         NoNicks(Module* Creator) : ModeHandler(Creator, "nonick", 'N', PARAM_NONE, MODETYPE_CHANNEL) { }
22
23         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
24         {
25                 if (adding)
26                 {
27                         if (!channel->IsModeSet('N'))
28                         {
29                                 channel->SetMode('N',true);
30                                 return MODEACTION_ALLOW;
31                         }
32                 }
33                 else
34                 {
35                         if (channel->IsModeSet('N'))
36                         {
37                                 channel->SetMode('N',false);
38                                 return MODEACTION_ALLOW;
39                         }
40                 }
41
42                 return MODEACTION_DENY;
43         }
44 };
45
46 class ModuleNoNickChange : public Module
47 {
48         NoNicks nn;
49  public:
50         ModuleNoNickChange() : nn(this)
51         {
52                 ServerInstance->Modes->AddMode(&nn);
53                 Implementation eventlist[] = { I_OnUserPreNick, I_On005Numeric };
54                 ServerInstance->Modules->Attach(eventlist, this, 2);
55         }
56
57         virtual ~ModuleNoNickChange()
58         {
59         }
60
61         virtual Version GetVersion()
62         {
63                 return Version("Provides support for channel mode +N & extban +b N: which prevents nick changes on channel", VF_COMMON | VF_VENDOR, API_VERSION);
64         }
65
66
67         virtual void On005Numeric(std::string &output)
68         {
69                 ServerInstance->AddExtBanChar('N');
70         }
71
72         virtual ModResult OnUserPreNick(User* user, const std::string &newnick)
73         {
74                 if (!IS_LOCAL(user))
75                         return MOD_RES_PASSTHRU;
76
77                 if (isdigit(newnick[0])) /* don't even think about touching a switch to uid! */
78                         return MOD_RES_PASSTHRU;
79
80                 // Allow forced nick changes.
81                 if (User::NICKForced.get(user))
82                         return MOD_RES_PASSTHRU;
83
84                 for (UCListIter i = user->chans.begin(); i != user->chans.end(); i++)
85                 {
86                         Channel* curr = *i;
87
88                         if (CHANOPS_EXEMPT('N') && curr->GetPrefixValue(user) == OP_VALUE)
89                                 continue;
90
91                         if (!curr->GetExtBanStatus(user, 'N').check(!curr->IsModeSet('N')))
92                         {
93                                 user->WriteNumeric(ERR_CANTCHANGENICK, "%s :Can't change nickname while on %s (+N is set)",
94                                         user->nick.c_str(), curr->name.c_str());
95                                 return MOD_RES_DENY;
96                         }
97                 }
98
99                 return MOD_RES_PASSTHRU;
100         }
101 };
102
103 MODULE_INIT(ModuleNoNickChange)