]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_whois.cpp
Odd bits and bobs to keep the numeric sane if the user is insane (like stskeeps for...
[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.h"
22
23 #include "commands/cmd_whois.h"
24
25 const char* Spacify(char* n)
26 {
27         static char x[MAXBUF];
28         strlcpy(x,n,MAXBUF);
29         for (char* y = x; *y; y++)
30                 if (*y == '_')
31                         *y = ' ';
32         return x;
33 }
34
35 void do_whois(InspIRCd* ServerInstance, userrec* user, userrec* dest,unsigned long signon, unsigned long idle, const char* nick)
36 {
37         // bug found by phidjit - were able to whois an incomplete connection if it had sent a NICK or USER
38         if (dest->registered == REG_ALL)
39         {
40                 user->WriteServ("311 %s %s %s %s * :%s",user->nick, dest->nick, dest->ident, dest->dhost, dest->fullname);
41                 if ((user == dest) || (*user->oper))
42                 {
43                         user->WriteServ("378 %s %s :is connecting from *@%s %s",user->nick, dest->nick, dest->host, dest->GetIPString());
44                 }
45                 std::string cl = dest->ChannelList(user);
46                 if (cl.length())
47                 {
48                         if (cl.length() > 400)
49                         {
50                                 user->SplitChanList(dest,cl);
51                         }
52                         else
53                         {
54                                 user->WriteServ("319 %s %s :%s",user->nick, dest->nick, cl.c_str());
55                         }
56                 }
57                 if (*ServerInstance->Config->HideWhoisServer && !(*user->oper))
58                 {
59                         user->WriteServ("312 %s %s %s :%s",user->nick, dest->nick, ServerInstance->Config->HideWhoisServer, ServerInstance->Config->Network);
60                 }
61                 else
62                 {
63                         user->WriteServ("312 %s %s %s :%s",user->nick, dest->nick, dest->server, ServerInstance->GetServerDescription(dest->server).c_str());
64                 }
65                 if (*dest->awaymsg)
66                 {
67                         user->WriteServ("301 %s %s :%s",user->nick, dest->nick, dest->awaymsg);
68                 }
69                 if (*dest->oper)
70                 {
71                         user->WriteServ("313 %s %s :is %s %s on %s",user->nick, dest->nick, (strchr("AEIOUaeiou",*dest->oper) ? "an" : "a"),Spacify(dest->oper), ServerInstance->Config->Network);
72                 }
73                 if ((!signon) && (!idle))
74                 {
75                         FOREACH_MOD(I_OnWhois,OnWhois(user,dest));
76                 }
77                 if (!strcasecmp(user->server,dest->server))
78                 {
79                         // idle time and signon line can only be sent if youre on the same server (according to RFC)
80                         user->WriteServ("317 %s %s %d %d :seconds idle, signon time",user->nick, dest->nick, abs((dest->idle_lastmsg)-ServerInstance->Time()), dest->signon);
81                 }
82                 else
83                 {
84                         if ((idle) || (signon))
85                                 user->WriteServ("317 %s %s %d %d :seconds idle, signon time",user->nick, dest->nick, idle, signon);
86                 }
87                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, dest->nick);
88         }
89         else
90         {
91                 user->WriteServ("401 %s %s :No such nick/channel",user->nick, *nick ? nick : "*");
92                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, *nick ? nick : "*");
93         }
94 }
95
96 void cmd_whois::Handle (const char** parameters, int pcnt, userrec *user)
97 {
98         userrec *dest;
99         if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
100                 return;
101
102         dest = ServerInstance->FindNick(parameters[0]);
103         if (dest)
104         {
105                 do_whois(this->ServerInstance, user,dest,0,0,parameters[0]);
106         }
107         else
108         {
109                 /* no such nick/channel */
110                 user->WriteServ("401 %s %s :No such nick/channel",user->nick, *parameters[0] ? parameters[0] : "*");
111                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, *parameters[0] ? parameters[0] : "*");
112         }
113 }
114