]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_gline.cpp
Nuke trailing spaces
[user/henk/code/inspircd.git] / src / commands / cmd_gline.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "xline.h"
16 #include "commands/cmd_gline.h"
17
18 extern "C" DllExport Command* init_command(InspIRCd* Instance)
19 {
20         return new CommandGline(Instance);
21 }
22
23 /** Handle /GLINE
24  */
25 CmdResult CommandGline::Handle (const std::vector<std::string>& parameters, User *user)
26 {
27         std::string target = parameters[0];
28
29         if (parameters.size() >= 3)
30         {
31                 IdentHostPair ih;
32                 User* find = ServerInstance->FindNick(target.c_str());
33                 if (find)
34                 {
35                         ih.first = "*";
36                         ih.second = find->GetIPString();
37                         target = std::string("*@") + find->GetIPString();
38                 }
39                 else
40                         ih = ServerInstance->XLines->IdentSplit(target.c_str());
41
42                 if (ih.first.empty())
43                 {
44                         user->WriteServ("NOTICE %s :*** Target not found", user->nick.c_str());
45                         return CMD_FAILURE;
46                 }
47
48                 if (ServerInstance->HostMatchesEveryone(ih.first+"@"+ih.second,user))
49                         return CMD_FAILURE;
50
51                 else if (target.find('!') != std::string::npos)
52                 {
53                         user->WriteServ("NOTICE %s :*** G-Line cannot operate on nick!user@host masks",user->nick.c_str());
54                         return CMD_FAILURE;
55                 }
56
57                 long duration = ServerInstance->Duration(parameters[1].c_str());
58                 GLine* gl = new GLine(ServerInstance, ServerInstance->Time(), duration, user->nick.c_str(), parameters[2].c_str(), ih.first.c_str(), ih.second.c_str());
59                 if (ServerInstance->XLines->AddLine(gl, user))
60                 {
61                         if (!duration)
62                         {
63                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent G-line for %s: %s",user->nick.c_str(),target.c_str(), parameters[2].c_str());
64                         }
65                         else
66                         {
67                                 time_t c_requires_crap = duration + ServerInstance->Time();
68                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added timed G-line for %s, expires on %s: %s",user->nick.c_str(),target.c_str(),
69                                                 ServerInstance->TimeString(c_requires_crap).c_str(), parameters[2].c_str());
70                         }
71
72                         ServerInstance->XLines->ApplyLines();
73                 }
74                 else
75                 {
76                         delete gl;
77                         user->WriteServ("NOTICE %s :*** G-Line for %s already exists",user->nick.c_str(),target.c_str());
78                 }
79
80         }
81         else
82         {
83                 if (ServerInstance->XLines->DelLine(target.c_str(),"G",user))
84                 {
85                         ServerInstance->SNO->WriteToSnoMask('x',"%s Removed G-line on %s.",user->nick.c_str(),target.c_str());
86                 }
87                 else
88                 {
89                         user->WriteServ("NOTICE %s :*** G-line %s not found in list, try /stats g.",user->nick.c_str(),target.c_str());
90                 }
91         }
92
93         return CMD_SUCCESS;
94 }