]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_xline/cmd_qline.cpp
Merge pull request #971 from SaberUK/master+numeric-xline
[user/henk/code/inspircd.git] / src / coremods / core_xline / cmd_qline.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
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 #include "xline.h"
24 #include "core_xline.h"
25
26 CommandQline::CommandQline(Module* parent)
27         : Command(parent, "QLINE", 1, 3)
28 {
29         flags_needed = 'o';
30         Penalty = 0;
31         syntax = "<nick> [<duration> :<reason>]";
32 }
33
34 CmdResult CommandQline::Handle (const std::vector<std::string>& parameters, User *user)
35 {
36         if (parameters.size() >= 3)
37         {
38                 NickMatcher matcher;
39                 if (InsaneBan::MatchesEveryone(parameters[0], matcher, user, "Q", "nickmasks"))
40                         return CMD_FAILURE;
41
42                 if (parameters[0].find('@') != std::string::npos || parameters[0].find('!') != std::string::npos || parameters[0].find('.') != std::string::npos)
43                 {
44                         user->WriteNotice("*** A Q-Line only bans a nick pattern, not a nick!user@host pattern.");
45                         return CMD_FAILURE;
46                 }
47
48                 unsigned long duration = InspIRCd::Duration(parameters[1]);
49                 QLine* ql = new QLine(ServerInstance->Time(), duration, user->nick.c_str(), parameters[2].c_str(), parameters[0].c_str());
50                 if (ServerInstance->XLines->AddLine(ql,user))
51                 {
52                         if (!duration)
53                         {
54                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent Q-line for %s: %s",user->nick.c_str(), parameters[0].c_str(), parameters[2].c_str());
55                         }
56                         else
57                         {
58                                 time_t c_requires_crap = duration + ServerInstance->Time();
59                                 std::string timestr = InspIRCd::TimeString(c_requires_crap);
60                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added timed Q-line for %s, expires on %s: %s",user->nick.c_str(),parameters[0].c_str(),
61                                                 timestr.c_str(), parameters[2].c_str());
62                         }
63                         ServerInstance->XLines->ApplyLines();
64                 }
65                 else
66                 {
67                         delete ql;
68                         user->WriteNotice("*** Q-Line for " + parameters[0] + " already exists");
69                 }
70         }
71         else
72         {
73                 if (ServerInstance->XLines->DelLine(parameters[0].c_str(), "Q", user))
74                 {
75                         ServerInstance->SNO->WriteToSnoMask('x',"%s removed Q-line on %s",user->nick.c_str(),parameters[0].c_str());
76                 }
77                 else
78                 {
79                         user->WriteNotice("*** Q-Line " + parameters[0] + " not found in list, try /stats q.");
80                         return CMD_FAILURE;
81                 }
82         }
83
84         return CMD_SUCCESS;
85 }
86
87 bool CommandQline::NickMatcher::Check(User* user, const std::string& nick) const
88 {
89         return InspIRCd::Match(user->nick, nick);
90 }