1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
16 /* $ModDesc: Provides the SWHOIS command which allows setting of arbitary WHOIS lines */
20 class CommandSwhois : public Command
24 CommandSwhois (InspIRCd* Instance) : Command(Instance,"SWHOIS",'o',2)
26 this->source = "m_swhois.so";
27 syntax = "<nick> <swhois>";
28 TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
31 CmdResult Handle(const char** parameters, int pcnt, User* user)
33 User* dest = ServerInstance->FindNick(parameters[0]);
37 user->WriteServ("401 %s %s :No such nick/channel", user->nick, parameters[0]);
43 user->WriteServ("NOTICE %s :*** SWHOIS: Whois line must be specified", user->nick);
48 for (int i = 1; i < pcnt; i++)
53 line.append(parameters[i]);
57 dest->GetExt("swhois", text);
61 // We already had it set...
63 if (!ServerInstance->ULine(user->server))
64 // Ulines set SWHOISes silently
65 ServerInstance->WriteOpers("*** %s used SWHOIS to set %s's extra whois from '%s' to '%s'", user->nick, dest->nick, text->c_str(), line.c_str());
67 dest->Shrink("swhois");
70 else if (!ServerInstance->ULine(user->server))
72 // Ulines set SWHOISes silently
73 ServerInstance->WriteOpers("*** %s used SWHOIS to set %s's extra whois to '%s'", user->nick, dest->nick, line.c_str());
76 text = new std::string(line);
77 dest->Extend("swhois", text);
79 /* Bug #376 - feature request -
80 * To cut down on the amount of commands services etc have to recognise, this only sends METADATA across the network now
81 * not an actual SWHOIS command. Any SWHOIS command sent from services will be automatically translated to METADATA by this.
82 * Sorry w00t i know this was your fix, but i got bored and wanted to clear down the tracker :)
85 std::deque<std::string>* metadata = new std::deque<std::string>;
86 metadata->push_back(dest->nick);
87 metadata->push_back("swhois"); // The metadata id
88 metadata->push_back(*text); // The value to send
89 Event event((char*)metadata,(Module*)this,"send_metadata");
90 event.Send(ServerInstance);
98 class ModuleSWhois : public Module
100 CommandSwhois* mycommand;
105 ModuleSWhois(InspIRCd* Me) : Module(Me)
108 Conf = new ConfigReader(ServerInstance);
109 mycommand = new CommandSwhois(ServerInstance);
110 ServerInstance->AddCommand(mycommand);
113 void OnRehash(User* user, const std::string ¶meter)
116 Conf = new ConfigReader(ServerInstance);
119 void Implements(char* List)
121 List[I_OnDecodeMetaData] = List[I_OnWhoisLine] = List[I_OnSyncUserMetaData] = List[I_OnUserQuit] = List[I_OnCleanup] = List[I_OnRehash] = List[I_OnPostCommand] = 1;
124 // :kenny.chatspike.net 320 Brain Azhrarn :is getting paid to play games.
125 int OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)
127 /* We use this and not OnWhois because this triggers for remote, too */
130 /* Insert our numeric before 312 */
132 dest->GetExt("swhois", swhois);
135 ServerInstance->SendWhoisLine(user, dest, 320, "%s %s :%s",user->nick,dest->nick,swhois->c_str());
138 /* Dont block anything */
142 // Whenever the linking module wants to send out data, but doesnt know what the data
143 // represents (e.g. it is metadata, added to a User or Channel by a module) then
144 // this method is called. We should use the ProtoSendMetaData function after we've
145 // corrected decided how the data should look, to send the metadata on its way if
147 virtual void OnSyncUserMetaData(User* user, Module* proto, void* opaque, const std::string &extname, bool displayable)
149 // check if the linking module wants to know about OUR metadata
150 if (extname == "swhois")
152 // check if this user has an swhois field to send
154 user->GetExt("swhois", swhois);
157 // call this function in the linking module, let it format the data how it
158 // sees fit, and send it on its way. We dont need or want to know how.
159 proto->ProtoSendMetaData(opaque,TYPE_USER,user,extname,*swhois);
164 // when a user quits, tidy up their metadata
165 virtual void OnUserQuit(User* user, const std::string &message, const std::string &oper_message)
168 user->GetExt("swhois", swhois);
171 user->Shrink("swhois");
176 // if the module is unloaded, tidy up all our dangling metadata
177 virtual void OnCleanup(int target_type, void* item)
179 if (target_type == TYPE_USER)
181 User* user = (User*)item;
183 user->GetExt("swhois", swhois);
186 user->Shrink("swhois");
192 // Whenever the linking module receives metadata from another server and doesnt know what
193 // to do with it (of course, hence the 'meta') it calls this method, and it is up to each
194 // module in turn to figure out if this metadata key belongs to them, and what they want
196 // In our case we're only sending a single string around, so we just construct a std::string.
197 // Some modules will probably get much more complex and format more detailed structs and classes
198 // in a textual way for sending over the link.
199 virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata)
201 // check if its our metadata key, and its associated with a user
202 if ((target_type == TYPE_USER) && (extname == "swhois"))
204 User* dest = (User*)target;
205 // if they dont already have an swhois field, accept the remote server's
207 if (!dest->GetExt("swhois", text))
209 std::string* text = new std::string(extdata);
210 dest->Extend("swhois",text);
215 virtual void OnPostCommand(const std::string &command, const char **params, int pcnt, User *user, CmdResult result, const std::string &original_line)
217 if ((command != "OPER") || (result != CMD_SUCCESS))
222 for (int i = 0; i < Conf->Enumerate("oper"); i++)
224 std::string name = Conf->ReadValue("oper", "name", i);
226 if (name == params[0])
228 swhois = Conf->ReadValue("oper", "swhois", i);
233 if (!swhois.length())
235 for (int i = 0; i < Conf->Enumerate("type"); i++)
237 std::string type = Conf->ReadValue("type", "name", i);
239 if (type == user->oper)
241 swhois = Conf->ReadValue("type", "swhois", i);
248 if (user->GetExt("swhois", old))
250 user->Shrink("swhois");
254 if (!swhois.length())
257 std::string *text = new std::string(swhois);
258 user->Extend("swhois", text);
259 std::deque<std::string>* metadata = new std::deque<std::string>;
260 metadata->push_back(user->nick);
261 metadata->push_back("swhois"); // The metadata id
262 metadata->push_back(*text); // The value to send
263 Event event((char*)metadata,(Module*)this,"send_metadata");
264 event.Send(ServerInstance);
268 virtual ~ModuleSWhois()
273 virtual Version GetVersion()
275 return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
279 MODULE_INIT(ModuleSWhois)