]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_qline.cpp
Remove out of date doc and fix typo in commands/cmd_*.cpp
[user/henk/code/inspircd.git] / src / commands / 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
25 /** Handle /QLINE.  */
26 class CommandQline : public Command
27 {
28  public:
29         /** Constructor for qline.
30          */
31         CommandQline ( Module* parent) : Command(parent,"QLINE",1,3) { flags_needed = 'o'; Penalty = 0; syntax = "<nick> [<duration> :<reason>]"; }
32         /** Handle command.
33          * @param parameters The parameters to the command
34          * @param pcnt The number of parameters passed to the command
35          * @param user The user issuing the command
36          * @return A value from CmdResult to indicate command success or failure.
37          */
38         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
39 };
40
41
42 CmdResult CommandQline::Handle (const std::vector<std::string>& parameters, User *user)
43 {
44         if (parameters.size() >= 3)
45         {
46                 if (ServerInstance->NickMatchesEveryone(parameters[0],user))
47                         return CMD_FAILURE;
48
49                 if (parameters[0].find('@') != std::string::npos || parameters[0].find('!') != std::string::npos || parameters[0].find('.') != std::string::npos)
50                 {
51                         user->WriteNotice("*** A Q-Line only bans a nick pattern, not a nick!user@host pattern.");
52                         return CMD_FAILURE;
53                 }
54
55                 unsigned long duration = InspIRCd::Duration(parameters[1]);
56                 QLine* ql = new QLine(ServerInstance->Time(), duration, user->nick.c_str(), parameters[2].c_str(), parameters[0].c_str());
57                 if (ServerInstance->XLines->AddLine(ql,user))
58                 {
59                         if (!duration)
60                         {
61                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent Q-line for %s: %s",user->nick.c_str(), parameters[0].c_str(), parameters[2].c_str());
62                         }
63                         else
64                         {
65                                 time_t c_requires_crap = duration + ServerInstance->Time();
66                                 std::string timestr = InspIRCd::TimeString(c_requires_crap);
67                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added timed Q-line for %s, expires on %s: %s",user->nick.c_str(),parameters[0].c_str(),
68                                                 timestr.c_str(), parameters[2].c_str());
69                         }
70                         ServerInstance->XLines->ApplyLines();
71                 }
72                 else
73                 {
74                         delete ql;
75                         user->WriteNotice("*** Q-Line for " + parameters[0] + " already exists");
76                 }
77         }
78         else
79         {
80                 if (ServerInstance->XLines->DelLine(parameters[0].c_str(), "Q", user))
81                 {
82                         ServerInstance->SNO->WriteToSnoMask('x',"%s removed Q-line on %s",user->nick.c_str(),parameters[0].c_str());
83                 }
84                 else
85                 {
86                         user->WriteNotice("*** Q-Line " + parameters[0] + " not found in list, try /stats q.");
87                         return CMD_FAILURE;
88                 }
89         }
90
91         return CMD_SUCCESS;
92 }
93
94
95 COMMAND_INIT(CommandQline)