]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_timedbans.cpp
Made SANICK not collide the user (theres no need to in the new 1.1 now we have return...
[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                                 if (channel->IsBanned(user))
68                                 {
69                                         user->WriteServ("NOTICE "+std::string(user->nick)+" :The ban "+std::string(parameters[2])+" is already on the banlist of "+std::string(parameters[0]));
70                                         return CMD_FAILURE;
71                                 }
72                                 TimedBan T;
73                                 std::string channelname = parameters[0];
74                                 unsigned long expire = ServerInstance->Duration(parameters[1]) + time(NULL);
75                                 if (ServerInstance->Duration(parameters[1]) < 1)
76                                 {
77                                         user->WriteServ("NOTICE "+std::string(user->nick)+" :Invalid ban time");
78                                         return CMD_FAILURE;
79                                 }
80                                 char duration[MAXBUF];
81                                 snprintf(duration,MAXBUF,"%lu",ServerInstance->Duration(parameters[1]));
82                                 std::string mask = parameters[2];
83                                 const char *setban[32];
84                                 setban[0] = parameters[0];
85                                 setban[1] = "+b";
86                                 setban[2] = parameters[2];
87                                 // use CallCommandHandler to make it so that the user sets the mode
88                                 // themselves
89                                 ServerInstance->CallCommandHandler("MODE",setban,3,user);
90                                 /* Check if the ban was actually added (e.g. banlist was NOT full) */
91                                 bool was_added = false;
92                                 for (BanList::iterator i = channel->bans.begin(); i != channel->bans.end(); i++)
93                                         if (!strcasecmp(i->data,mask.c_str()))
94                                                 was_added = true;
95                                 if (was_added)
96                                 {
97                                         T.channel = channelname;
98                                         T.mask = mask;
99                                         T.expire = expire;
100                                         TimedBanList.push_back(T);
101                                         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);
102                                         return CMD_SUCCESS;
103                                 }
104                                 return CMD_FAILURE;
105                         }
106                         else user->WriteServ("482 %s %s :You must be at least a half-operator to change modes on this channel",user->nick, channel->name);
107                         return CMD_FAILURE;
108                 }
109                 user->WriteServ("401 %s %s :No such channel",user->nick, parameters[0]);
110                 return CMD_FAILURE;
111         }
112 };
113
114 class ModuleTimedBans : public Module
115 {
116         cmd_tban* mycommand;
117  public:
118         ModuleTimedBans(InspIRCd* Me)
119                 : Module::Module(Me)
120         {
121                 
122                 mycommand = new cmd_tban(ServerInstance);
123                 ServerInstance->AddCommand(mycommand);
124                 TimedBanList.clear();
125         }
126         
127         virtual ~ModuleTimedBans()
128         {
129                 TimedBanList.clear();
130         }
131
132         void Implements(char* List)
133         {
134                 List[I_OnDelBan] = List[I_OnBackgroundTimer] = 1;
135         }
136
137         virtual int OnDelBan(userrec* source, chanrec* chan, const std::string &banmask)
138         {
139                 irc::string listitem = banmask.c_str();
140                 irc::string thischan = chan->name;
141                 for (timedbans::iterator i = TimedBanList.begin(); i < TimedBanList.end(); i++)
142                 {
143                         irc::string target = i->mask.c_str();
144                         irc::string tchan = i->channel.c_str();
145                         if ((listitem == target) && (tchan == thischan))
146                         {
147                                 TimedBanList.erase(i);
148                                 break;
149                         }
150                 }
151                 return 0;
152         }
153
154         virtual void OnBackgroundTimer(time_t curtime)
155         {
156                 bool again = true;
157                 while (again)
158                 {
159                         again = false;
160                         for (timedbans::iterator i = TimedBanList.begin(); i < TimedBanList.end(); i++)
161                         {
162                                 if (curtime > i->expire)
163                                 {
164                                         chanrec* cr = ServerInstance->FindChan(i->channel);
165                                         again = true;
166                                         if (cr)
167                                         {
168                                                 cr->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :Timed ban on %s expired.", cr->name, i->mask.c_str());
169                                                 const char *setban[3];
170                                                 setban[0] = i->channel.c_str();
171                                                 setban[1] = "-b";
172                                                 setban[2] = i->mask.c_str();
173                                                 // kludge alert!
174                                                 // ::SendMode expects a userrec* to send the numeric replies
175                                                 // back to, so we create it a fake user that isnt in the user
176                                                 // hash and set its descriptor to FD_MAGIC_NUMBER so the data
177                                                 // falls into the abyss :p
178                                                 userrec* temp = new userrec(ServerInstance);
179                                                 temp->SetFd(FD_MAGIC_NUMBER);
180                                                 /* FIX: Send mode remotely*/
181                                                 std::deque<std::string> n;
182                                                 n.push_back(setban[0]);
183                                                 n.push_back("-b");
184                                                 n.push_back(setban[2]);
185                                                 ServerInstance->SendMode(setban,3,temp);
186                                                 Event rmode((char *)&n, NULL, "send_mode");
187                                                 rmode.Send(ServerInstance);
188                                                 DELETE(temp);
189                                         }
190                                         else
191                                         {
192                                                 /* Where the hell did our channel go?! */
193                                                 TimedBanList.erase(i);
194                                         }
195                                         // we used to delete the item here, but we dont need to as the servermode above does it for us,
196                                         break;
197                                 }
198                         }
199                 }
200         }
201         
202         virtual Version GetVersion()
203         {
204                 return Version(1,0,0,0,VF_VENDOR);
205         }
206 };
207
208
209 class ModuleTimedBansFactory : public ModuleFactory
210 {
211  public:
212         ModuleTimedBansFactory()
213         {
214         }
215         
216         ~ModuleTimedBansFactory()
217         {
218         }
219         
220         virtual Module * CreateModule(InspIRCd* Me)
221         {
222                 return new ModuleTimedBans(Me);
223         }
224         
225 };
226
227
228 extern "C" void * init_module( void )
229 {
230         return new ModuleTimedBansFactory;
231 }