]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_xline/cmd_kline.cpp
Add the reason to xline removal notices. (#1545)
[user/henk/code/inspircd.git] / src / coremods / core_xline / cmd_kline.cpp
index db8862d37474636213fd6d1b36a044437a861f8f..6499b6b0029dc8c2b249eec2e07dadc535de99b7 100644 (file)
@@ -31,7 +31,7 @@ CommandKline::CommandKline(Module* parent)
 
 /** Handle /KLINE
  */
-CmdResult CommandKline::Handle (const std::vector<std::string>& parameters, User *user)
+CmdResult CommandKline::Handle(User* user, const Params& parameters)
 {
        std::string target = parameters[0];
 
@@ -50,7 +50,7 @@ CmdResult CommandKline::Handle (const std::vector<std::string>& parameters, User
 
                if (ih.first.empty())
                {
-                       user->WriteNotice("*** Target not found");
+                       user->WriteNotice("*** Target not found.");
                        return CMD_FAILURE;
                }
 
@@ -60,11 +60,16 @@ CmdResult CommandKline::Handle (const std::vector<std::string>& parameters, User
 
                if (target.find('!') != std::string::npos)
                {
-                       user->WriteNotice("*** K-Line cannot operate on nick!user@host masks");
+                       user->WriteNotice("*** K-line cannot operate on nick!user@host masks.");
                        return CMD_FAILURE;
                }
 
-               unsigned long duration = InspIRCd::Duration(parameters[1]);
+               unsigned long duration;
+               if (!InspIRCd::Duration(parameters[1], duration))
+               {
+                       user->WriteNotice("*** Invalid duration for K-line.");
+                       return CMD_FAILURE;
+               }
                KLine* kl = new KLine(ServerInstance->Time(), duration, user->nick.c_str(), parameters[2].c_str(), ih.first.c_str(), ih.second.c_str());
                if (ServerInstance->XLines->AddLine(kl,user))
                {
@@ -85,18 +90,20 @@ CmdResult CommandKline::Handle (const std::vector<std::string>& parameters, User
                else
                {
                        delete kl;
-                       user->WriteNotice("*** K-Line for " + target + " already exists");
+                       user->WriteNotice("*** K-line for " + target + " already exists.");
                }
        }
        else
        {
-               if (ServerInstance->XLines->DelLine(target.c_str(),"K",user))
+               std::string reason;
+
+               if (ServerInstance->XLines->DelLine(target.c_str(), "K", reason, user))
                {
-                       ServerInstance->SNO->WriteToSnoMask('x',"%s removed K-line on %s",user->nick.c_str(),target.c_str());
+                       ServerInstance->SNO->WriteToSnoMask('x', "%s removed K-line on %s: %s", user->nick.c_str(), target.c_str(), reason.c_str());
                }
                else
                {
-                       user->WriteNotice("*** K-Line " + target + " not found in list, try /stats k.");
+                       user->WriteNotice("*** K-line " + target + " not found in list, try /stats k.");
                }
        }