]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_servprotect.cpp
fix some unitialised vectors and tidy up a bit.
[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 };
52                 ServerInstance->Modules->Attach(eventlist, this, 3);
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 OnKill(User* src, User* dst, const std::string &reason)
76         {
77                 if (src == NULL)
78                         return 0;
79
80                 if (dst->IsModeSet('k'))
81                 {
82                         src->WriteNumeric(485, "%s :You are not allowed to kill %s Services!", src->nick, ServerInstance->Config->Network);
83                         ServerInstance->SNO->WriteToSnoMask('A', std::string(src->nick)+" tried to kill service "+dst->nick+" ("+reason+")");
84                         return 1;
85                 }
86                 return 0;
87         }
88
89         virtual int OnWhoisLine(User* src, User* dst, int &numeric, std::string &text)
90         {
91                 return ((src != dst) && (numeric == 319) && dst->IsModeSet('k'));
92         }
93 };
94
95
96 MODULE_INIT(ModuleServProtectMode)