]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_timedbans.cpp
a1f4411c3066bf93f18354a28f855cfc1b995b2c
[user/henk/code/inspircd.git] / src / modules / m_timedbans.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 /* $ModDesc: Adds timed bans */
20
21 #include <stdio.h>
22 #include <vector>
23 #include "users.h"
24 #include "channels.h"
25 #include "modules.h"
26
27 #include "hashcomp.h"
28 #include "configreader.h"
29 #include "inspircd.h"
30
31
32
33
34 class TimedBan : public classbase
35 {
36  public:
37         std::string channel;
38         std::string mask;
39         time_t expire;
40 };
41
42 typedef std::vector<TimedBan> timedbans;
43 timedbans TimedBanList;
44
45 class cmd_tban : public command_t
46 {
47  public:
48  cmd_tban (InspIRCd* Instance) : command_t(Instance,"TBAN", 0, 3)
49         {
50                 this->source = "m_timedbans.so";
51                 syntax = "<channel> <duration> <banmask>";
52         }
53
54         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
55         {
56                 chanrec* channel = ServerInstance->FindChan(parameters[0]);
57                 if (channel)
58                 {
59                         int cm = channel->GetStatus(user);
60                         if ((cm == STATUS_HOP) || (cm == STATUS_OP))
61                         {
62                                 if (!ServerInstance->IsValidMask(parameters[2]))
63                                 {
64                                         user->WriteServ("NOTICE "+std::string(user->nick)+" :Invalid ban mask");
65                                         return CMD_FAILURE;
66                                 }
67                                 for (BanList::iterator i = channel->bans.begin(); i != channel->bans.end(); i++)
68                                 {
69                                         if (!strcasecmp(i->data,parameters[2]))
70                                         {
71                                                 user->WriteServ("NOTICE "+std::string(user->nick)+" :The ban "+std::string(parameters[2])+" is already on the banlist of "+std::string(parameters[0]));
72                                                 return CMD_FAILURE;
73                                         }
74                                 }
75                                 TimedBan T;
76                                 std::string channelname = parameters[0];
77                                 unsigned long expire = ServerInstance->Duration(parameters[1]) + time(NULL);
78                                 if (ServerInstance->Duration(parameters[1]) < 1)
79                                 {
80                                         user->WriteServ("NOTICE "+std::string(user->nick)+" :Invalid ban time");
81                                         return CMD_FAILURE;
82                                 }
83                                 char duration[MAXBUF];
84                                 snprintf(duration,MAXBUF,"%lu",ServerInstance->Duration(parameters[1]));
85                                 std::string mask = parameters[2];
86                                 const char *setban[32];
87                                 setban[0] = parameters[0];
88                                 setban[1] = "+b";
89                                 setban[2] = parameters[2];
90                                 // use CallCommandHandler to make it so that the user sets the mode
91                                 // themselves
92                                 ServerInstance->CallCommandHandler("MODE",setban,3,user);
93                                 /* Check if the ban was actually added (e.g. banlist was NOT full) */
94                                 bool was_added = false;
95                                 for (BanList::iterator i = channel->bans.begin(); i != channel->bans.end(); i++)
96                                         if (!strcasecmp(i->data,mask.c_str()))
97                                                 was_added = true;
98                                 if (was_added)
99                                 {
100                                         T.channel = channelname;
101                                         T.mask = mask;
102                                         T.expire = expire;
103                                         TimedBanList.push_back(T);
104                                         channel->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :%s added a timed ban on %s lasting for %s seconds.", channel->name, user->nick, mask.c_str(), duration);
105                                         return CMD_SUCCESS;
106                                 }
107                                 return CMD_FAILURE;
108                         }
109                         else user->WriteServ("482 %s %s :You must be at least a half-operator to change modes on this channel",user->nick, channel->name);
110                         return CMD_FAILURE;
111                 }
112                 user->WriteServ("401 %s %s :No such channel",user->nick, parameters[0]);
113                 return CMD_FAILURE;
114         }
115 };
116
117 class ModuleTimedBans : public Module
118 {
119         cmd_tban* mycommand;
120  public:
121         ModuleTimedBans(InspIRCd* Me)
122                 : Module::Module(Me)
123         {
124                 
125                 mycommand = new cmd_tban(ServerInstance);
126                 ServerInstance->AddCommand(mycommand);
127                 TimedBanList.clear();
128         }
129         
130         virtual ~ModuleTimedBans()
131         {
132                 TimedBanList.clear();
133         }
134
135         void Implements(char* List)
136         {
137                 List[I_OnDelBan] = List[I_OnBackgroundTimer] = 1;
138         }
139
140         virtual int OnDelBan(userrec* source, chanrec* chan, const std::string &banmask)
141         {
142                 irc::string listitem = banmask.c_str();
143                 irc::string thischan = chan->name;
144                 for (timedbans::iterator i = TimedBanList.begin(); i < TimedBanList.end(); i++)
145                 {
146                         irc::string target = i->mask.c_str();
147                         irc::string tchan = i->channel.c_str();
148                         if ((listitem == target) && (tchan == thischan))
149                         {
150                                 TimedBanList.erase(i);
151                                 break;
152                         }
153                 }
154                 return 0;
155         }
156
157         virtual void OnBackgroundTimer(time_t curtime)
158         {
159                 bool again = true;
160                 while (again)
161                 {
162                         again = false;
163                         for (timedbans::iterator i = TimedBanList.begin(); i < TimedBanList.end(); i++)
164                         {
165                                 if (curtime > i->expire)
166                                 {
167                                         chanrec* cr = ServerInstance->FindChan(i->channel);
168                                         again = true;
169                                         if (cr)
170                                         {
171                                                 cr->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :Timed ban on %s expired.", cr->name, i->mask.c_str());
172                                                 const char *setban[3];
173                                                 setban[0] = i->channel.c_str();
174                                                 setban[1] = "-b";
175                                                 setban[2] = i->mask.c_str();
176                                                 // kludge alert!
177                                                 // ::SendMode expects a userrec* to send the numeric replies
178                                                 // back to, so we create it a fake user that isnt in the user
179                                                 // hash and set its descriptor to FD_MAGIC_NUMBER so the data
180                                                 // falls into the abyss :p
181                                                 userrec* temp = new userrec(ServerInstance);
182                                                 temp->SetFd(FD_MAGIC_NUMBER);
183                                                 /* FIX: Send mode remotely*/
184                                                 std::deque<std::string> n;
185                                                 n.push_back(setban[0]);
186                                                 n.push_back("-b");
187                                                 n.push_back(setban[2]);
188                                                 ServerInstance->SendMode(setban,3,temp);
189                                                 Event rmode((char *)&n, NULL, "send_mode");
190                                                 rmode.Send(ServerInstance);
191                                                 DELETE(temp);
192                                         }
193                                         else
194                                         {
195                                                 /* Where the hell did our channel go?! */
196                                                 TimedBanList.erase(i);
197                                         }
198                                         // we used to delete the item here, but we dont need to as the servermode above does it for us,
199                                         break;
200                                 }
201                         }
202                 }
203         }
204         
205         virtual Version GetVersion()
206         {
207                 return Version(1,0,0,0,VF_VENDOR);
208         }
209 };
210
211
212 class ModuleTimedBansFactory : public ModuleFactory
213 {
214  public:
215         ModuleTimedBansFactory()
216         {
217         }
218         
219         ~ModuleTimedBansFactory()
220         {
221         }
222         
223         virtual Module * CreateModule(InspIRCd* Me)
224         {
225                 return new ModuleTimedBans(Me);
226         }
227         
228 };
229
230
231 extern "C" void * init_module( void )
232 {
233         return new ModuleTimedBansFactory;
234 }