]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_whois.cpp
Make sure we always use the correct index for the nickname (thanks djGrr)
[user/henk/code/inspircd.git] / src / cmd_whois.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "configreader.h"
16 #include "users.h"
17 #include "modules.h"
18 #include "commands/cmd_whois.h"
19 #include "hashcomp.h"
20
21 void do_whois(InspIRCd* ServerInstance, userrec* user, userrec* dest,unsigned long signon, unsigned long idle, const char* nick)
22 {
23         if (dest->Visibility && !dest->Visibility->VisibleTo(user))
24         {
25                 ServerInstance->SendWhoisLine(user, dest, 401, "%s %s :No such nick/channel",user->nick, *nick ? nick : "*");
26                 ServerInstance->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick, *nick ? nick : "*");
27                 return;
28         }
29
30         if (dest->registered == REG_ALL)
31         {
32                 ServerInstance->SendWhoisLine(user, dest, 311, "%s %s %s %s * :%s",user->nick, dest->nick, dest->ident, dest->dhost, dest->fullname);
33                 if ((user == dest) || (*user->oper))
34                 {
35                         ServerInstance->SendWhoisLine(user, dest, 378, "%s %s :is connecting from %s@%s %s", user->nick, dest->nick, dest->ident, dest->host, dest->GetIPString());
36                 }
37
38                 std::string cl = dest->ChannelList(user);
39
40                 if (cl.length())
41                 {
42                         if (cl.length() > 400)
43                         {
44                                 user->SplitChanList(dest,cl);
45                         }
46                         else
47                         {
48                                 ServerInstance->SendWhoisLine(user, dest, 319, "%s %s :%s",user->nick, dest->nick, cl.c_str());
49                         }
50                 }
51                 if (*ServerInstance->Config->HideWhoisServer && !(*user->oper))
52                 {
53                         ServerInstance->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick, dest->nick, ServerInstance->Config->HideWhoisServer, ServerInstance->Config->Network);
54                 }
55                 else
56                 {
57                         ServerInstance->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick, dest->nick, dest->server, ServerInstance->GetServerDescription(dest->server).c_str());
58                 }
59
60                 if (*dest->awaymsg)
61                 {
62                         ServerInstance->SendWhoisLine(user, dest, 301, "%s %s :%s",user->nick, dest->nick, dest->awaymsg);
63                 }
64
65                 if (*dest->oper)
66                 {
67                         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);
68                 }
69
70                 FOREACH_MOD(I_OnWhois,OnWhois(user,dest));
71
72                 /*
73                  * We only send these if we've been provided them. That is, if hidewhois is turned off, and user is local, or
74                  * if remote whois is queried, too. This is to keep the user hidden, and also since you can't reliably tell remote time. -- w00t
75                  */
76                 if ((idle) || (signon))
77                 {
78                         ServerInstance->SendWhoisLine(user, dest, 317, "%s %s %d %d :seconds idle, signon time",user->nick, dest->nick, idle, signon);
79                 }
80
81                 ServerInstance->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick, dest->nick);
82         }
83         else
84         {
85                 ServerInstance->SendWhoisLine(user, dest, 401, "%s %s :No such nick/channel",user->nick, *nick ? nick : "*");
86                 ServerInstance->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick, *nick ? nick : "*");
87         }
88 }
89
90
91
92 extern "C" command_t* init_command(InspIRCd* Instance)
93 {
94         return new cmd_whois(Instance);
95 }
96
97 CmdResult cmd_whois::Handle (const char** parameters, int pcnt, userrec *user)
98 {
99         userrec *dest;
100         int userindex = 0;
101         unsigned long idle = 0, signon = 0;
102
103         if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
104                 return CMD_SUCCESS;
105
106
107         /*
108          * If 2 paramters are specified (/whois nick nick), ignore the first one like spanningtree
109          * does, and use the second one, otherwise, use the only paramter. -- djGrrr
110          */
111         if (pcnt > 1)
112                 userindex = 1;
113
114         dest = ServerInstance->FindNick(parameters[userindex]);
115
116         if (dest)
117         {
118                 /*
119                  * Okay. Umpteenth attempt at doing this, so let's re-comment...
120                  * For local users (/w localuser), we show idletime if hidewhois is disabled
121                  * For local users (/w localuser localuser), we always show idletime, hence pcnt > 1 check.
122                  * For remote users (/w remoteuser), we do NOT show idletime
123                  * For remote users (/w remoteuser remoteuser), spanningtree will handle calling do_whois, so we can ignore this case.
124                  * Thanks to djGrrr for not being impatient while I have a crap day coding. :p -- w00t
125                  */
126                 if (IS_LOCAL(dest) && (!*ServerInstance->Config->HideWhoisServer || pcnt > 1))
127                 {
128                         idle = abs((dest->idle_lastmsg)-ServerInstance->Time());
129                         signon = dest->signon;
130                 }
131
132                 do_whois(this->ServerInstance, user,dest,signon,idle,parameters[userindex]);
133         }
134         else
135         {
136                 /* no such nick/channel */
137                 user->WriteServ("401 %s %s :No such nick/channel",user->nick, *parameters[userindex] ? parameters[userindex] : "*");
138                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, *parameters[userindex] ? parameters[userindex] : "*");
139                 return CMD_FAILURE;
140         }
141
142         return CMD_SUCCESS;
143 }
144