summaryrefslogtreecommitdiff
path: root/src/modules/m_showwhois.cpp
blob: dddd29406702a9eb20d2ff296ff99b1400b9b76a (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
using namespace std;

// showwhois module by typobox43
// Modified by Craig

#include "users.h"
#include "channels.h"
#include "modules.h"
#include "helperfuncs.h"

/* $ModDesc: Allows opers to set +W to see when a user uses WHOIS on them */

class ModuleShowwhois : public Module
{
		Server* Srv;

	public:
		ModuleShowwhois(Server* Me)
			: Module::Module(Me)
		{
			Srv = Me;
			Srv->AddExtendedMode('W',MT_CLIENT,true,0,0);
		}

		~ModuleShowwhois()
		{
		}

		void Implements(char* List)
		{
			List[I_OnWhois] = List[I_OnExtendedMode] = 1;
		}

		virtual Version GetVersion()
		{
			return Version(1,0,0,3,VF_STATIC);
		}

		virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list& params)
		{
			if((type == MT_CLIENT) && (modechar == 'W'))
			{
				return 1;
			}

			return 0;
		}

		virtual void OnWhois(userrec* source, userrec* dest)
		{
			if((strchr(dest->modes,'W')) && (source != dest))
			{
				WriteServ(dest->fd,"NOTICE %s :*** %s (%s@%s) did a /whois on you.",dest->nick,source->nick,source->ident,source->host);
			}
		}

};

class ModuleShowwhoisFactory : public ModuleFactory
{
	public:
		ModuleShowwhoisFactory()
		{
		}

		~ModuleShowwhoisFactory()
		{
		}

		virtual Module* CreateModule(Server* Me)
		{
			return new ModuleShowwhois(Me);
		}

};

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