]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_hideoper.cpp
7e919fcc6934ba64cdcd3ddfa48443cda922f229
[user/henk/code/inspircd.git] / src / modules / m_hideoper.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 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 #include "inspircd.h"
15
16 /* $ModDesc: Provides support for hiding oper status with user mode +H */
17
18 /** Handles user mode +H
19  */
20 class HideOper : public ModeHandler
21 {
22  public:
23         HideOper(Module* Creator) : ModeHandler(Creator, "hideoper", 'H', PARAM_NONE, MODETYPE_USER)
24         {
25                 oper = true;
26         }
27
28         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
29         {
30                 if (adding)
31                 {
32                         if (!dest->IsModeSet('H'))
33                         {
34                                 dest->SetMode('H',true);
35                                 return MODEACTION_ALLOW;
36                         }
37                 }
38                 else
39                 {
40                         if (dest->IsModeSet('H'))
41                         {
42                                 dest->SetMode('H',false);
43                                 return MODEACTION_ALLOW;
44                         }
45                 }
46
47                 return MODEACTION_DENY;
48         }
49 };
50
51 class ModuleHideOper : public Module
52 {
53         HideOper hm;
54  public:
55         ModuleHideOper()
56                 : hm(this)
57         {
58                 if (!ServerInstance->Modes->AddMode(&hm))
59                         throw ModuleException("Could not add new modes!");
60                 Implementation eventlist[] = { I_OnWhoisLine, I_OnSendWhoLine };
61                 ServerInstance->Modules->Attach(eventlist, this, 2);
62         }
63
64
65         virtual ~ModuleHideOper()
66         {
67         }
68
69         virtual Version GetVersion()
70         {
71                 return Version("Provides support for hiding oper status with user mode +H", VF_VENDOR);
72         }
73
74         ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)
75         {
76                 /* Dont display numeric 313 (RPL_WHOISOPER) if they have +H set and the
77                  * person doing the WHOIS is not an oper
78                  */
79                 if (numeric != 313)
80                         return MOD_RES_PASSTHRU;
81
82                 if (!dest->IsModeSet('H'))
83                         return MOD_RES_PASSTHRU;
84
85                 if (!user->HasPrivPermission("users/auspex"))
86                         return MOD_RES_DENY;
87
88                 return MOD_RES_PASSTHRU;
89         }
90
91         void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, std::string& line)
92         {
93                 if (user->IsModeSet('H') && !source->HasPrivPermission("users/auspex"))
94                 {
95                         // hide the "*" that marks the user as an oper from the /WHO line
96                         std::string::size_type pos = line.find("* ");
97                         if (pos != std::string::npos)
98                                 line.erase(pos);
99                         // hide the line completely if doing a "/who * o" query
100                         if (params.size() > 1 && params[1].find('o') != std::string::npos)
101                                 line.clear();
102                 }
103         }
104 };
105
106
107 MODULE_INIT(ModuleHideOper)