X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_uninvite.cpp;h=c44e15511d61e698547eadb0fa30eacf5c16fcf6;hb=6d03943426dcce76ba66567a9b18425a5ebb4c0c;hp=14660cf1eede24735f25f90d7ba785571c1bdc3d;hpb=a7b0c26a4c56440e4bc5ddc6d3ecfeb36089dbb2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_uninvite.cpp b/src/modules/m_uninvite.cpp index 14660cf1e..c44e15511 100644 --- a/src/modules/m_uninvite.cpp +++ b/src/modules/m_uninvite.cpp @@ -2,132 +2,105 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * 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 -#include "users.h" -#include "channels.h" -#include "modules.h" -#include "helperfuncs.h" -#include "message.h" +#include "inspircd.h" -static 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) { - this->source = "m_uninvite.so"; + syntax = " "; + TRANSLATE3(TR_NICK, TR_TEXT, TR_END); } - void Handle (char **parameters, int pcnt, userrec *user) + CmdResult Handle (const std::vector ¶meters, User *user) { - userrec* u = Find(parameters[0]); - chanrec* c = FindChan(parameters[1]); - + User* u = ServerInstance->FindNick(parameters[0]); + Channel* c = ServerInstance->FindChan(parameters[1]); + if ((!c) || (!u)) - { + { if (!c) { - WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[1]); + user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[1].c_str()); } else { - WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]); + user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[0].c_str()); } - - return; - } - if (c->modes[CM_INVITEONLY]) + return CMD_FAILURE; + } + + if (IS_LOCAL(user)) { - if (cstatus(user,c) < STATUS_HOP) + if (c->GetPrefixValue(user) < HALFOP_VALUE) { - 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; + 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); + irc::string xname(c->name.c_str()); 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; + 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)) { - WriteServ(user->fd,"492 %s %s :You're not on that channel!",user->nick, c->name); - return; + 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); - WriteServ(user->fd,"494 %s %s %s :Uninvited",user->nick,c->name,u->nick); - WriteServ(u->fd,"493 %s :You were uninvited from %s by %s",u->nick,c->name,user->nick); - WriteChannel(c,user,"NOTICE %s :*** %s uninvited %s.",c->name,user->nick,u->nick); + 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; + } + + RouteDescriptor GetRouting(User* user, const std::vector& parameters) + { + 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() - { - /* Must be static, because we dont want to desync invite lists */ - return Version(1, 0, 0, 0, VF_VENDOR|VF_STATIC); - } -}; - -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; -}