]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_servprotect.cpp
Revert automated conversion by Special, as it (unfortunately) neglects some details...
[user/henk/code/inspircd.git] / src / modules / m_servprotect.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/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 #include <stdio.h>
16 #include <string>
17 #include "users.h"
18 #include "channels.h"
19 #include "modules.h"
20 #include "configreader.h"
21
22 /* $ModDesc: Provides support for Austhex style +k / UnrealIRCD +S services mode */
23
24 /** Handles user mode +k
25  */
26 class ServProtectMode : public ModeHandler
27 {
28  public:
29         ServProtectMode(InspIRCd* Instance) : ModeHandler(Instance, 'k', 0, 0, false, MODETYPE_USER, true) { }
30
31         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding, bool)
32         {
33                 return MODEACTION_DENY;
34         }
35
36         bool NeedsOper() { return true; }
37 };
38
39 class ModuleServProtectMode : public Module
40 {
41
42         ServProtectMode* bm;
43  public:
44         ModuleServProtectMode(InspIRCd* Me)
45                 : Module(Me)
46         {
47
48                 bm = new ServProtectMode(ServerInstance);
49                 if (!ServerInstance->Modes->AddMode(bm))
50                         throw ModuleException("Could not add new modes!");
51                 Implementation eventlist[] = { I_OnWhois, I_OnKill, I_OnWhoisLine, I_OnRawMode, I_OnUserPreKick };
52                 ServerInstance->Modules->Attach(eventlist, this, 5);
53         }
54
55
56         virtual ~ModuleServProtectMode()
57         {
58                 ServerInstance->Modes->DelMode(bm);
59                 delete bm;
60         }
61
62         virtual Version GetVersion()
63         {
64                 return Version(1,2,0,0,VF_COMMON,API_VERSION);
65         }
66
67         virtual void OnWhois(User* src, User* dst)
68         {
69                 if (dst->IsModeSet('k'))
70                 {
71                         ServerInstance->SendWhoisLine(src, dst, 310, std::string(src->nick)+" "+std::string(dst->nick)+" :is an "+ServerInstance->Config->Network+" Service");
72                 }
73         }
74
75         virtual int OnRawMode(User* user, Channel* chan, const char mode, const std::string &param, bool adding, int pcnt, bool servermode)
76         {
77                 /* Check that the mode is not a server mode, it is being removed, the user making the change is local, there is a parameter,
78                  * and the user making the change is not a uline
79                  */
80                 if (!servermode && !adding && chan && IS_LOCAL(user) && !param.empty() && !ServerInstance->ULine(user->server))
81                 {
82                         /* Check if the parameter is a valid nick/uuid
83                          */
84                         User *u = ServerInstance->FindNick(param);
85                         if (u)
86                         {
87                                 /* The target user has +k set on themselves, and you are trying to remove a privilege mode the user has set on themselves.
88                                  * This includes any prefix permission mode, even those registered in other modules, e.g. +qaohv. Using ::ModeString()
89                                  * here means that the number of modes is restricted to only modes the user has, limiting it to as short a loop as possible.
90                                  */
91                                 if (u->IsModeSet('k') && ServerInstance->Modes->ModeString(u, chan, false).find(mode) != std::string::npos)
92                                 {
93                                         /* BZZZT, Denied! */
94                                         user->WriteNumeric(482, "%s %s :You are not permitted to remove privileges from %s services", user->nick.c_str(), chan->name.c_str(), ServerInstance->Config->Network);
95                                         return ACR_DENY;
96                                 }
97                         }
98                 }
99                 /* Mode allowed */
100                 return 0;
101         }
102
103         virtual int OnKill(User* src, User* dst, const std::string &reason)
104         {
105                 if (src == NULL)
106                         return 0;
107
108                 if (dst->IsModeSet('k'))
109                 {
110                         src->WriteNumeric(485, "%s :You are not permitted to kill %s services!", src->nick.c_str(), ServerInstance->Config->Network);
111                         ServerInstance->SNO->WriteToSnoMask('A', std::string(src->nick)+" tried to kill service "+dst->nick+" ("+reason+")");
112                         return 1;
113                 }
114                 return 0;
115         }
116
117         virtual int OnUserPreKick(User *src, User *dst, Channel *c, const std::string &reason)
118         {
119                 if (dst->IsModeSet('k'))
120                 {
121                         src->WriteNumeric(484, "%s %s :You are not permitted to kick services", src->nick.c_str(), c->name.c_str());
122                         return 1;
123                 }
124
125                 return 0;
126         }
127
128         virtual int OnWhoisLine(User* src, User* dst, int &numeric, std::string &text)
129         {
130                 return ((src != dst) && (numeric == 319) && dst->IsModeSet('k'));
131         }
132 };
133
134
135 MODULE_INIT(ModuleServProtectMode)