]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/whois.cpp
Fix typo in log message.
[user/henk/code/inspircd.git] / src / whois.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21
22 void InspIRCd::DoWhois(User* user, User* dest,unsigned long signon, unsigned long idle, const char* nick)
23 {
24         this->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());
25         if (user == dest || user->HasPrivPermission("users/auspex"))
26         {
27                 this->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());
28         }
29
30         std::string cl = dest->ChannelList(user, false);
31         const ServerConfig::OperSpyWhoisState state = user->HasPrivPermission("users/auspex") ? ServerInstance->Config->OperSpyWhois : ServerConfig::SPYWHOIS_NONE;
32
33         if (state == ServerConfig::SPYWHOIS_SINGLEMSG)
34                 cl.append(dest->ChannelList(user, true));
35
36         user->SplitChanList(dest,cl);
37
38         if (state == ServerConfig::SPYWHOIS_SPLITMSG)
39         {
40                 std::string scl = dest->ChannelList(user, true);
41                 if (scl.length())
42                 {
43                         SendWhoisLine(user, dest, 336, "%s %s :is on private/secret channels:",user->nick.c_str(), dest->nick.c_str());
44                         user->SplitChanList(dest,scl);
45                 }
46         }
47         if (user != dest && !this->Config->HideWhoisServer.empty() && !user->HasPrivPermission("servers/auspex"))
48         {
49                 this->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick.c_str(), dest->nick.c_str(), this->Config->HideWhoisServer.c_str(), this->Config->Network.c_str());
50         }
51         else
52         {
53                 this->SendWhoisLine(user, dest, 312, "%s %s %s :%s",user->nick.c_str(), dest->nick.c_str(), dest->server.c_str(), this->GetServerDescription(dest->server).c_str());
54         }
55
56         if (IS_AWAY(dest))
57         {
58                 this->SendWhoisLine(user, dest, 301, "%s %s :%s",user->nick.c_str(), dest->nick.c_str(), dest->awaymsg.c_str());
59         }
60
61         if (IS_OPER(dest))
62         {
63                 if (this->Config->GenericOper)
64                         this->SendWhoisLine(user, dest, 313, "%s %s :is an IRC operator",user->nick.c_str(), dest->nick.c_str());
65                 else
66                         this->SendWhoisLine(user, dest, 313, "%s %s :is %s %s on %s",user->nick.c_str(), dest->nick.c_str(), (strchr("AEIOUaeiou",dest->oper->name[0]) ? "an" : "a"),dest->oper->NameStr(), this->Config->Network.c_str());
67         }
68
69         if (user == dest || user->HasPrivPermission("users/auspex"))
70         {
71                 if (dest->IsModeSet('s') != 0)
72                 {
73                         this->SendWhoisLine(user, dest, 379, "%s %s :is using modes +%s +%s", user->nick.c_str(), dest->nick.c_str(), dest->FormatModes(), dest->FormatNoticeMasks());
74                 }
75                 else
76                 {
77                         this->SendWhoisLine(user, dest, 379, "%s %s :is using modes +%s", user->nick.c_str(), dest->nick.c_str(), dest->FormatModes());
78                 }
79         }
80
81         FOREACH_MOD(I_OnWhois,OnWhois(user,dest));
82
83         /*
84          * We only send these if we've been provided them. That is, if hidewhois is turned off, and user is local, or
85          * if remote whois is queried, too. This is to keep the user hidden, and also since you can't reliably tell remote time. -- w00t
86          */
87         if ((idle) || (signon))
88         {
89                 this->SendWhoisLine(user, dest, 317, "%s %s %lu %lu :seconds idle, signon time",user->nick.c_str(), dest->nick.c_str(), idle, signon);
90         }
91
92         this->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick.c_str(), dest->nick.c_str());
93 }
94
95
96