1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
20 #include "configreader.h"
22 /* $ModDesc: Provides support for Austhex style +k / UnrealIRCD +S services mode */
24 /** Handles user mode +k
26 class ServProtectMode : public ModeHandler
29 ServProtectMode(InspIRCd* Instance) : ModeHandler(Instance, 'k', 0, 0, false, MODETYPE_USER, true) { }
31 ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding)
33 return MODEACTION_DENY;
36 bool NeedsOper() { return true; }
39 class ModuleServProtectMode : public Module
44 ModuleServProtectMode(InspIRCd* Me)
48 bm = new ServProtectMode(ServerInstance);
49 if (!ServerInstance->AddMode(bm, 'k'))
50 throw ModuleException("Could not add new modes!");
53 void Implements(char* List)
55 List[I_OnWhois] = List[I_OnKill] = List[I_OnWhoisLine] = 1;
58 virtual ~ModuleServProtectMode()
60 ServerInstance->Modes->DelMode(bm);
64 virtual Version GetVersion()
66 return Version(1,1,0,0,VF_COMMON,API_VERSION);
69 virtual void OnWhois(userrec* src, userrec* dst)
71 if (dst->IsModeSet('k'))
73 ServerInstance->SendWhoisLine(src, dst, 310, std::string(src->nick)+" "+std::string(dst->nick)+" :is an "+ServerInstance->Config->Network+" Service");
77 virtual int OnKill(userrec* src, userrec* dst, const std::string &reason)
82 if (dst->IsModeSet('k'))
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+")");
91 virtual int OnWhoisLine(userrec* src, userrec* dst, int &numeric, std::string &text)
93 return ((src != dst) && (numeric == 319) && dst->IsModeSet('k'));
98 MODULE_INIT(ModuleServProtectMode)