]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/whois.cpp
1f21553c5b1ca89ee9e2e4baa5dce10d336ed8db
[user/henk/code/inspircd.git] / src / 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
16 void InspIRCd::DoWhois(User* user, User* dest,unsigned long signon, unsigned long idle, const char* nick)
17 {
18         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());
19         if (user == dest || user->HasPrivPermission("users/auspex"))
20         {
21                 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());
22         }
23
24         std::string cl = dest->ChannelList(user, false);
25
26         if (cl.length())
27                 user->SplitChanList(dest,cl);
28         if (IS_OPER(user) && ServerInstance->Config->OperSpyWhois)
29         {
30                 std::string scl = dest->ChannelList(user, true);
31                 if (scl.length())
32                 {
33                         this->SendWhoisLine(user, dest, 336, "%s %s :is on private/secret channels:",user->nick.c_str(), dest->nick.c_str());
34                         user->SplitChanList(dest,scl);
35                 }
36         }
37         if (user != dest && !this->Config->HideWhoisServer.empty() && !user->HasPrivPermission("servers/auspex"))
38         {
39                 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());
40         }
41         else
42         {
43                 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());
44         }
45
46         if (IS_AWAY(dest))
47         {
48                 this->SendWhoisLine(user, dest, 301, "%s %s :%s",user->nick.c_str(), dest->nick.c_str(), dest->awaymsg.c_str());
49         }
50
51         if (IS_OPER(dest))
52         {
53                 if (this->Config->GenericOper)
54                         this->SendWhoisLine(user, dest, 313, "%s %s :is an IRC operator",user->nick.c_str(), dest->nick.c_str());
55                 else
56                         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());
57         }
58
59         if (user == dest || user->HasPrivPermission("users/auspex"))
60         {
61                 if (dest->IsModeSet('s') != 0)
62                 {
63                         this->SendWhoisLine(user, dest, 379, "%s %s :is using modes +%s +%s", user->nick.c_str(), dest->nick.c_str(), dest->FormatModes(), dest->FormatNoticeMasks());
64                 }
65                 else
66                 {
67                         this->SendWhoisLine(user, dest, 379, "%s %s :is using modes +%s", user->nick.c_str(), dest->nick.c_str(), dest->FormatModes());
68                 }
69         }
70
71         FOREACH_MOD(I_OnWhois,OnWhois(user,dest));
72
73         /*
74          * We only send these if we've been provided them. That is, if hidewhois is turned off, and user is local, or
75          * if remote whois is queried, too. This is to keep the user hidden, and also since you can't reliably tell remote time. -- w00t
76          */
77         if ((idle) || (signon))
78         {
79                 this->SendWhoisLine(user, dest, 317, "%s %s %lu %lu :seconds idle, signon time",user->nick.c_str(), dest->nick.c_str(), idle, signon);
80         }
81
82         this->SendWhoisLine(user, dest, 318, "%s %s :End of /WHOIS list.",user->nick.c_str(), dest->nick.c_str());
83 }
84
85
86