diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-28 20:45:42 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-28 20:45:42 +0000 |
commit | 51a32f1abd4d16a3127f82851b54e89ecda90269 (patch) | |
tree | 2fdeb3450fe0b60a0300106d19284f54c679bbd1 /src | |
parent | 66ce3149898c5987e4b52354ea8ec8b3a9c0ba11 (diff) |
Remove m_operwho, no longer required in 1.1 as standard /who can do its job
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4582 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_operwho.cpp | 212 |
1 files changed, 0 insertions, 212 deletions
diff --git a/src/modules/m_operwho.cpp b/src/modules/m_operwho.cpp deleted file mode 100644 index edb0aea4d..000000000 --- a/src/modules/m_operwho.cpp +++ /dev/null @@ -1,212 +0,0 @@ -/* +------------------------------------+ - * | 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. - * - * --------------------------------------------------- - */ - -/* $ModDesc: Provides an extended version of /WHO for opers */ - -#include <string> -#include <vector> -#include "inspircd_config.h" -#include "users.h" -#include "modules.h" -#include "helperfuncs.h" -#include "message.h" - -extern user_hash clientlist; -extern std::vector<userrec*> all_opers; - -class ModuleOperWho : public Module -{ - Server* Srv; - public: - ModuleOperWho(Server* Me) : Module::Module(Me) - { - Srv = Me; - } - - virtual void Implements(char* List) - { - List[I_OnPreCommand] = 1; - } - - virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated) - { - - if ((!*user->oper) || (command != "WHO")) - return 0; - - chanrec* Ptr = NULL; - char tmp[10]; - - if (!pcnt) - { - for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) - { - *tmp = 0; - Ptr = ((ucrec*)*(i->second->chans.begin()))->channel; - if (*i->second->awaymsg) { - strlcat(tmp, "G", 9); - } else { - strlcat(tmp, "H", 9); - } - if (*i->second->oper) { strlcat(tmp, "*", 9); } - WriteServ(user->fd,"352 %s %s %s %s %s %s %s :0 %s",user->nick, Ptr ? Ptr->name : "*", i->second->ident, i->second->host, i->second->server, i->second->nick, tmp, i->second->fullname); - } - WriteServ(user->fd,"315 %s * :End of /WHO list.",user->nick); - return 1; - } - if (pcnt == 1) - { - if ((!strcmp(parameters[0],"0")) || (!strcmp(parameters[0],"*"))) - { - if ((user->chans.size()) && (((ucrec*)*(user->chans.begin()))->channel)) - { - for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) - { - Ptr = ((ucrec*)*(i->second->chans.begin()))->channel; - // suggested by phidjit and FCS - if ((!common_channels(user,i->second)) && (isnick(i->second->nick))) - { - // Bug Fix #29 - *tmp = 0; - if (*i->second->awaymsg) { - strlcat(tmp, "G", 9); - } else { - strlcat(tmp, "H", 9); - } - if (*i->second->oper) { strlcat(tmp, "*", 9); } - WriteServ(user->fd,"352 %s %s %s %s %s %s %s :0 %s",user->nick, Ptr ? Ptr->name : "*", i->second->ident, i->second->host, i->second->server, i->second->nick, tmp, i->second->fullname); - } - } - } - if (Ptr) - { - WriteServ(user->fd,"315 %s %s :End of /WHO list.",user->nick , parameters[0]); - } - else - { - WriteServ(user->fd,"315 %s %s :End of /WHO list.",user->nick, parameters[0]); - } - return 1; - } - if (parameters[0][0] == '#') - { - Ptr = FindChan(parameters[0]); - if (Ptr) - { - for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) - { - if ((Ptr->HasUser(i->second)) && (isnick(i->second->nick))) - { - // Fix Bug #29 - Part 2.. - *tmp = 0; - if (*i->second->awaymsg) { - strlcat(tmp, "G", 9); - } else { - strlcat(tmp, "H", 9); - } - if (*i->second->oper) { strlcat(tmp, "*", 9); } - strlcat(tmp, cmode(i->second, Ptr),5); - WriteServ(user->fd,"352 %s %s %s %s %s %s %s :0 %s",user->nick, Ptr->name, i->second->ident, i->second->host, i->second->server, i->second->nick, tmp, i->second->fullname); - - } - } - WriteServ(user->fd,"315 %s %s :End of /WHO list.",user->nick, parameters[0]); - } - else - { - WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]); - } - return 1; - } - else - { - userrec* u = Find(parameters[0]); - if (u) - { - // Bug Fix #29 -- Part 29.. - *tmp = 0; - if (*u->awaymsg) { - strlcat(tmp, "G" ,9); - } else { - strlcat(tmp, "H" ,9); - } - if (*u->oper) { strlcat(tmp, "*" ,9); } - WriteServ(user->fd,"352 %s %s %s %s %s %s %s :0 %s",user->nick, u->chans.size() && ((ucrec*)*(u->chans.begin()))->channel ? ((ucrec*)*(u->chans.begin()))->channel->name - : "*", u->ident, u->dhost, u->server, u->nick, tmp, u->fullname); - } - WriteServ(user->fd,"315 %s %s :End of /WHO list.",user->nick, parameters[0]); - return 1; - } - } - if (pcnt == 2) - { - if ((!strcmp(parameters[0],"0")) || (!strcmp(parameters[0],"*")) && (!strcmp(parameters[1],"o"))) - { - for (std::vector<userrec*>::iterator i = all_opers.begin(); i != all_opers.end(); i++) - { - // If i were a rich man.. I wouldn't need to me making these bugfixes.. - // But i'm a poor bastard with nothing better to do. - userrec* oper = *i; - *tmp = 0; - if (*oper->awaymsg) { - strlcat(tmp, "G" ,9); - } else { - strlcat(tmp, "H" ,9); - } - WriteServ(user->fd,"352 %s %s %s %s %s %s %s* :0 %s", user->nick, oper->chans.size() && ((ucrec*)*(oper->chans.begin()))->channel ? - ((ucrec*)*(oper->chans.begin()))->channel->name : "*", oper->ident, oper->host, oper->server, oper->nick, tmp, oper->fullname); - } - WriteServ(user->fd,"315 %s %s :End of /WHO list.",user->nick, parameters[0]); - return 1; - } - } - return 0; - } - - virtual ~ModuleOperWho() - { - } - - virtual Version GetVersion() - { - return Version(1, 0, 0, 0, VF_VENDOR); - } -}; - - -class ModuleOperWhoFactory : public ModuleFactory -{ - public: - ModuleOperWhoFactory() - { - } - - ~ModuleOperWhoFactory() - { - } - - virtual Module * CreateModule(Server* Me) - { - return new ModuleOperWho(Me); - } - -}; - - -extern "C" void * init_module( void ) -{ - return new ModuleOperWhoFactory; -} |