summaryrefslogtreecommitdiff
path: root/src/modules/m_cban.cpp
blob: 7d80eb4caeb54da121a37ebd54a2f8efea2ebde4 (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
/*       +------------------------------------+
 *       | Inspire Internet Relay Chat Daemon |
 *       +------------------------------------+
 *
 *  Inspire is copyright (C) 2002-2005 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.
 *
 * ---------------------------------------------------
 */

using namespace std;

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

/* $ModDesc: Gives /cban, aka C:lines. Think Q:lines, for channels. */

extern time_t TIME;

class CBan
{
 private:
	unsigned long expiry;
	std::string chname;
	std::string reason;

 public:
	CBan(std::string cn, std::string rs, unsigned long ex)
	{
		chname = cn;
		reason = rs;
		expiry = ex;
	}

	std::string GetName()
	{
		return this->chname;
	}

	std::string GetReason()
	{
		return this->reason;
	}

	unsigned long GetExpiry()
	{
		return this->expiry;
	}
};

/* cbans is declared here, as our type is right above. Don't try move it. */
vector<CBan> cbans;

class cmd_cban : public command_t
{
 private:
	Server *Srv;

 public:
	cmd_cban (Server* Me) : command_t("CBAN", 'o', 1)
	{
		this->source = "m_cban.so";
		this->Srv = Me;
	}

	void Handle(char **parameters, int pcnt, userrec *user)
	{
		/* syntax: CBAN #channel time :reason goes here */
		/* 'time' is a human-readable timestring, like 2d3h2s. */

		std::string chname;
		std::string reason;
		unsigned long expiry;

		if (pcnt == 1)
		{
			/* form: CBAN #channel removes a CBAN */
			for (vector<CBan>::iterator myiter; myiter < cbans.end(); myiter++)
			{
				if (parameters[0] == (*myiter).GetName())
				{
					cbans.erase(myiter);
					break;
				}
			}
		}
		else if (pcnt >= 2)
		{
			/* full form to add a CBAN */
			/* XXX - checking on chnames */
			chname = parameters[0];
			expiry = TIME + Srv->CalcDuration(parameters[1]);
			reason = parameters[2];

			CBan meow(chname, reason, expiry);
			cbans.push_back(meow);
		}
	}
};

class ModuleCBan : public Module
{
	cmd_cban* mycommand;
	Server* Srv;

 public:
	ModuleCBan(Server* Me) : Module::Module(Me)
	{
		Srv = Me;
		mycommand = new cmd_cban(Srv);
		Srv->AddCommand(mycommand);
	}

	virtual int OnUserPreJoin(userrec *user, chanrec *chan, const char *cname)
	{
		/* check cbans in here, and apply as necessary. */
		log(DEBUG,"In OnUserPreJoin cbans.size() == %d",cbans.size());

		std::string chname = cname;

		for (unsigned int a = 0; a < cbans.size(); a++)
		{
			log(DEBUG,"m_cban: DEBUG: checking %s against %s in OnPreUserJoin()", chname.c_str(), cbans[a].GetName().c_str());
			if (chname == cbans[a].GetName())
			{
				/* matches CBAN */
				WriteOpers("DENY join");
				return 1;
			}
		}

		log(DEBUG,"DONE checking, allowed");

		/* Allow the change. */
		return 0;
	}

	virtual ~ModuleCBan()
	{
	}
	
	virtual Version GetVersion()
	{
		return Version(1,0,0,0,VF_VENDOR);
	}
};


class ModuleCBanFactory : public ModuleFactory
{
 public:
	ModuleCBanFactory()
	{
	}
	
	~ModuleCBanFactory()
	{
	}
	
	virtual Module * CreateModule(Server* Me)
	{
		return new ModuleCBan(Me);
	}
	
};


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