summaryrefslogtreecommitdiff
path: root/src/modules/m_timedbans.cpp
blob: 7a3c714ed4d7598d0d6a3dd85f30ca4b8da197c5 (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
/*       +------------------------------------+
 *       | 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;
	std::string 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 == "@"))
		{
			TimedBan T;
			std::string channelname = parameters[0];
			unsigned long expire = Srv->Duration(parameters[1]) + time(NULL);
			char duration[MAXBUF];
			snprintf(duration,MAXBUF,"%lu",Srv->Duration(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,std::string(user->nick)+" added a timed ban on "+mask+" lasting for "+std::string(duration)+" seconds.");
		}
		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);
	}
	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");
	}
	
	virtual ~ModuleTimedBans()
	{
		delete Srv;
	}

	virtual void OnBackgroundTimer(time_t curtime)
	{
		bool again = true;
		while (again)
		{
			again = false;
			for (timedbans::iterator i = TimedBanList.begin(); i < TimedBanList.end(); i++)
			{
				if (i->expire >= curtime)
				{
					chanrec* cr = Srv->FindChannel(i->channel);
					again = true;
					if (cr)
					{
						char *setban[3];
						setban[0] = i->channel.c_str();
						setban[1] = "-b";
						setban[2] = i->mask.c_str();
						Srv->SendMode(setban,3,NULL);
						Srv->SendChannelServerNotice(Srv->GetServerName(),channel,"Timed ban on "+i->mask+" expired.");
					}
					TimedBanList.erase(i);
					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;
}