]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_swhois.cpp
Dynamically determine the size of the eventlist[] passed to Attach()
[user/henk/code/inspircd.git] / src / modules / m_swhois.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
8  *   Copyright (C) 2006-2007 John Brooks <john.brooks@dereferenced.net>
9  *   Copyright (C) 2005-2006 Craig Edwards <craigedwards@brainbox.cc>
10  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27
28 /* $ModDesc: Provides the SWHOIS command which allows setting of arbitrary WHOIS lines */
29
30 /** Handle /SWHOIS
31  */
32 class CommandSwhois : public Command
33 {
34  public:
35         StringExtItem swhois;
36         CommandSwhois(Module* Creator) : Command(Creator,"SWHOIS", 2,2), swhois("swhois", Creator)
37         {
38                 flags_needed = 'o'; syntax = "<nick> :<swhois>";
39                 TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
40         }
41
42         CmdResult Handle(const std::vector<std::string> &parameters, User* user)
43         {
44                 User* dest = ServerInstance->FindNick(parameters[0]);
45
46                 if (!dest)
47                 {
48                         user->WriteNumeric(ERR_NOSUCHNICK, "%s %s :No such nick/channel", user->nick.c_str(), parameters[0].c_str());
49                         return CMD_FAILURE;
50                 }
51
52                 std::string* text = swhois.get(dest);
53                 if (text)
54                 {
55                         // We already had it set...
56                         if (!ServerInstance->ULine(user->server))
57                                 // Ulines set SWHOISes silently
58                                 ServerInstance->SNO->WriteGlobalSno('a', "%s used SWHOIS to set %s's extra whois from '%s' to '%s'", user->nick.c_str(), dest->nick.c_str(), text->c_str(), parameters[1].c_str());
59                 }
60                 else if (!ServerInstance->ULine(user->server))
61                 {
62                         // Ulines set SWHOISes silently
63                         ServerInstance->SNO->WriteGlobalSno('a', "%s used SWHOIS to set %s's extra whois to '%s'", user->nick.c_str(), dest->nick.c_str(), parameters[1].c_str());
64                 }
65
66                 if (parameters[1].empty())
67                         swhois.unset(dest);
68                 else
69                         swhois.set(dest, parameters[1]);
70
71                 /* Bug #376 - feature request -
72                  * To cut down on the amount of commands services etc have to recognise, this only sends METADATA across the network now
73                  * not an actual SWHOIS command. Any SWHOIS command sent from services will be automatically translated to METADATA by this.
74                  * Sorry w00t i know this was your fix, but i got bored and wanted to clear down the tracker :)
75                  * -- Brain
76                  */
77                 ServerInstance->PI->SendMetaData(dest, "swhois", parameters[1]);
78
79                 return CMD_SUCCESS;
80         }
81
82 };
83
84 class ModuleSWhois : public Module
85 {
86         CommandSwhois cmd;
87
88  public:
89         ModuleSWhois() : cmd(this)
90         {
91         }
92
93         void init()
94         {
95                 ServerInstance->AddCommand(&cmd);
96                 ServerInstance->Modules->AddService(cmd.swhois);
97                 Implementation eventlist[] = { I_OnWhoisLine, I_OnPostOper };
98                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
99         }
100
101         // :kenny.chatspike.net 320 Brain Azhrarn :is getting paid to play games.
102         ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)
103         {
104                 /* We use this and not OnWhois because this triggers for remote, too */
105                 if (numeric == 312)
106                 {
107                         /* Insert our numeric before 312 */
108                         std::string* swhois = cmd.swhois.get(dest);
109                         if (swhois)
110                         {
111                                 ServerInstance->SendWhoisLine(user, dest, 320, "%s %s :%s",user->nick.c_str(), dest->nick.c_str(), swhois->c_str());
112                         }
113                 }
114
115                 /* Dont block anything */
116                 return MOD_RES_PASSTHRU;
117         }
118
119         void OnPostOper(User* user, const std::string &opertype, const std::string &opername)
120         {
121                 if (!IS_LOCAL(user))
122                         return;
123
124                 std::string swhois = user->oper->getConfig("swhois");
125
126                 if (!swhois.length())
127                         return;
128
129                 cmd.swhois.set(user, swhois);
130                 ServerInstance->PI->SendMetaData(user, "swhois", swhois);
131         }
132
133         ~ModuleSWhois()
134         {
135         }
136
137         Version GetVersion()
138         {
139                 return Version("Provides the SWHOIS command which allows setting of arbitrary WHOIS lines", VF_OPTCOMMON | VF_VENDOR);
140         }
141 };
142
143 MODULE_INIT(ModuleSWhois)