]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_eline.cpp
2fdb29679cd7aad85e87bd205a0cc30aba2431cd
[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** parameters, int pcnt, User *user)
26 {
27         if (pcnt >= 3)
28         {
29                 IdentHostPair ih;
30                 User* find = ServerInstance->FindNick(parameters[0]);
31                 if (find)
32                 {
33                         ih.first = "*";
34                         ih.second = find->GetIPString();
35                 }
36                 else
37                         ih = ServerInstance->XLines->IdentSplit(parameters[0]);
38
39                 if (ServerInstance->HostMatchesEveryone(ih.first+"@"+ih.second,user))
40                         return CMD_FAILURE;
41
42                 long duration = ServerInstance->Duration(parameters[1]);
43
44                 ELine* el = new ELine(ServerInstance, ServerInstance->Time(), duration, user->nick, parameters[2], ih.first.c_str(), ih.second.c_str());
45                 if (ServerInstance->XLines->AddLine(el, user))
46                 {
47                         if (!duration)
48                         {
49                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent E-line for %s.",user->nick,parameters[0]);
50                         }
51                         else
52                         {
53                                 time_t c_requires_crap = duration + ServerInstance->Time();
54                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added timed E-line for %s, expires on %s",user->nick,parameters[0],
55                                                 ServerInstance->TimeString(c_requires_crap).c_str());
56                         }
57                 }
58                 else
59                 {
60                         delete el;
61                         user->WriteServ("NOTICE %s :*** E-Line for %s already exists",user->nick,parameters[0]);
62                 }
63         }
64         else
65         {
66                 if (ServerInstance->XLines->DelLine(parameters[0], "E", user))
67                 {
68                         ServerInstance->SNO->WriteToSnoMask('x',"%s Removed E-line on %s.",user->nick,parameters[0]);
69                 }
70                 else
71                 {
72                         user->WriteServ("NOTICE %s :*** E-Line %s not found in list, try /stats e.",user->nick,parameters[0]);
73                 }
74         }
75
76         return CMD_SUCCESS;
77 }