]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_whois.cpp
Apply visibility state to whois, next stop, /who
[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         /* check if the user is registered first, can't whois unknown connections */
24         if ((dest->registered == REG_ALL) && ((dest->Visibility && !dest->Visibility->VisibleTo(user))))
25         {
26                 ServerInstance->SendWhoisLine(user, dest, 311, "%s %s %s %s * :%s",user->nick, dest->nick, dest->ident, dest->dhost, dest->fullname);
27                 if ((user == dest) || (*user->oper))
28                 {
29                         ServerInstance->SendWhoisLine(user, dest, 378, "%s %s :is connecting from %s@%s %s", user->nick, dest->nick, dest->ident, dest->host, dest->GetIPString());
30                 }
31                 std::string cl = dest->ChannelList(user);
32                 if (cl.length())
33                 {
34                         if (cl.length() > 400)
35                         {
36                                 user->SplitChanList(dest,cl);
37                         }
38                         else
39                         {
40                                 ServerInstance->SendWhoisLine(user, dest, 319, "%s %s :%s",user->nick, dest->nick, cl.c_str());
41                         }
42                 }
43                 if (*ServerInstance->Config->HideWhoisServer && !(*user->oper))
44                 {
45                         ServerInstance->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick, dest->nick, ServerInstance->Config->HideWhoisServer, ServerInstance->Config->Network);
46                 }
47                 else
48                 {
49                         ServerInstance->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick, dest->nick, dest->server, ServerInstance->GetServerDescription(dest->server).c_str());
50                 }
51                 if (*dest->awaymsg)
52                 {
53                         ServerInstance->SendWhoisLine(user, dest, 301, "%s %s :%s",user->nick, dest->nick, dest->awaymsg);
54                 }
55                 if (*dest->oper)
56                 {
57                         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);
58                 }
59
60                 FOREACH_MOD(I_OnWhois,OnWhois(user,dest));
61
62                 if (!strcasecmp(user->server,dest->server))
63                 {
64                         // idle time and signon line can only be sent if youre on the same server (according to RFC)
65                         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);
66                 }
67                 else
68                 {
69                         if ((idle) || (signon))
70                                 ServerInstance->SendWhoisLine(user, dest, 317, "%s %s %d %d :seconds idle, signon time",user->nick, dest->nick, idle, signon);
71                 }
72                 ServerInstance->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick, dest->nick);
73         }
74         else
75         {
76                 ServerInstance->SendWhoisLine(user, dest, 401, "%s %s :No such nick/channel",user->nick, *nick ? nick : "*");
77                 ServerInstance->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick, *nick ? nick : "*");
78         }
79 }
80
81
82
83 extern "C" command_t* init_command(InspIRCd* Instance)
84 {
85         return new cmd_whois(Instance);
86 }
87
88 CmdResult cmd_whois::Handle (const char** parameters, int pcnt, userrec *user)
89 {
90         userrec *dest;
91         if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
92                 return CMD_SUCCESS;
93
94         dest = ServerInstance->FindNick(parameters[0]);
95
96         if (dest)
97         {
98                 do_whois(this->ServerInstance, user,dest,0,0,parameters[0]);
99         }
100         else
101         {
102                 /* no such nick/channel */
103                 user->WriteServ("401 %s %s :No such nick/channel",user->nick, *parameters[0] ? parameters[0] : "*");
104                 user->WriteServ("318 %s %s :End of /WHOIS list.",user->nick, *parameters[0] ? parameters[0] : "*");
105                 return CMD_FAILURE;
106         }
107
108         return CMD_SUCCESS;
109 }
110