]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_eline.cpp
Change the function name because gcc is dumb :/
[user/henk/code/inspircd.git] / src / commands / cmd_eline.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 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_eline.h"
17
18 extern "C" DllExport Command* init_command(InspIRCd* Instance)
19 {
20         return new CommandEline(Instance);
21 }
22
23 /** Handle /ELINE
24  */
25 CmdResult CommandEline::Handle (const char* const* parameters, int pcnt, User *user)
26 {
27         std::string target = parameters[0];
28         
29         if (pcnt >= 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);
45             return CMD_FAILURE;
46         }
47
48                 if (ServerInstance->HostMatchesEveryone(ih.first+"@"+ih.second,user))
49                         return CMD_FAILURE;
50
51                 long duration = ServerInstance->Duration(parameters[1]);
52
53                 ELine* el = new ELine(ServerInstance, ServerInstance->Time(), duration, user->nick, parameters[2], ih.first.c_str(), ih.second.c_str());
54                 if (ServerInstance->XLines->AddLine(el, user))
55                 {
56                         if (!duration)
57                         {
58                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent E-line for %s.",user->nick,target.c_str());
59                         }
60                         else
61                         {
62                                 time_t c_requires_crap = duration + ServerInstance->Time();
63                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added timed E-line for %s, expires on %s",user->nick,target.c_str(),
64                                                 ServerInstance->TimeString(c_requires_crap).c_str());
65                         }
66                 }
67                 else
68                 {
69                         delete el;
70                         user->WriteServ("NOTICE %s :*** E-Line for %s already exists",user->nick,target.c_str());
71                 }
72         }
73         else
74         {
75                 if (ServerInstance->XLines->DelLine(target.c_str(), "E", user))
76                 {
77                         ServerInstance->SNO->WriteToSnoMask('x',"%s Removed E-line on %s.",user->nick,target.c_str());
78                 }
79                 else
80                 {
81                         user->WriteServ("NOTICE %s :*** E-Line %s not found in list, try /stats e.",user->nick,target.c_str());
82                 }
83         }
84
85         return CMD_SUCCESS;
86 }