summaryrefslogtreecommitdiff
path: root/src/modules/m_quitban.cpp
blob: 00a47beebfd8696526933518dae3e7c7266639a3 (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
/*       +------------------------------------+
 *       | Inspire Internet Relay Chat Daemon |
 *       +------------------------------------+
 *
 *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
 * See: http://www.inspircd.org/wiki/index.php/Credits
 *
 * This program is free but copyrighted software; see
 *            the file COPYING for details.
 *
 * ---------------------------------------------------
 */

#include "inspircd.h"
#include "xline.h"

/* $ModDesc: Creates a snomask with notices whenever a new channel is created */

class ModuleChanCreate : public Module
{
 private:
	clonemap quits;
	unsigned int threshold;
	unsigned int banduration;
 public:
	ModuleChanCreate(InspIRCd* Me) : Module(Me)
	{
		Implementation eventlist[] = { I_OnUserDisconnect, I_OnGarbageCollect, I_OnRehash };
		ServerInstance->Modules->Attach(eventlist, this, 3);
		OnRehash(NULL, "");
	}
	
	virtual ~ModuleChanCreate()
	{
	}
	
	virtual Version GetVersion()
	{
		return Version(1,1,0,0,VF_VENDOR,API_VERSION);
	}

	virtual void OnRehash(User* user, const std::string &parameter)
	{
		ConfigReader Conf(ServerInstance);
		std::string duration;

		threshold = Conf.ReadInteger("quitban", "threshold", 0, true);

		if (threshold == 0)
			threshold = 10;

		duration = Conf.ReadValue("quitban", "duration", 0, true);

		if (duration.empty())
			duration = "10m";

		banduration = ServerInstance->Duration(duration);
	}

	virtual void OnUserDisconnect(User *u)
	{
		clonemap::iterator i = quits.find(u->GetIPString());

		if (i != quits.end())
		{
			i->second++;
			ServerInstance->Log(DEBUG, "quitban: Count for IP is now %d", i->second);

			if (i->second >= threshold)
			{
				// Create zline for set duration.
				ZLine* zl = new ZLine(ServerInstance, ServerInstance->Time(), banduration, ServerInstance->Config->ServerName, "Quit flooding", u->GetIPString());
				if (ServerInstance->XLines->AddLine(zl,NULL))
					ServerInstance->XLines->ApplyLines();
				else
					delete zl;

				ServerInstance->SNO->WriteToSnoMask('x', "Quit flooding from IP %s (%d)", u->GetIPString(), threshold);
			}
		}
		else
		{
			quits[u->GetIPString()] = 1;
			ServerInstance->Log(DEBUG, "quitban: Added new record");
		}
	}

	virtual void OnGarbageCollect()
	{
		ServerInstance->Log(DEBUG, "quitban: Clearing map.");
		quits.clear();
	}
};

MODULE_INIT(ModuleChanCreate)