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