]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_user/cmd_nick.cpp
Merge pull request #1054 from SaberUK/master+fix-linking-modules
[user/henk/code/inspircd.git] / src / coremods / core_user / cmd_nick.cpp
index 1b25616dd35ca428f996b3bd87660481d434caaa..a62e1c207ca87717b6d6fa1237e0e6effa9432e2 100644 (file)
@@ -61,7 +61,29 @@ CmdResult CommandNick::HandleLocal(const std::vector<std::string>& parameters, L
                return CMD_FAILURE;
        }
 
-       if (!user->ChangeNick(newnick, false))
+       ModResult MOD_RESULT;
+       FIRST_MOD_RESULT(OnUserPreNick, MOD_RESULT, (user, newnick));
+
+       // If a module denied the change, abort now
+       if (MOD_RESULT == MOD_RES_DENY)
+               return CMD_FAILURE;
+
+       // Disallow the nick change if <security:restrictbannedusers> is on and there is a ban matching this user in
+       // one of the channels they are on
+       if (ServerInstance->Config->RestrictBannedUsers)
+       {
+               for (User::ChanList::iterator i = user->chans.begin(); i != user->chans.end(); ++i)
+               {
+                       Channel* chan = (*i)->chan;
+                       if (chan->GetPrefixValue(user) < VOICE_VALUE && chan->IsBanned(user))
+                       {
+                               user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s :Cannot send to channel (you're banned)", chan->name.c_str());
+                               return CMD_FAILURE;
+                       }
+               }
+       }
+
+       if (!user->ChangeNick(newnick))
                return CMD_FAILURE;
 
        if (user->registered < REG_NICKUSER)