diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-14 12:09:40 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-14 12:09:40 +0000 |
commit | a82061b65b849ab65692d125b3e35f0929815733 (patch) | |
tree | ee96e3715be553fcb2b8eb5dbba0e3a84320cf4e /src/modules/m_nonicks.cpp | |
parent | ac71a039c396c323ec5e32e389f0a165a0e21473 (diff) |
Merge m_nickban into m_nonicks
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10018 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_nonicks.cpp')
-rw-r--r-- | src/modules/m_nonicks.cpp | 44 |
1 files changed, 27 insertions, 17 deletions
diff --git a/src/modules/m_nonicks.cpp b/src/modules/m_nonicks.cpp index ed02af39f..7405c7149 100644 --- a/src/modules/m_nonicks.cpp +++ b/src/modules/m_nonicks.cpp @@ -13,7 +13,7 @@ #include "inspircd.h" -/* $ModDesc: Provides support for channel mode +N which prevents nick changes on channel */ +/* $ModDesc: Provides support for channel mode +N & extban +b N: which prevents nick changes on channel */ class NoNicks : public ModeHandler { @@ -47,14 +47,13 @@ class ModuleNoNickChange : public Module { NoNicks* nn; public: - ModuleNoNickChange(InspIRCd* Me) - : Module(Me) + ModuleNoNickChange(InspIRCd* Me) : Module(Me) { nn = new NoNicks(ServerInstance); ServerInstance->Modes->AddMode(nn); - Implementation eventlist[] = { I_OnUserPreNick }; - ServerInstance->Modules->Attach(eventlist, this, 1); + Implementation eventlist[] = { I_OnUserPreNick, I_On005Numeric }; + ServerInstance->Modules->Attach(eventlist, this, 2); } virtual ~ModuleNoNickChange() @@ -69,25 +68,36 @@ class ModuleNoNickChange : public Module } + virtual void On005Numeric(std::string &output) + { + ServerInstance->AddExtBanChar("n"); + } + virtual int OnUserPreNick(User* user, const std::string &newnick) { - if (IS_LOCAL(user)) + if (!IS_LOCAL(user)) + return 0; + + if (isdigit(newnick[0])) /* don't even think about touching a switch to uid! */ + return 0; + + for (UCListIter i = user->chans.begin(); i != user->chans.end(); i++) { - if (isdigit(newnick[0])) /* don't even think about touching a switch to uid! */ - return 0; + Channel* curr = i->first; - for (UCListIter i = user->chans.begin(); i != user->chans.end(); i++) + if (curr->IsModeSet('N')) { - Channel* curr = i->first; + if (CHANOPS_EXEMPT(ServerInstance, 'N') && curr->GetStatus(user) == STATUS_OP) + continue; - if (curr->IsModeSet('N')) - { - if (CHANOPS_EXEMPT(ServerInstance, 'N') && curr->GetStatus(user) == STATUS_OP) - continue; + user->WriteNumeric(ERR_CANTCHANGENICK, "%s :Can't change nickname while on %s (+N is set)", user->nick.c_str(), curr->name.c_str()); + return 1; + } - user->WriteNumeric(ERR_CANTCHANGENICK, "%s :Can't change nickname while on %s (+N is set)", user->nick.c_str(), curr->name.c_str()); - return 1; - } + if (curr->IsExtBanned(user, 'N')) + { + user->WriteNumeric(ERR_CANTCHANGENICK, "%s :Can't change nickname while on %s (+N is set)", user->nick.c_str(), curr->name.c_str()); + return 1; } } |