]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_uninvite.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / modules / m_uninvite.cpp
index fc289bd829b4c913559a4a82587029ae2cf09953..c44e15511d61e698547eadb0fa30eacf5c16fcf6 100644 (file)
  *       | 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.
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-using namespace std;
-
 /* $ModDesc: Provides the UNINVITE command which lets users un-invite other users from channels (!) */
 
-#include <stdio.h>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
-#include "helperfuncs.h"
-#include "message.h"
+#include "inspircd.h"
 
-Server *Srv;
-        
-class cmd_uninvite : public command_t
+/** Handle /UNINVITE
+ */
+class CommandUninvite : public Command
 {
  public:
-       cmd_uninvite () : command_t("UNINVITE", 0, 2)
+       CommandUninvite(Module* Creator) : Command(Creator,"UNINVITE", 2)
+       {
+               syntax = "<nick> <channel>";
+               TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
+       }
+
+       CmdResult Handle (const std::vector<std::string> &parameters, User *user)
        {
-               this->source = "m_uninvite.so";
+               User* u = ServerInstance->FindNick(parameters[0]);
+               Channel* c = ServerInstance->FindChan(parameters[1]);
+
+               if ((!c) || (!u))
+               {
+                       if (!c)
+                       {
+                               user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[1].c_str());
+                       }
+                       else
+                       {
+                               user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[0].c_str());
+                       }
+
+                       return CMD_FAILURE;
+               }
+
+               if (IS_LOCAL(user))
+               {
+                       if (c->GetPrefixValue(user) < HALFOP_VALUE)
+                       {
+                               user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :You must be a channel %soperator", user->nick.c_str(), c->name.c_str(), c->GetPrefixValue(u) == HALFOP_VALUE ? "" : "half-");
+                               return CMD_FAILURE;
+                       }
+               }
+
+               irc::string xname(c->name.c_str());
+
+               if (!u->IsInvited(xname))
+               {
+                       user->WriteNumeric(505, "%s %s %s :Is not invited to channel %s", user->nick.c_str(), u->nick.c_str(), c->name.c_str(), c->name.c_str());
+                       return CMD_FAILURE;
+               }
+               if (!c->HasUser(user))
+               {
+                       user->WriteNumeric(492, "%s %s :You're not on that channel!",user->nick.c_str(), c->name.c_str());
+                       return CMD_FAILURE;
+               }
+
+               u->RemoveInvite(xname);
+               user->WriteNumeric(494, "%s %s %s :Uninvited", user->nick.c_str(), c->name.c_str(), u->nick.c_str());
+               u->WriteNumeric(493, "%s :You were uninvited from %s by %s", u->nick.c_str(), c->name.c_str(), user->nick.c_str());
+               c->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :*** %s uninvited %s.", c->name.c_str(), user->nick.c_str(), u->nick.c_str());
+
+               return CMD_SUCCESS;
        }
 
-       void Handle (char **parameters, int pcnt, userrec *user)
+       RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
        {
-                userrec* u = Find(parameters[0]);
-                chanrec* c = FindChan(parameters[1]);
-                         
-                if ((!c) || (!u))
-                {        
-                        if (!c)
-                        {
-                                WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[1]);
-                        }
-                        else
-                        {
-                                WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]);
-                        }
-                                
-                        return; 
-                }        
-
-                if (c->binarymodes & CM_INVITEONLY)
-                {
-                        if (cstatus(user,c) < STATUS_HOP)
-                        {
-                                WriteServ(user->fd,"482 %s %s :You must be at least a half-operator to change modes on this channel",user->nick, c->name);
-                                return;
-                        }
-                }
-
-               irc::string xname(c->name);
-
-                if (!u->IsInvited(xname))
-                {
-                        WriteServ(user->fd,"491 %s %s %s :Is not invited to channel %s",user->nick,u->nick,c->name,c->name);
-                        return;
-                }
-                if (has_channel(user,c))
-                {
-                        WriteServ(user->fd,"492 %s %s :You're not on that channel!",user->nick, c->name);
-                        return;
-                }
-
-                u->RemoveInvite(xname);
-                WriteServ(user->fd,"NOTICE %s :*** Uninvited %s from %s",user->nick,u->nick,c->name);
-                WriteChannel(c,user,"NOTICE %s :*** %s uninvited %s.",c->name,user->nick,u->nick);
-        }
+               return ROUTE_BROADCAST;
+       }
 };
 
 class ModuleUninvite : public Module
 {
-       cmd_uninvite *mycommand;
+       CommandUninvite cmd;
 
  public:
 
-       ModuleUninvite(Server* Me) : Module::Module(Me)
+       ModuleUninvite() : cmd(this)
        {
-               Srv = Me;
-               mycommand = new cmd_uninvite();
-               Srv->AddCommand(mycommand);
+               ServerInstance->AddCommand(&cmd);
        }
-       
+
        virtual ~ModuleUninvite()
        {
        }
-       
-       virtual Version GetVersion()
-       {
-               return Version(1, 0, 0, 0, VF_VENDOR);
-       }
-};
-
 
-class ModuleUninviteFactory : public ModuleFactory
-{
- public:
-       ModuleUninviteFactory()
-       {
-       }
-       
-       ~ModuleUninviteFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(Server* Me)
+       virtual Version GetVersion()
        {
-               return new ModuleUninvite(Me);
+               return Version("Provides the UNINVITE command which lets users un-invite other users from channels (!)", VF_VENDOR | VF_COMMON, API_VERSION);
        }
-       
 };
 
+MODULE_INIT(ModuleUninvite)
 
-extern "C" void * init_module( void )
-{
-       return new ModuleUninviteFactory;
-}