X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_taxonomy.cpp;h=79dc8e23feeb616e68a2229e996b82e36b0ce4ce;hb=f2acdbc3820f0f4f5ef76a0a64e73d2a320df91f;hp=edae9ccf67c60e7c56e3f1704899321b198a8402;hpb=bab14f0dd2345c9d7dcbc47c918563709e1ac094;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_taxonomy.cpp b/src/modules/m_taxonomy.cpp index edae9ccf6..79dc8e23f 100644 --- a/src/modules/m_taxonomy.cpp +++ b/src/modules/m_taxonomy.cpp @@ -1 +1,99 @@ -/* +------------------------------------+ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * * InspIRCd: (C) 2002-2007 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ #include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" /* $ModDesc: Provides the /TAXONOMY command, used to view all metadata attached to a user */ /** Handle /WOOT */ class cmd_taxonomy : public command_t { Module* Creator; bool& claimed; public: /* Command 'taxonomy', takes no parameters and needs no special modes */ cmd_taxonomy (InspIRCd* Instance, Module* maker, bool &claim) : command_t(Instance,"TAXONOMY", 'o', 1), Creator(maker), claimed(claim) { this->source = "m_taxonomy.so"; } CmdResult Handle (const char** parameters, int pcnt, userrec *user) { userrec* dest = ServerInstance->FindNick(parameters[0]); if (dest) { std::deque list; list.clear(); user->GetExtList(list); user->WriteServ("304 " + std::string(user->nick) + ":TAXONOMY ITEMS " + std::string(dest->nick) + " " +ConvToStr(list.size())); for (unsigned int j = 0; j < list.size(); j++) { claimed = false; FOREACH_MOD(I_OnSyncUserMetaData, OnSyncUserMetaData(user, Creator, dest, list[j], true)); if (!claimed) { user->WriteServ("304 " + std::string(user->nick) + ":TAXONOMY METADATA " + list[j] + " = "); } } user->WriteServ("304 " + std::string(user->nick) + ":TAXONOMY END"); } return CMD_FAILURE; } }; class ModuleTaxonomy : public Module { cmd_taxonomy* newcommand; bool claimed; public: ModuleTaxonomy(InspIRCd* Me) : Module(Me) { // Create a new command newcommand = new cmd_taxonomy(ServerInstance, this, claimed); ServerInstance->AddCommand(newcommand); } void Implements(char* List) { List[I_ProtoSendMetaData] = 1; } void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata) { if (target_type == TYPE_USER) { userrec* spool = (userrec*)opaque; std::string taxstr = "304 " + std::string(spool->nick) + ":TAXONOMY METADATA "+extname+" = "+extdata; spool->WriteServ(taxstr); claimed = true; } } virtual ~ModuleTaxonomy() { } virtual Version GetVersion() { return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION); } }; MODULE_INIT(ModuleTaxonomy) \ No newline at end of file +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#include "inspircd.h" +#include "users.h" +#include "channels.h" +#include "modules.h" + +/* $ModDesc: Provides the /TAXONOMY command, used to view all metadata attached to a user */ + +/** Handle /WOOT + */ +class cmd_taxonomy : public command_t +{ + Module* Creator; + bool& claimed; + public: + /* Command 'taxonomy', takes no parameters and needs no special modes */ + cmd_taxonomy (InspIRCd* Instance, Module* maker, bool &claim) : command_t(Instance,"TAXONOMY", 'o', 1), Creator(maker), claimed(claim) + { + this->source = "m_taxonomy.so"; + } + + CmdResult Handle (const char** parameters, int pcnt, userrec *user) + { + userrec* dest = ServerInstance->FindNick(parameters[0]); + if (dest) + { + std::deque list; + list.clear(); + user->GetExtList(list); + user->WriteServ("304 " + std::string(user->nick) + ":TAXONOMY ITEMS " + std::string(dest->nick) + " " +ConvToStr(list.size())); + for (unsigned int j = 0; j < list.size(); j++) + { + claimed = false; + FOREACH_MOD(I_OnSyncUserMetaData, OnSyncUserMetaData(user, Creator, dest, list[j], true)); + if (!claimed) + { + user->WriteServ("304 " + std::string(user->nick) + ":TAXONOMY METADATA " + list[j] + " = "); + } + } + user->WriteServ("304 " + std::string(user->nick) + ":TAXONOMY END"); + } + return CMD_FAILURE; + } +}; + +class ModuleTaxonomy : public Module +{ + cmd_taxonomy* newcommand; + bool claimed; + public: + ModuleTaxonomy(InspIRCd* Me) + : Module(Me) + { + + // Create a new command + newcommand = new cmd_taxonomy(ServerInstance, this, claimed); + ServerInstance->AddCommand(newcommand); + } + + void Implements(char* List) + { + List[I_ProtoSendMetaData] = 1; + } + + void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata) + { + if (target_type == TYPE_USER) + { + userrec* spool = (userrec*)opaque; + std::string taxstr = "304 " + std::string(spool->nick) + ":TAXONOMY METADATA "+extname+" = "+extdata; + spool->WriteServ(taxstr); + claimed = true; + } + } + + virtual ~ModuleTaxonomy() + { + } + + virtual Version GetVersion() + { + return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION); + } +}; + +MODULE_INIT(ModuleTaxonomy) +