]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spy.cpp
0cc6605370849118250835862b29d1e000cdc0be
[user/henk/code/inspircd.git] / src / modules / m_spy.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $ModDesc: Provides the ability to see the complete names list of channels an oper is not a member of */
15
16 #include "inspircd.h"
17
18 class ModuleSpy : public Module
19 {
20  public:
21         ModuleSpy(InspIRCd* Me) : Module(Me)
22         {
23                 ServerInstance->Modules->Attach(I_OnUserList, this);
24         }
25
26         virtual ModResult OnUserList(User* user, Channel* Ptr)
27         {
28                 /* User has priv and is NOT on the channel */
29                 if (user->HasPrivPermission("channels/auspex") && !Ptr->HasUser(user))
30                         return MOD_RES_ALLOW;
31
32                 return MOD_RES_PASSTHRU;
33         }
34
35         void Prioritize()
36         {
37                 /* To ensure that we get priority over namesx and delayjoin for names list generation */
38                 Module* list[] = { ServerInstance->Modules->Find("m_namesx.so"), ServerInstance->Modules->Find("m_delayjoin.so") };
39                 ServerInstance->Modules->SetPriority(this, I_OnUserList, PRIORITY_BEFORE, list, 2);
40         }
41
42         virtual ~ModuleSpy()
43         {
44         }
45
46         virtual Version GetVersion()
47         {
48                 return Version("Provides the ability to see the complete names list of channels an oper is not a member of", VF_VENDOR, API_VERSION);
49         }
50 };
51
52 MODULE_INIT(ModuleSpy)
53