]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_servprotect.cpp
In the grand tradition of huge fucking commits:
[user/henk/code/inspircd.git] / src / modules / m_servprotect.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 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)
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->AddMode(bm, 'k'))
50                         throw ModuleException("Could not add new modes!");
51         }
52
53         void Implements(char* List)
54         {
55                 List[I_OnWhois] = List[I_OnKill] = List[I_OnWhoisLine] = 1;
56         }
57         
58         virtual ~ModuleServProtectMode()
59         {
60                 ServerInstance->Modes->DelMode(bm);
61                 DELETE(bm);
62         }
63         
64         virtual Version GetVersion()
65         {
66                 return Version(1,1,0,0,VF_COMMON,API_VERSION);
67         }
68
69         virtual void OnWhois(User* src, User* dst)
70         {
71                 if (dst->IsModeSet('k'))
72                 {
73                         ServerInstance->SendWhoisLine(src, dst, 310, std::string(src->nick)+" "+std::string(dst->nick)+" :is an "+ServerInstance->Config->Network+" Service");
74                 }
75         }
76
77         virtual int OnKill(User* src, User* dst, const std::string &reason)
78         {
79                 if (src == NULL)
80                         return 0;
81
82                 if (dst->IsModeSet('k'))
83                 {
84                         src->WriteServ("485 %s :You are not allowed to kill %s Services!", src->nick, ServerInstance->Config->Network);
85                         ServerInstance->WriteOpers("*** "+std::string(src->nick)+" tried to kill service "+dst->nick+" ("+reason+")");
86                         return 1;
87                 }
88                 return 0;
89         }
90
91         virtual int OnWhoisLine(User* src, User* dst, int &numeric, std::string &text)
92         {
93                 return ((src != dst) && (numeric == 319) && dst->IsModeSet('k'));
94         }
95 };
96
97
98 MODULE_INIT(ModuleServProtectMode)