summaryrefslogtreecommitdiff
path: root/src/modules/m_timedbans.cpp
blob: 8082831f090a0a9b568e2166c509432973c0034f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*       +------------------------------------+
 *       | Inspire Internet Relay Chat Daemon |
 *       +------------------------------------+
 *
 *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
 *                       E-mail:
 *                <brain@chatspike.net>
 *           	  <Craig@chatspike.net>
 *     
 * Written by Craig Edwards, Craig McLure, and others.
 * This program is free but copyrighted software; see
 *            the file COPYING for details.
 *
 * ---------------------------------------------------
 */

/* $ModDesc: Adds timed bans */

/*
 * ToDo:
 *   Err... not a lot really.
 */ 

#include <stdio.h>
#include <vector>
#include "users.h"
#include "channels.h"
#include "modules.h"

Server *Srv;
	 
class TimedBan
{
 public:
	std::string channel;
	std::string mask;
	time_t expire;
};

typedef std::vector<TimedBan> timedbans;
timedbans TimedBanList;

void handle_tban(char **parameters, int pcnt, userrec *user)
{
	chanrec* channel = Srv->FindChannel(parameters[0]);
	if (channel)
	{
		std::string cm = Srv->ChanMode(user,channel);
		if ((cm == "%") || (cm == "@"))
		{
			if (!Srv->IsValidMask(parameters[2]))
			{
				Srv->SendServ(user->fd,"NOTICE "+std::string(user->nick)+" :Invalid ban mask");
				return;
			}
			for (timedbans::iterator i = TimedBanList.begin(); i < TimedBanList.end(); i++)
			{
				if ((!strcasecmp(i->mask.c_str(),parameters[2])) && (!strcasecmp(i->channel.c_str(),parameters[0])))
				{
					Srv->SendServ(user->fd,"NOTICE "+std::string(user->nick)+" :The ban "+std::string(parameters[2])+" is already on the banlist of "+std::string(parameters[0]));
					return;
				}
			}
			TimedBan T;
			std::string channelname = parameters[0];
			unsigned long expire = Srv->CalcDuration(parameters[1]) + time(NULL);
			if (Srv->CalcDuration(parameters[1]) < 1)
			{
				Srv->SendServ(user->fd,"NOTICE "+std::string(user->nick)+" :Invalid ban time");
				return;
			}
			char duration[MAXBUF];
			snprintf(duration,MAXBUF,"%lu",Srv->CalcDuration(parameters[1]));
			std::string mask = parameters[2];
			char *setban[3];
			setban[0] = parameters[0];
			setban[1] = "+b";
			setban[2] = parameters[2];
			// use CallCommandHandler to make it so that the user sets the mode
			// themselves
			Srv->CallCommandHandler("MODE",setban,3,user);
			T.channel = channelname;
			T.mask = mask;
			T.expire = expire;
			TimedBanList.push_back(T);
			Srv->SendChannelServerNotice(Srv->GetServerName(),channel,"NOTICE "+std::string(channel->name)+" :"+std::string(user->nick)+" added a timed ban on "+mask+" lasting for "+std::string(duration)+" seconds.");
			return;
		}
		else WriteServ(user->fd,"482 %s %s :You must be at least a half-operator to change modes on this channel",user->nick, channel->name);
		return;
	}
	WriteServ(user->fd,"401 %s %s :No such channel",user->nick, parameters[0]);
}

class ModuleTimedBans : public Module
{
 public:
	ModuleTimedBans()
	{
		Srv = new Server;
		Srv->AddCommand("TBAN",handle_tban,0,3,"m_timedbans.so");
		TimedBanList.clear();
	}
	
	virtual ~ModuleTimedBans()
	{
		delete Srv;
		TimedBanList.clear();
	}

	virtual int OnDelBan(userrec* source, chanrec* chan, std::string banmask)
	{
                for (timedbans::iterator i = TimedBanList.begin(); i < TimedBanList.end(); i++)
                {
                        if (!strcasecmp(banmask.c_str(),i->mask.c_str()))
                        {
                                TimedBanList.erase(i);
                                break;
                        }
                }
		return 0;
	}

	virtual void OnBackgroundTimer(time_t curtime)
	{
		bool again = true;
		while (again)
		{
			again = false;
			for (timedbans::iterator i = TimedBanList.begin(); i < TimedBanList.end(); i++)
			{
				if (curtime > i->expire)
				{
					chanrec* cr = Srv->FindChannel(i->channel);
					again = true;
					if (cr)
					{
						Srv->SendChannelServerNotice(Srv->GetServerName(),cr,"NOTICE "+std::string(cr->name)+" :Timed ban on "+i->mask+" expired.");
						char *setban[3];
						setban[0] = (char*)i->channel.c_str();
						setban[1] = "-b";
						setban[2] = (char*)i->mask.c_str();
						// kludge alert!
						// ::SendMode expects a userrec* to send the numeric replies
						// back to, so we create it a fake user that isnt in the user
						// hash and set its descriptor to FD_MAGIC_NUMBER so the data
						// falls into the abyss :p
						userrec* temp = new userrec;
						temp->fd = FD_MAGIC_NUMBER;
						Srv->SendMode(setban,3,temp);
						delete temp;
					}
					// we used to delete the item here, but we dont need to as the servermode above does it for us,
					break;
				}
			}
		}
	}
	
	virtual Version GetVersion()
	{
		return Version(1,0,0,0,VF_VENDOR);
	}
};


class ModuleTimedBansFactory : public ModuleFactory
{
 public:
	ModuleTimedBansFactory()
	{
	}
	
	~ModuleTimedBansFactory()
	{
	}
	
	virtual Module * CreateModule()
	{
		return new ModuleTimedBans;
	}
	
};


extern "C" void * init_module( void )
{
	return new ModuleTimedBansFactory;
}