]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_whois.cpp
Add 'dest' parameter to OnWhoisLine, contains the user being whois'ed (we need this...
[user/henk/code/inspircd.git] / src / cmd_whois.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include "inspircd.h"
18 #include "configreader.h"
19 #include "users.h"
20 #include "modules.h"
21 #include "commands/cmd_whois.h"
22 #include "hashcomp.h"
23
24 void do_whois(InspIRCd* ServerInstance, userrec* user, userrec* dest,unsigned long signon, unsigned long idle, const char* nick)
25 {
26         // bug found by phidjit - were able to whois an incomplete connection if it had sent a NICK or USER
27         if (dest->registered == REG_ALL)
28         {
29                 ServerInstance->SendWhoisLine(user, dest, 311, "%s %s %s %s * :%s",user->nick, dest->nick, dest->ident, dest->dhost, dest->fullname);
30                 if ((user == dest) || (*user->oper))
31                 {
32                         ServerInstance->SendWhoisLine(user, dest, 378, "%s %s :is connecting from *@%s %s",user->nick, dest->nick, dest->host, dest->GetIPString());
33                 }
34                 std::string cl = dest->ChannelList(user);
35                 if (cl.length())
36                 {
37                         if (cl.length() > 400)
38                         {
39                                 user->SplitChanList(dest,cl);
40                         }
41                         else
42                         {
43                                 ServerInstance->SendWhoisLine(user, dest, 319, "%s %s :%s",user->nick, dest->nick, cl.c_str());
44                         }
45                 }
46                 if (*ServerInstance->Config->HideWhoisServer && !(*user->oper))
47                 {
48                         ServerInstance->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick, dest->nick, ServerInstance->Config->HideWhoisServer, ServerInstance->Config->Network);
49                 }
50                 else
51                 {
52                         ServerInstance->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick, dest->nick, dest->server, ServerInstance->GetServerDescription(dest->server).c_str());
53                 }
54                 if (*dest->awaymsg)
55                 {
56                         ServerInstance->SendWhoisLine(user, dest, 301, "%s %s :%s",user->nick, dest->nick, dest->awaymsg);
57                 }
58                 if (*dest->oper)
59                 {
60                         ServerInstance->SendWhoisLine(user, dest, 313, "%s %s :is %s %s on %s",user->nick, dest->nick, (strchr("AEIOUaeiou",*dest->oper) ? "an" : "a"),irc::Spacify(dest->oper), ServerInstance->Config->Network);
61                 }
62                 if ((!signon) && (!idle))
63                 {
64                         FOREACH_MOD(I_OnWhois,OnWhois(user,dest));
65                 }
66                 if (!strcasecmp(user->server,dest->server))
67                 {
68                         // idle time and signon line can only be sent if youre on the same server (according to RFC)
69                         ServerInstance->SendWhoisLine(user, dest, 317, "%s %s %d %d :seconds idle, signon time",user->nick, dest->nick, abs((dest->idle_lastmsg)-ServerInstance->Time()), dest->signon);
70                 }
71                 else
72                 {
73                         if ((idle) || (signon))
74                                 ServerInstance->SendWhoisLine(user, dest, 317, "%s %s %d %d :seconds idle, signon time",user->nick, dest->nick, idle, signon);
75                 }
76                 ServerInstance->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick, dest->nick);
77         }
78         else
79         {
80                 ServerInstance->SendWhoisLine(user, dest, 401, "%s %s :No such nick/channel",user->nick, *nick ? nick : "*");
81                 ServerInstance->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick, *nick ? nick : "*");
82         }
83 }
84
85
86
87 extern "C" command_t* init_command(InspIRCd* Instance)
88 {
89         return new cmd_whois(Instance);
90 }
91
92 CmdResult cmd_whois::Handle (const char** parameters, int pcnt, userrec *user)
93 {
94         userrec *dest;
95         if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
96                 return CMD_SUCCESS;
97
98         dest = ServerInstance->FindNick(parameters[0]);
99         if (dest)
100         {
101                 do_whois(this->ServerInstance, user,dest,0,0,parameters[0]);
102         }
103         else
104         {
105                 /* no such nick/channel */
106                 user->WriteServ("401 %s %s :No such nick/channel",user->nick, *parameters[0] ? parameters[0] : "*");
107                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, *parameters[0] ? parameters[0] : "*");
108                 return CMD_FAILURE;
109         }
110
111         return CMD_SUCCESS;
112 }
113