]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_showwhois.cpp
ProtocolInterface::SendEncapsulatedData() changes
[user/henk/code/inspircd.git] / src / modules / m_showwhois.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2005, 2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
8  *   Copyright (C) 2004 Christopher Hall <typobox43@gmail.com>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25
26 /** Handle user mode +W
27  */
28 class SeeWhois : public SimpleUserModeHandler
29 {
30  public:
31         SeeWhois(Module* Creator)
32                 : SimpleUserModeHandler(Creator, "showwhois", 'W')
33         {
34         }
35
36         void SetOperOnly(bool operonly)
37         {
38                 oper = operonly;
39         }
40 };
41
42 class WhoisNoticeCmd : public Command
43 {
44  public:
45         WhoisNoticeCmd(Module* Creator) : Command(Creator,"WHOISNOTICE", 2)
46         {
47                 flags_needed = FLAG_SERVERONLY;
48         }
49
50         void HandleFast(User* dest, User* src)
51         {
52                 dest->WriteNotice("*** " + src->nick + " (" + src->ident + "@" +
53                         (dest->HasPrivPermission("users/auspex") ? src->host : src->dhost) +
54                         ") did a /whois on you");
55         }
56
57         CmdResult Handle(const std::vector<std::string> &parameters, User *user)
58         {
59                 User* dest = ServerInstance->FindNick(parameters[0]);
60                 if (!dest)
61                         return CMD_FAILURE;
62
63                 User* source = ServerInstance->FindNick(parameters[1]);
64
65                 if (IS_LOCAL(dest) && source)
66                         HandleFast(dest, source);
67
68                 return CMD_SUCCESS;
69         }
70 };
71
72 class ModuleShowwhois : public Module
73 {
74         bool ShowWhoisFromOpers;
75         SeeWhois sw;
76         WhoisNoticeCmd cmd;
77
78  public:
79
80         ModuleShowwhois()
81                 : sw(this), cmd(this)
82         {
83         }
84
85         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
86         {
87                 ConfigTag* tag = ServerInstance->Config->ConfValue("showwhois");
88
89                 sw.SetOperOnly(tag->getBool("opersonly", true));
90                 ShowWhoisFromOpers = tag->getBool("showfromopers", true);
91         }
92
93         Version GetVersion() CXX11_OVERRIDE
94         {
95                 return Version("Allows opers to set +W to see when a user uses WHOIS on them",VF_OPTCOMMON|VF_VENDOR);
96         }
97
98         void OnWhois(User* source, User* dest) CXX11_OVERRIDE
99         {
100                 if (!dest->IsModeSet(sw) || source == dest)
101                         return;
102
103                 if (!ShowWhoisFromOpers && source->IsOper())
104                         return;
105
106                 if (IS_LOCAL(dest))
107                 {
108                         cmd.HandleFast(dest, source);
109                 }
110                 else
111                 {
112                         std::vector<std::string> params;
113                         params.push_back(dest->uuid);
114                         params.push_back(source->uuid);
115                         ServerInstance->PI->SendEncapsulatedData(dest->server->GetName(), cmd.name, params);
116                 }
117         }
118 };
119
120 MODULE_INIT(ModuleShowwhois)