]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_whois.cpp
If hidewhois is enabled, don't show idle time unless requested via remote /whois...
[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                 std::string cl = dest->ChannelList(user);
38                 if (cl.length())
39                 {
40                         if (cl.length() > 400)
41                         {
42                                 user->SplitChanList(dest,cl);
43                         }
44                         else
45                         {
46                                 ServerInstance->SendWhoisLine(user, dest, 319, "%s %s :%s",user->nick, dest->nick, cl.c_str());
47                         }
48                 }
49                 if (*ServerInstance->Config->HideWhoisServer && !(*user->oper))
50                 {
51                         ServerInstance->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick, dest->nick, ServerInstance->Config->HideWhoisServer, ServerInstance->Config->Network);
52                 }
53                 else
54                 {
55                         ServerInstance->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick, dest->nick, dest->server, ServerInstance->GetServerDescription(dest->server).c_str());
56                 }
57                 if (*dest->awaymsg)
58                 {
59                         ServerInstance->SendWhoisLine(user, dest, 301, "%s %s :%s",user->nick, dest->nick, dest->awaymsg);
60                 }
61                 if (*dest->oper)
62                 {
63                         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);
64                 }
65
66                 FOREACH_MOD(I_OnWhois,OnWhois(user,dest));
67
68                 if (!strcasecmp(user->server,dest->server))
69                 {
70                         // the user is on the same server as us, so we already know their idle time.
71                         // check we're not hiding whois, though, as otherwise we give away what server they are on.
72                         if (!*ServerInstance->Config->HideWhoisServer)
73                         {
74                                 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);
75                         }
76                 }
77                 else
78                 {
79                         if ((idle) || (signon))
80                         {
81                                 // if we get here, m_spanningtree has called us, so it's remote
82                                 ServerInstance->SendWhoisLine(user, dest, 317, "%s %s %d %d :seconds idle, signon time",user->nick, dest->nick, idle, signon);
83                         }
84                 }
85                 ServerInstance->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick, dest->nick);
86         }
87         else
88         {
89                 ServerInstance->SendWhoisLine(user, dest, 401, "%s %s :No such nick/channel",user->nick, *nick ? nick : "*");
90                 ServerInstance->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick, *nick ? nick : "*");
91         }
92 }
93
94
95
96 extern "C" command_t* init_command(InspIRCd* Instance)
97 {
98         return new cmd_whois(Instance);
99 }
100
101 CmdResult cmd_whois::Handle (const char** parameters, int pcnt, userrec *user)
102 {
103         userrec *dest;
104         if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
105                 return CMD_SUCCESS;
106
107         dest = ServerInstance->FindNick(parameters[0]);
108
109         if (dest)
110         {
111                 do_whois(this->ServerInstance, user,dest,0,0,parameters[0]);
112         }
113         else
114         {
115                 /* no such nick/channel */
116                 user->WriteServ("401 %s %s :No such nick/channel",user->nick, *parameters[0] ? parameters[0] : "*");
117                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, *parameters[0] ? parameters[0] : "*");
118                 return CMD_FAILURE;
119         }
120
121         return CMD_SUCCESS;
122 }
123