From 272ba5d111681dba0a3d3a26c239039d91826769 Mon Sep 17 00:00:00 2001 From: w00t Date: Tue, 7 Mar 2006 01:34:26 +0000 Subject: [PATCH] More work on /check.. now gives basic information on a user, no channel list yet - and port number doesn't display. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3503 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_check.cpp | 51 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 15db15de5..c6d8b08de 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -34,7 +34,58 @@ class cmd_check : public command_t void Handle (char **parameters, int pcnt, userrec *user) { + userrec *targuser; + chanrec *targchan; + std::string checkstr; + checkstr = "304 " + std::string(user->nick) + " :CHECK"; + + targuser = Srv->FindNick(std::string(parameters[0])); + targchan = Srv->FindChannel(std::string(parameters[0])); + + /* + * Syntax of a /check reply: + * :server.name 304 target :CHECK START + * :server.name 304 target :CHECK + * :server.name 304 target :CHECK END + */ + + Srv->SendTo(NULL, user, checkstr + " START " + std::string(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) + { + /* user is away */ + Srv->SendTo(NULL, user, checkstr + " awaymsg " + std::string(targuser->awaymsg)); + } + if (targuser->oper[0] != 0) + { + /* user is an oper of type ____ */ + Srv->SendTo(NULL, user, checkstr + " opertype " + std::string(targuser->oper)); + } + if (IS_LOCAL(targuser)) + { + /* port information is only held for a local user! */ + Srv->SendTo(NULL, user, checkstr + " onport " + ConvToStr(targuser->port)); + } + } + else if (targchan) + { + /* /check on a channel */ + } + else + { + /* /check on an IP address, or something that doesn't exist */ + } + + Srv->SendTo(NULL, user, "304 " + std::string(user->nick) + " :CHECK END " + std::string(parameters[0])); } }; -- 2.39.5