]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_check.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / modules / m_check.cpp
index f1a160b98fe1bf04f230a998f523947304eb1ae2..e3de633254728e10f3a43a75b5ae8913e77e786a 100644 (file)
@@ -2,49 +2,69 @@
  *       | 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;
-
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
-#include "message.h"
-#include "commands.h"
+#include "inspircd.h"
 
 /* $ModDesc: Provides the /check command to retrieve information on a user, channel, or IP address */
 
-static Server *Srv;
-
-class cmd_check : public command_t
+/** Handle /CHECK
+ */
+class CommandCheck : public Command
 {
  public:
-       cmd_check() : command_t("CHECK", 'o', 1)
+       CommandCheck(Module* parent) : Command(parent,"CHECK", 1)
+       {
+               flags_needed = 'o'; syntax = "<nickname>|<ip>|<hostmask>|<channel> <server>";
+       }
+
+       std::string timestring(time_t time)
+       {
+               char timebuf[60];
+               struct tm *mytime = gmtime(&time);
+               strftime(timebuf, 59, "%Y-%m-%d %H:%M:%S UTC (%s)", mytime);
+               return std::string(timebuf);
+       }
+
+       void dumpExt(User* user, std::string checkstr, Extensible* ext)
        {
-               this->source = "m_check.so";
+               std::stringstream dumpkeys;
+               for(ExtensibleStore::const_iterator i = ext->GetExtList().begin(); i != ext->GetExtList().end(); i++)
+               {
+                       ExtensionItem* item = Extensible::GetItem(i->first);
+                       std::string value;
+                       if (item)
+                               value = item->serialize(FORMAT_USER, ext, i->second);
+                       if (value.empty())
+                               dumpkeys << " " << i->first;
+                       else
+                               ServerInstance->DumpText(user, checkstr + " meta:" + i->first + " " + value);
+               }
+               if (!dumpkeys.str().empty())
+                       ServerInstance->DumpText(user,checkstr + " metadata", dumpkeys);
        }
 
-       void Handle (char **parameters, int pcnt, userrec *user)
+       CmdResult Handle (const std::vector<std::string> &parameters, User *user)
        {
-               userrec *targuser;
-               chanrec *targchan;
+               if (parameters.size() > 1 && parameters[1] != ServerInstance->Config->ServerName)
+                       return CMD_SUCCESS;
+
+               User *targuser;
+               Channel *targchan;
                std::string checkstr;
                std::string chliststr;
 
-               checkstr = "304 " + std::string(user->nick) + " :CHECK";
+               checkstr = std::string(":") + ServerInstance->Config->ServerName + " 304 " + std::string(user->nick) + " :CHECK";
 
-               targuser = Srv->FindNick(std::string(parameters[0]));
-               targchan = Srv->FindChannel(std::string(parameters[0]));
+               targuser = ServerInstance->FindNick(parameters[0]);
+               targchan = ServerInstance->FindChan(parameters[0]);
 
                /*
                 * Syntax of a /check reply:
@@ -53,126 +73,149 @@ class cmd_check : public command_t
                 *  :server.name 304 target :CHECK END
                 */
 
-               Srv->SendTo(NULL, user, checkstr + " START " + std::string(parameters[0]));
+               ServerInstance->DumpText(user, checkstr + " START " + parameters[0]);
 
                if (targuser)
                {
                        /* /check on a user */
-                       Srv->SendTo(NULL, user, checkstr + " nuh " + std::string(targuser->GetFullHost()));
-                       Srv->SendTo(NULL, user, checkstr + " realnuh " + std::string(targuser->GetFullRealHost()));
-                       Srv->SendTo(NULL, user, checkstr + " realname " + std::string(targuser->fullname));
-                       Srv->SendTo(NULL, user, checkstr + " modes +" + std::string(targuser->modes));
-                       Srv->SendTo(NULL, user, checkstr + " server " + std::string(targuser->server));
-                       if (targuser->awaymsg[0] != 0)
+                       ServerInstance->DumpText(user, checkstr + " nuh " + targuser->GetFullHost());
+                       ServerInstance->DumpText(user, checkstr + " realnuh " + targuser->GetFullRealHost());
+                       ServerInstance->DumpText(user, checkstr + " realname " + targuser->fullname);
+                       ServerInstance->DumpText(user, checkstr + " modes +" + targuser->FormatModes());
+                       ServerInstance->DumpText(user, checkstr + " snomasks +" + targuser->FormatNoticeMasks());
+                       ServerInstance->DumpText(user, checkstr + " server " + targuser->server);
+                       ServerInstance->DumpText(user, checkstr + " uid " + targuser->uuid);
+                       ServerInstance->DumpText(user, checkstr + " signon " + timestring(targuser->signon));
+                       ServerInstance->DumpText(user, checkstr + " nickts " + timestring(targuser->age));
+                       if (IS_LOCAL(targuser))
+                               ServerInstance->DumpText(user, checkstr + " lastmsg " + timestring(targuser->idle_lastmsg));
+
+                       if (IS_AWAY(targuser))
                        {
                                /* user is away */
-                               Srv->SendTo(NULL, user, checkstr + " awaymsg " + std::string(targuser->awaymsg));
+                               ServerInstance->DumpText(user, checkstr + " awaytime " + timestring(targuser->awaytime));
+                               ServerInstance->DumpText(user, checkstr + " awaymsg " + targuser->awaymsg);
                        }
-                       if (targuser->oper[0] != 0)
+
+                       if (IS_OPER(targuser))
                        {
                                /* user is an oper of type ____ */
-                               Srv->SendTo(NULL, user, checkstr + " opertype " + std::string(targuser->oper));
+                               ServerInstance->DumpText(user, checkstr + " opertype " + irc::Spacify(targuser->oper.c_str()));
                        }
+
                        if (IS_LOCAL(targuser))
                        {
-                               /* port information is only held for a local user! */
-                               Srv->SendTo(NULL, user, checkstr + " onport " + ConvToStr(targuser->port));
+                               ServerInstance->DumpText(user, checkstr + " clientaddr " + irc::sockets::satouser(&targuser->client_sa));
+                               ServerInstance->DumpText(user, checkstr + " serveraddr " + irc::sockets::satouser(&targuser->server_sa));
+
+                               std::string classname = targuser->GetClass()->name;
+                               if (!classname.empty())
+                                       ServerInstance->DumpText(user, checkstr + " connectclass " + classname);
                        }
+                       else
+                               ServerInstance->DumpText(user, checkstr + " onip " + targuser->GetIPString());
 
-                       chliststr = chlist(targuser, targuser);
-                       if (chliststr.length())
+                       for (UCListIter i = targuser->chans.begin(); i != targuser->chans.end(); i++)
                        {
-                               if (chliststr.length() > 400)
-                               {
-                                       /* XXX - this sucks. deal with it. */
-                                       std::stringstream chstream(chliststr);
-                                       std::string line = "";
-                                       std::string cname = "";
-                                       while (!chstream.eof())
-                                       {
-                                               chstream >> cname;
-                                               line = line + cname + " ";
-                                               if (line.length() > 400)
-                                               {
-                                                       Srv->SendTo(NULL, user, checkstr + " onchans " + line);
-                                                       line = "";
-                                               }
-                                       }
-                                       if (line.length())
-                                       {
-                                               Srv->SendTo(NULL, user, checkstr + " onchans " + line);
-                                       }
-                               }
-                               else
-                               {
-                                       Srv->SendTo(NULL, user, checkstr + " onchans " + chliststr);
-                               }                               
+                               Channel* c = *i;
+                               chliststr.append(c->GetPrefixChar(targuser)).append(c->name).append(" ");
                        }
+
+                       std::stringstream dump(chliststr);
+
+                       ServerInstance->DumpText(user,checkstr + " onchans", dump);
+
+                       dumpExt(user, checkstr, targuser);
                }
                else if (targchan)
                {
                        /* /check on a channel */
+                       ServerInstance->DumpText(user, checkstr + " timestamp " + timestring(targchan->age));
+
+                       if (targchan->topic[0] != 0)
+                       {
+                               /* there is a topic, assume topic related information exists */
+                               ServerInstance->DumpText(user, checkstr + " topic " + targchan->topic);
+                               ServerInstance->DumpText(user, checkstr + " topic_setby " + targchan->setby);
+                               ServerInstance->DumpText(user, checkstr + " topic_setat " + timestring(targchan->topicset));
+                       }
+
+                       ServerInstance->DumpText(user, checkstr + " modes " + targchan->ChanModes(true));
+                       ServerInstance->DumpText(user, checkstr + " membercount " + ConvToStr(targchan->GetUserCounter()));
+
+                       /* now the ugly bit, spool current members of a channel. :| */
+
+                       const UserMembList *ulist= targchan->GetUsers();
+
+                       /* note that unlike /names, we do NOT check +i vs in the channel */
+                       for (UserMembCIter i = ulist->begin(); i != ulist->end(); i++)
+                       {
+                               char tmpbuf[MAXBUF];
+                               /*
+                                * Unlike Asuka, I define a clone as coming from the same host. --w00t
+                                */
+                               snprintf(tmpbuf, MAXBUF, "%-3lu %s%s (%s@%s) %s ", ServerInstance->Users->GlobalCloneCount(i->first), targchan->GetAllPrefixChars(i->first), i->first->nick.c_str(), i->first->ident.c_str(), i->first->dhost.c_str(), i->first->fullname.c_str());
+                               ServerInstance->DumpText(user, checkstr + " member " + tmpbuf);
+                       }
+
+                       dumpExt(user, checkstr, targchan);
                }
                else
                {
                        /*  /check on an IP address, or something that doesn't exist */
-               }
+                       long x = 0;
 
-               Srv->SendTo(NULL, user, checkstr + " END " + std::string(parameters[0]));
-       }
-};
+                       /* hostname or other */
+                       for (user_hash::const_iterator a = ServerInstance->Users->clientlist->begin(); a != ServerInstance->Users->clientlist->end(); a++)
+                       {
+                               if (InspIRCd::Match(a->second->host, parameters[0], ascii_case_insensitive_map) || InspIRCd::Match(a->second->dhost, parameters[0], ascii_case_insensitive_map))
+                               {
+                                       /* host or vhost matches mask */
+                                       ServerInstance->DumpText(user, checkstr + " match " + ConvToStr(++x) + " " + a->second->GetFullRealHost());
+                               }
+                               /* IP address */
+                               else if (InspIRCd::MatchCIDR(a->second->GetIPString(), parameters[0]))
+                               {
+                                       /* same IP. */
+                                       ServerInstance->DumpText(user, checkstr + " match " + ConvToStr(++x) + " " + a->second->GetFullRealHost());
+                               }
+                       }
 
+                       ServerInstance->DumpText(user, checkstr + " matches " + ConvToStr(x));
+               }
 
-class ModuleCheck : public Module
-{
- private:
-       cmd_check *mycommand;
- public:
-       ModuleCheck(Server* Me) : Module::Module(Me)
-       {
-               Srv = Me;
-               mycommand = new cmd_check();
-               Srv->AddCommand(mycommand);
-       }
-       
-       virtual ~ModuleCheck()
-       {
-       }
-       
-       virtual Version GetVersion()
-       {
-               return Version(1, 0, 0, 0, VF_VENDOR);
+               ServerInstance->DumpText(user, checkstr + " END " + parameters[0]);
+
+               return CMD_SUCCESS;
        }
 
-       void Implements(char* List)
+       RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
        {
-               /* we don't hook anything, nothing required */
+               if (parameters.size() > 1)
+                       return ROUTE_OPT_UCAST(parameters[1]);
+               return ROUTE_LOCALONLY;
        }
-       
 };
 
 
-
-class ModuleCheckFactory : public ModuleFactory
+class ModuleCheck : public Module
 {
+ private:
+       CommandCheck mycommand;
  public:
-       ModuleCheckFactory()
+       ModuleCheck() : mycommand(this)
        {
+               ServerInstance->AddCommand(&mycommand);
        }
-       
-       ~ModuleCheckFactory()
+
+       ~ModuleCheck()
        {
        }
-       
-       virtual Module * CreateModule(Server* Me)
+
+       Version GetVersion()
        {
-               return new ModuleCheck(Me);
+               return Version("CHECK command, view user/channel details", VF_VENDOR|VF_OPTCOMMON);
        }
-       
 };
 
-extern "C" void * init_module( void )
-{
-       return new ModuleCheckFactory;
-}
-
+MODULE_INIT(ModuleCheck)