]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_xline/cmd_qline.cpp
Merge branch 'insp20' into master.
[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         syntax = "<nick> [<duration> :<reason>]";
31 }
32
33 CmdResult CommandQline::Handle(User* user, const Params& parameters)
34 {
35         if (parameters.size() >= 3)
36         {
37                 NickMatcher matcher;
38                 if (InsaneBan::MatchesEveryone(parameters[0], matcher, user, "Q", "nickmasks"))
39                         return CMD_FAILURE;
40
41                 if (parameters[0].find('@') != std::string::npos || parameters[0].find('!') != std::string::npos || parameters[0].find('.') != std::string::npos)
42                 {
43                         user->WriteNotice("*** A Q-Line only bans a nick pattern, not a nick!user@host pattern.");
44                         return CMD_FAILURE;
45                 }
46
47                 unsigned long duration = InspIRCd::Duration(parameters[1]);
48                 QLine* ql = new QLine(ServerInstance->Time(), duration, user->nick.c_str(), parameters[2].c_str(), parameters[0].c_str());
49                 if (ServerInstance->XLines->AddLine(ql,user))
50                 {
51                         if (!duration)
52                         {
53                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent Q-line for %s: %s",user->nick.c_str(), parameters[0].c_str(), parameters[2].c_str());
54                         }
55                         else
56                         {
57                                 time_t c_requires_crap = duration + ServerInstance->Time();
58                                 std::string timestr = InspIRCd::TimeString(c_requires_crap);
59                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added timed Q-line for %s, expires on %s: %s",user->nick.c_str(),parameters[0].c_str(),
60                                                 timestr.c_str(), parameters[2].c_str());
61                         }
62                         ServerInstance->XLines->ApplyLines();
63                 }
64                 else
65                 {
66                         delete ql;
67                         user->WriteNotice("*** Q-Line for " + parameters[0] + " already exists");
68                 }
69         }
70         else
71         {
72                 if (ServerInstance->XLines->DelLine(parameters[0].c_str(), "Q", user))
73                 {
74                         ServerInstance->SNO->WriteToSnoMask('x',"%s removed Q-line on %s",user->nick.c_str(),parameters[0].c_str());
75                 }
76                 else
77                 {
78                         user->WriteNotice("*** Q-Line " + parameters[0] + " not found in list, try /stats q.");
79                         return CMD_FAILURE;
80                 }
81         }
82
83         return CMD_SUCCESS;
84 }
85
86 bool CommandQline::NickMatcher::Check(User* user, const std::string& nick) const
87 {
88         return InspIRCd::Match(user->nick, nick);
89 }