X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_alias.cpp;h=2bf4440b0821cb30712e634b9803f705f6bbd292;hb=78fa4165c90088523e623ab2b64ca0db0d19def0;hp=5eb7c9908400c917e3d313023eec244be29e1805;hpb=cfb2c2fff47d99f43434de7db339c2f2237c6bad;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index 5eb7c9908..2bf4440b0 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -1,78 +1,83 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see - *the file COPYING for details. + * the file COPYING for details. * * --------------------------------------------------- */ -using namespace std; - +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" -#include "helperfuncs.h" -#include "commands.h" -#include "inspircd.h" -#include +#include "wildcard.h" /* $ModDesc: Provides aliases of commands. */ - - +/** An alias definition + */ class Alias : public classbase { public: + /** The text of the alias command */ irc::string text; + /** Text to replace with */ std::string replace_with; + /** Nickname required to perform alias */ std::string requires; + /** Alias requires ulined server */ bool uline; + /** Requires oper? */ + bool operonly; + /* is case sensitive params */ + bool case_sensitive; + /** Format that must be matched for use */ + std::string format; }; class ModuleAlias : public Module { private: - ConfigReader *MyConf; + /** We cant use a map, there may be multiple aliases with the same name */ std::vector Aliases; + std::map AliasMap; + std::vector pars; virtual void ReadAliases() { + ConfigReader MyConf(ServerInstance); + Aliases.clear(); - - for (int i = 0; i < MyConf->Enumerate("alias"); i++) + AliasMap.clear(); + for (int i = 0; i < MyConf.Enumerate("alias"); i++) { Alias a; std::string txt; - txt = MyConf->ReadValue("alias", "text", i); + txt = MyConf.ReadValue("alias", "text", i); a.text = txt.c_str(); - a.replace_with = MyConf->ReadValue("alias", "replace", i); - a.requires = MyConf->ReadValue("alias", "requires", i); - - a.uline = ((MyConf->ReadValue("alias", "uline", i) == "yes") || - (MyConf->ReadValue("alias", "uline", i) == "1") || - (MyConf->ReadValue("alias", "uline", i) == "true")); - + a.replace_with = MyConf.ReadValue("alias", "replace", i, true); + a.requires = MyConf.ReadValue("alias", "requires", i); + a.uline = MyConf.ReadFlag("alias", "uline", i); + a.operonly = MyConf.ReadFlag("alias", "operonly", i); + a.format = MyConf.ReadValue("alias", "format", i); + a.case_sensitive = MyConf.ReadFlag("alias", "matchcase", i); Aliases.push_back(a); + AliasMap[txt] = 1; } - } public: ModuleAlias(InspIRCd* Me) - : Module::Module(Me) + : Module(Me) { - - MyConf = new ConfigReader(ServerInstance); ReadAliases(); + pars.resize(MAXPARAMETERS); } void Implements(char* List) @@ -82,30 +87,90 @@ class ModuleAlias : public Module virtual ~ModuleAlias() { - DELETE(MyConf); } virtual Version GetVersion() { - return Version(1,0,0,1,VF_VENDOR); + return Version(1,1,0,1,VF_VENDOR,API_VERSION); + } + + std::string GetVar(std::string varname, const std::string &original_line) + { + irc::spacesepstream ss(original_line); + varname.erase(varname.begin()); + int index = *(varname.begin()) - 48; + varname.erase(varname.begin()); + bool everything_after = (varname == "-"); + std::string word; + + for (int j = 0; j < index; j++) + ss.GetToken(word); + + if (everything_after) + { + std::string more; + while (ss.GetToken(more)) + { + word.append(" "); + word.append(more); + } + } + + return word; + } + + void SearchAndReplace(std::string& newline, const std::string &find, const std::string &replace) + { + std::string::size_type x = newline.find(find); + while (x != std::string::npos) + { + newline.erase(x, find.length()); + newline.insert(x, replace); + x = newline.find(find); + } } - virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated) + virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line) { userrec *u = NULL; - irc::string c = command.c_str(); - /* If the command is valid, we dont want to know, - * and if theyre not registered yet, we dont want - * to know either + + /* If theyre not registered yet, we dont want + * to know. */ - if ((validated) || (user->registered != REG_ALL)) + if (user->registered != REG_ALL) return 0; - + + /* We dont have any commands looking like this, dont bother with the loop */ + if (AliasMap.find(command) == AliasMap.end()) + return 0; + + irc::string c = command.c_str(); + /* The parameters for the command in their original form, with the command stripped off */ + std::string compare = original_line.substr(command.length()); + while (*(compare.c_str()) == ' ') + compare.erase(compare.begin()); + + std::string safe(original_line); + + /* Escape out any $ symbols in the user provided text */ + + SearchAndReplace(safe, "$", "\r"); + for (unsigned int i = 0; i < Aliases.size(); i++) { if (Aliases[i].text == c) { - if (Aliases[i].requires != "") + /* Does it match the pattern? */ + if (!Aliases[i].format.empty()) + { + if (!match(Aliases[i].case_sensitive, compare.c_str(), Aliases[i].format.c_str())) + continue; + } + + if ((Aliases[i].operonly) && (!IS_OPER(user))) + return 0; + + if (!Aliases[i].requires.empty()) { u = ServerInstance->FindNick(Aliases[i].requires); if (!u) @@ -114,7 +179,7 @@ class ModuleAlias : public Module return 1; } } - if ((u != NULL) && (Aliases[i].requires != "") && (Aliases[i].uline)) + if ((u != NULL) && (!Aliases[i].requires.empty()) && (Aliases[i].uline)) { if (!ServerInstance->ULine(u->server)) { @@ -123,59 +188,85 @@ class ModuleAlias : public Module return 1; } } - std::string n = ""; - for (int j = 0; j < pcnt; j++) + + /* Now, search and replace in a copy of the original_line, replacing $1 through $9 and $1- etc */ + + std::string::size_type crlf = Aliases[i].replace_with.find('\n'); + + if (crlf == std::string::npos) + { + DoCommand(Aliases[i].replace_with, user, safe); + return 1; + } + else { - if (j) - n = n + " "; - n = n + parameters[j]; + irc::sepstream commands(Aliases[i].replace_with, '\n'); + std::string command; + while (commands.GetToken(command)) + { + DoCommand(command, user, safe); + } + return 1; } - /* Final param now in n as one string */ - std::stringstream stuff(Aliases[i].replace_with); - std::string cmd = ""; - std::string target = ""; - stuff >> cmd; - stuff >> target; - const char* para[2]; - para[0] = target.c_str(); - para[1] = n.c_str(); - ServerInstance->CallCommandHandler(cmd,para,2,user); - return 1; } } return 0; - } - - virtual void OnRehash(const std::string ¶meter) + } + + void DoCommand(std::string newline, userrec* user, const std::string &original_line) { - DELETE(MyConf); - MyConf = new ConfigReader(ServerInstance); - - ReadAliases(); - } -}; + for (int v = 1; v < 10; v++) + { + std::string var = "$"; + var.append(ConvToStr(v)); + var.append("-"); + std::string::size_type x = newline.find(var); + while (x != std::string::npos) + { + newline.erase(x, var.length()); + newline.insert(x, GetVar(var, original_line)); + x = newline.find(var); + } -class ModuleAliasFactory : public ModuleFactory -{ - public: - ModuleAliasFactory() - { - } + var = "$"; + var.append(ConvToStr(v)); + x = newline.find(var); - ~ModuleAliasFactory() - { - } + while (x != std::string::npos) + { + newline.erase(x, var.length()); + newline.insert(x, GetVar(var, original_line)); + x = newline.find(var); + } + } - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleAlias(Me); - } -}; + /* Special variables */ + SearchAndReplace(newline, "$nick", user->nick); + SearchAndReplace(newline, "$ident", user->ident); + SearchAndReplace(newline, "$host", user->host); + SearchAndReplace(newline, "$vhost", user->dhost); + /* Unescape any variable names in the user text before sending */ + SearchAndReplace(newline, "\r", "$"); -extern "C" void * init_module( void ) -{ - return new ModuleAliasFactory; -} + irc::tokenstream ss(newline); + const char* parv[MAXPARAMETERS]; + int x = 0; + + while (ss.GetToken(pars[x]) && x < MAXPARAMETERS) + { + parv[x] = pars[x].c_str(); + x++; + } + + ServerInstance->Parser->CallHandler(parv[0], &parv[1], x-1, user); + } + + virtual void OnRehash(userrec* user, const std::string ¶meter) + { + ReadAliases(); + } +}; +MODULE_INIT(ModuleAlias)