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