]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/override_whois.cpp
Add support for blocking tag messages with the deaf mode.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / override_whois.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2013, 2016 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
8  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
9  *   Copyright (C) 2007 Craig Edwards <brain@inspircd.org>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24 #include "inspircd.h"
25
26 #include "main.h"
27 #include "commandbuilder.h"
28
29 ModResult ModuleSpanningTree::HandleRemoteWhois(const CommandBase::Params& parameters, User* user)
30 {
31         User* remote = ServerInstance->FindNickOnly(parameters[1]);
32         if (remote && !IS_LOCAL(remote))
33         {
34                 CmdBuilder(user, "IDLE").push(remote->uuid).Unicast(remote);
35                 return MOD_RES_DENY;
36         }
37         else if (!remote)
38         {
39                 user->WriteNumeric(Numerics::NoSuchNick(parameters[0]));
40                 user->WriteNumeric(RPL_ENDOFWHOIS, parameters[0], "End of /WHOIS list.");
41                 return MOD_RES_DENY;
42         }
43         return MOD_RES_PASSTHRU;
44 }