]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/idle.cpp
Remove trailing whitespace from various source files.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / idle.cpp
index 57692ddf53c8790b43cb5b8ef3f07706bd76571c..11e665531c54ff43aa6fbeabddf89d467f50a620 100644 (file)
 #include "utils.h"
 #include "commands.h"
 
-CmdResult CommandIdle::Handle(User* issuer, std::vector<std::string>& params)
+CmdResult CommandIdle::HandleRemote(RemoteUser* issuer, Params& params)
 {
-       /* If this is a request, this user did the /whois
-        * If this is a reply, this user's information is in params[1] and params[2]
+       /**
+        * There are two forms of IDLE: request and reply. Requests have one parameter,
+        * replies have more than one.
+        *
+        * If this is a request, 'issuer' did a /whois and its server wants to learn the
+        * idle time of the user in params[0].
+        *
+        * If this is a reply, params[0] is the user who did the whois and params.back() is
+        * the number of seconds 'issuer' has been idle.
         */
-       if (IS_SERVER(issuer))
-               return CMD_FAILURE;
 
-       /* If this is a request, this is the user whose idle information was requested
-        * If this is a reply, this user did the /whois
-        */
        User* target = ServerInstance->FindUUID(params[0]);
-       if ((!target) || (IS_SERVER(target)))
+       if ((!target) || (target->registered != REG_ALL))
                return CMD_FAILURE;
 
        LocalUser* localtarget = IS_LOCAL(target);
@@ -45,7 +47,7 @@ CmdResult CommandIdle::Handle(User* issuer, std::vector<std::string>& params)
 
        if (params.size() >= 2)
        {
-               ServerInstance->Parser->CallHandler("WHOIS", params, issuer);
+               ServerInstance->Parser.CallHandler("WHOIS", params, issuer);
        }
        else
        {
@@ -57,11 +59,11 @@ CmdResult CommandIdle::Handle(User* issuer, std::vector<std::string>& params)
                else
                        idle = ((unsigned int) (ServerInstance->Time() - localtarget->idle_lastmsg));
 
-               parameterlist reply;
+               CmdBuilder reply(params[0], "IDLE");
                reply.push_back(issuer->uuid);
                reply.push_back(ConvToStr(target->signon));
                reply.push_back(ConvToStr(idle));
-               Utils->DoOneToOne(params[0], "IDLE", reply, issuer->server);
+               reply.Unicast(issuer);
        }
 
        return CMD_SUCCESS;