X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_knock.cpp;h=8779804c53916daff99822b6b6b6863977f1ebde;hb=fea1a27cb96a114f698eedcf90401b78406108fb;hp=a6d0812feaa1c0c70680a060aebd3c43ea832297;hpb=37034b9f6e4837bbc2d89d70ead8d9965d04855c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_knock.cpp b/src/modules/m_knock.cpp index a6d0812fe..8779804c5 100644 --- a/src/modules/m_knock.cpp +++ b/src/modules/m_knock.cpp @@ -1,94 +1,158 @@ -// Globops and +g support module by C.J.Edwards +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. + * E-mail: + * + * + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +using namespace std; #include #include #include "users.h" #include "channels.h" #include "modules.h" +#include "helperfuncs.h" + +/* $ModDesc: Provides support for /KNOCK and mode +K */ -/* $ModDesc: Provides support for unreal-style GLOBOPS and umode +g */ +static Server *Srv; -Server *Srv; - -void handle_globops(char **parameters, int pcnt, userrec *user) +class cmd_knock : public command_t { - std::string line = "*** GLOBOPS - From " + std::string(user->nick) + ": "; - for (int i = 0; i < pcnt; i++) + public: + cmd_knock () : command_t("KNOCK", 0, 2) { - line = line + std::string(parameters[i]) + " "; + this->source = "m_knock.so"; + syntax = " "; } - Srv->SendToModeMask("og",WM_AND,line); -} + + void Handle (const char** parameters, int pcnt, userrec *user) + { + chanrec* c = Srv->FindChannel(parameters[0]); + if (!c) + { + user->WriteServ("401 %s %s :No such channel",user->nick, parameters[0]); + return; + } + + std::string line = ""; + + if (c->IsModeSet('K')) + { + user->WriteServ("480 %s :Can't KNOCK on %s, +K is set.",user->nick, c->name); + return; + } + + for (int i = 1; i < pcnt - 1; i++) + { + line = line + std::string(parameters[i]) + " "; + } + line = line + std::string(parameters[pcnt-1]); + + if (c->modes[CM_INVITEONLY]) + { + c->WriteChannelWithServ((char*)Srv->GetServerName().c_str(), "NOTICE %s :User %s is KNOCKing on %s (%s)", c->name, user->nick, c->name, line.c_str()); + user->WriteServ("NOTICE %s :KNOCKing on %s",user->nick,c->name); + return; + } + else + { + user->WriteServ("480 %s :Can't KNOCK on %s, channel is not invite only so knocking is pointless!",user->nick, c->name); + return; + } + } +}; -class ModuleGlobops : public Module +class Knock : public ModeHandler { public: - ModuleGlobops() + Knock() : ModeHandler('K', 0, 0, false, MODETYPE_CHANNEL, false) { } + + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) { - Srv = new Server; - - if (!Srv->AddExtendedMode('g',MT_CLIENT,true,0,0)) + if (adding) + { + if (!channel->IsModeSet('K')) + { + channel->SetMode('K',true); + return MODEACTION_ALLOW; + } + } + else { - Srv->Log(DEFAULT,"*** m_globops: ERROR, failed to allocate user mode +g!"); - printf("Could not claim usermode +g for this module!"); - exit(0); + if (channel->IsModeSet('K')) + { + channel->SetMode('K',false); + return MODEACTION_ALLOW; + } } - Srv->AddCommand("GLOBOPS",handle_globops,'o',1); + + return MODEACTION_DENY; } - - virtual ~ModuleGlobops() +}; + +class ModuleKnock : public Module +{ + cmd_knock* mycommand; + Knock* kn; + public: + ModuleKnock(Server* Me) : Module::Module(Me) { - delete Srv; + Srv = Me; + kn = new Knock(); + Srv->AddMode(kn, 'K'); + mycommand = new cmd_knock(); + Srv->AddCommand(mycommand); } - - virtual Version GetVersion() + + void Implements(char* List) { - return Version(1,0,0,1); + List[I_On005Numeric] = 1; } - - virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list ¶ms) + + virtual void On005Numeric(std::string &output) { - // check if this is our mode character... - if ((modechar == 'g') && (type == MT_CLIENT)) - { - // we dont actually do anything with the mode in this module - - // just tell the core its been claimed and is ok to give users. - return 1; - } - else - { - // this mode isn't ours, we have to bail and return 0 to not handle it. - return 0; - } + InsertMode(output,"K",4); } - virtual void OnOper(userrec* user) + virtual ~ModuleKnock() { - char* modes[2]; // only two parameters - modes[0] = user->nick; // first parameter is the nick - modes[1] = "+g"; // second parameter is the mode - Srv->SendMode(modes,2,user); // send these, forming the command "MODE +g" + DELETE(kn); } + virtual Version GetVersion() + { + return Version(1,0,0,1,VF_STATIC|VF_VENDOR); + } }; // stuff down here is the module-factory stuff. For basic modules you can ignore this. -class ModuleGlobopsFactory : public ModuleFactory +class ModuleKnockFactory : public ModuleFactory { public: - ModuleGlobopsFactory() + ModuleKnockFactory() { } - ~ModuleGlobopsFactory() + ~ModuleKnockFactory() { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleGlobops; + return new ModuleKnock(Me); } }; @@ -96,6 +160,6 @@ class ModuleGlobopsFactory : public ModuleFactory extern "C" void * init_module( void ) { - return new ModuleGlobopsFactory; + return new ModuleKnockFactory; }