]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_remove.cpp
All modules which implement simplemodes (no parameters, not a list mode) can now...
[user/henk/code/inspircd.git] / src / modules / m_remove.cpp
index 7452b2f336a84773758560a18c3f846116473fe0..95c4543476b3de0ce29ebabad842d6d4cbf9f182 100644 (file)
@@ -1,12 +1,28 @@
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
+ *                     E-mail:
+ *              <brain@chatspike.net>
+ *              <Craig@chatspike.net>
+ *
+ * Written by Craig Edwards, Craig McLure, and others.
+ * This program is free but copyrighted software; see
+ * the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
 /* Support for a dancer-style /remove command, an alternative to /kick to try and avoid auto-rejoin-on-kick scripts */
 /* Written by Om, 25-03-05 */
 
 #include <sstream>
-#include <string>
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+#include "configreader.h"
+#include "inspircd.h"
 
 /* $ModDesc: Provides a /remove command, this is mostly an alternative to /kick, except makes users appear to have parted the channel */
 
 class RemoveBase
 {
  private: 
-       Server* Srv;
        bool& supportnokicks;
+       InspIRCd* ServerInstance;
  
  protected:
-       RemoveBase(Server* Me, bool& snk)
-       : Srv(Me), supportnokicks(snk)
+       RemoveBase(InspIRCd* Instance, bool& snk) : supportnokicks(snk), ServerInstance(Instance)
        {
        }               
  
@@ -84,21 +99,21 @@ class RemoveBase
                username = parameters[ neworder ? 1 : 0];
                
                /* Look up the user we're meant to be removing from the channel */
-               target = Srv->FindNick(username);
+               target = ServerInstance->FindNick(username);
                
                /* And the channel we're meant to be removing them from */
-               channel = Srv->FindChannel(channame);
+               channel = ServerInstance->FindChan(channame);
 
                /* Fix by brain - someone needs to learn to validate their input! */
                if (!target || !channel)
                {
-                       WriteServ(user->fd,"401 %s %s :No such nick/channel", user->nick, !target ? username : channame);
+                       user->WriteServ("401 %s %s :No such nick/channel", user->nick, !target ? username : channame);
                        return;
                }
 
                if (!channel->HasUser(target))
                {
-                       WriteServ(user->fd, "NOTICE %s :*** The user %s is not on channel %s", user->nick, target->nick, channel->name);
+                       user->WriteServ( "NOTICE %s :*** The user %s is not on channel %s", user->nick, target->nick, channel->name);
                        return;
                }       
                
@@ -107,50 +122,50 @@ class RemoveBase
                protectkey = "cm_protect_" + std::string(channel->name);
                founderkey = "cm_founder_" + std::string(channel->name);
                
-               if (Srv->IsUlined(user->server) || Srv->IsUlined(user->nick))
+               if (ServerInstance->ULine(user->server) || ServerInstance->ULine(user->nick))
                {
-                       log(DEBUG, "Setting ulevel to U");
+                       ServerInstance->Log(DEBUG, "Setting ulevel to U");
                        ulevel = chartolevel("U");
                }
                if (user->GetExt(founderkey))
                {
-                       log(DEBUG, "Setting ulevel to ~");
+                       ServerInstance->Log(DEBUG, "Setting ulevel to ~");
                        ulevel = chartolevel("~");
                }
                else if (user->GetExt(protectkey))
                {
-                       log(DEBUG, "Setting ulevel to &");
+                       ServerInstance->Log(DEBUG, "Setting ulevel to &");
                        ulevel = chartolevel("&");
                }
                else
                {
-                       log(DEBUG, "Setting ulevel to %s", Srv->ChanMode(user, channel).c_str());
-                       ulevel = chartolevel(Srv->ChanMode(user, channel));
+                       ServerInstance->Log(DEBUG, "Setting ulevel to %s", channel->GetPrefixChar(user));
+                       ulevel = chartolevel(channel->GetPrefixChar(user));
                }
                        
                /* Now it's the same idea, except for the target. If they're ulined make sure they get a higher level than the sender can */
-               if (Srv->IsUlined(target->server) || Srv->IsUlined(target->nick))
+               if (ServerInstance->ULine(target->server) || ServerInstance->ULine(target->nick))
                {
-                       log(DEBUG, "Setting tlevel to U");
+                       ServerInstance->Log(DEBUG, "Setting tlevel to U");
                        tlevel = chartolevel("U");
                }
                else if (target->GetExt(founderkey))
                {
-                       log(DEBUG, "Setting tlevel to ~");
+                       ServerInstance->Log(DEBUG, "Setting tlevel to ~");
                        tlevel = chartolevel("~");
                }
                else if (target->GetExt(protectkey))
                {
-                       log(DEBUG, "Setting tlevel to &");
+                       ServerInstance->Log(DEBUG, "Setting tlevel to &");
                        tlevel = chartolevel("&");
                }
                else
                {
-                       log(DEBUG, "Setting tlevel to %s", Srv->ChanMode(target, channel).c_str());
-                       tlevel = chartolevel(Srv->ChanMode(target, channel));
+                       ServerInstance->Log(DEBUG, "Setting tlevel to %s", channel->GetPrefixChar(target));
+                       tlevel = chartolevel(channel->GetPrefixChar(target));
                }
                
-               hasnokicks = (Srv->FindModule("m_nokicks.so") && channel->IsModeSet('Q'));
+               hasnokicks = (ServerInstance->FindModule("m_nokicks.so") && channel->IsModeSet('Q'));
                
                /* We support the +Q channel mode via. the m_nokicks module, if the module is loaded and the mode is set then disallow the /remove */
                if(!supportnokicks || !hasnokicks || (ulevel == ULINE))
@@ -182,21 +197,21 @@ class RemoveBase
                                /* Build up the part reason string. */
                                reason << "Removed by " << user->nick << reasonparam;
 
-                               channel->WriteChannelWithServ(Srv->GetServerName().c_str(), "NOTICE %s :%s removed %s from the channel", channel->name, user->nick, target->nick);
-                               WriteServ(target->fd, "NOTICE %s :*** %s removed you from %s with the message: %s", target->nick, user->nick, channel->name, reasonparam.c_str());
+                               channel->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :%s removed %s from the channel", channel->name, user->nick, target->nick);
+                               target->WriteServ("NOTICE %s :*** %s removed you from %s with the message: %s", target->nick, user->nick, channel->name, reasonparam.c_str());
 
                                if (!channel->PartUser(target, reason.str().c_str()))
                                        delete channel;
                        }
                        else
                        {
-                               WriteServ(user->fd, "NOTICE %s :*** You do not have access to /remove %s from %s", user->nick, target->nick, channel->name);
+                               user->WriteServ( "NOTICE %s :*** You do not have access to /remove %s from %s", user->nick, target->nick, channel->name);
                        }
                }
                else
                {
                        /* m_nokicks.so was loaded and +Q was set, block! */
-                       WriteServ(user->fd, "484 %s %s :Can't remove user %s from channel (+Q set)", user->nick, channel->name, target->nick);
+                       user->WriteServ( "484 %s %s :Can't remove user %s from channel (+Q set)", user->nick, channel->name, target->nick);
                }
        }
 };
@@ -204,7 +219,7 @@ class RemoveBase
 class cmd_remove : public command_t, public RemoveBase
 {
  public:
-       cmd_remove(Server* Srv, bool& snk) : command_t("REMOVE", 0, 2), RemoveBase(Srv, snk)
+       cmd_remove(InspIRCd* Instance, bool& snk) : command_t(Instance, "REMOVE", 0, 2), RemoveBase(Instance, snk)
        {
                this->source = "m_remove.so";
                syntax = "<nick> <channel> [<reason>]";
@@ -219,7 +234,7 @@ class cmd_remove : public command_t, public RemoveBase
 class cmd_fpart : public command_t, public RemoveBase
 {
  public:
-       cmd_fpart(Server* Srv, bool snk) : command_t("FPART", 0, 2), RemoveBase(Srv, snk)
+       cmd_fpart(InspIRCd* Instance, bool& snk) : command_t(Instance, "FPART", 0, 2), RemoveBase(Instance, snk)
        {
                this->source = "m_remove.so";
                syntax = "<channel> <nick> [<reason>]";
@@ -228,7 +243,7 @@ class cmd_fpart : public command_t, public RemoveBase
        void Handle (const char** parameters, int pcnt, userrec *user)
        {
                RemoveBase::Handle(parameters, pcnt, user, true);
-       }       
+       }
 };
 
 class ModuleRemove : public Module
@@ -237,14 +252,15 @@ class ModuleRemove : public Module
        cmd_fpart* mycommand2;
        bool supportnokicks;
        
+       
  public:
-       ModuleRemove(Server* Me)
+       ModuleRemove(InspIRCd* Me)
        : Module::Module(Me)
        {
-               mycommand = new cmd_remove(Me, supportnokicks);
-               mycommand2 = new cmd_fpart(Me, supportnokicks);
-               Me->AddCommand(mycommand);
-               Me->AddCommand(mycommand2);
+               mycommand = new cmd_remove(ServerInstance, supportnokicks);
+               mycommand2 = new cmd_fpart(ServerInstance, supportnokicks);
+               ServerInstance->AddCommand(mycommand);
+               ServerInstance->AddCommand(mycommand2);
                OnRehash("");
        }
 
@@ -260,8 +276,7 @@ class ModuleRemove : public Module
        
        virtual void OnRehash(const std::string&)
        {
-               ConfigReader conf;
-               
+               ConfigReader conf(ServerInstance);
                supportnokicks = conf.ReadFlag("remove", "supportnokicks", 0);
        }
        
@@ -291,7 +306,7 @@ class ModuleRemoveFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleRemove(Me);
        }