X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_setname.cpp;h=846938c8dcabe75f26a520ccb12480c198f27e0f;hb=e59cb85871f75b7603c63c6cd274d57536cf6794;hp=abc395b52d7446bab77c150c6b2d938881aa2220;hpb=7f9c6c5118261eac40d9bae22ac2c0ede670512d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index abc395b52..846938c8d 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -1,51 +1,52 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * 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. + * Copyright (C) 2007 Dennis Friis + * Copyright (C) 2007 Robin Burchell + * Copyright (C) 2004-2005 Craig Edwards * - * --------------------------------------------------- + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ -using namespace std; - -#include -#include -#include "users.h" -#include "channels.h" -#include "modules.h" #include "inspircd.h" -/* $ModDesc: Provides support for the SETNAME command */ - -class cmd_setname : public command_t +class CommandSetname : public Command { public: - cmd_setname (InspIRCd* Instance) : command_t(Instance,"SETNAME", 0, 1) + bool notifyopers; + CommandSetname(Module* Creator) : Command(Creator,"SETNAME", 1, 1) { - this->source = "m_setname.so"; - syntax = ""; + allow_empty_last_param = false; + syntax = ":"; } - CmdResult Handle (const char** parameters, int pcnt, userrec *user) + CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE { - std::string line = ""; - for (int i = 0; i < pcnt-1; i++) + if (parameters[0].size() > ServerInstance->Config->Limits.MaxReal) { - line = line + std::string(parameters[i]) + " "; + user->WriteNotice("*** SETNAME: Real name is too long"); + return CMD_FAILURE; + } + + if (user->ChangeRealName(parameters[0])) + { + if (notifyopers) + ServerInstance->SNO->WriteGlobalSno('a', "%s used SETNAME to change their real name to '%s'", + user->nick.c_str(), parameters[0].c_str()); } - line = line + std::string(parameters[pcnt-1]); - user->ChangeName(line.c_str()); return CMD_SUCCESS; } @@ -54,50 +55,29 @@ class cmd_setname : public command_t class ModuleSetName : public Module { - cmd_setname* mycommand; + CommandSetname cmd; public: - ModuleSetName(InspIRCd* Me) - : Module::Module(Me) - { - - mycommand = new cmd_setname(ServerInstance); - ServerInstance->AddCommand(mycommand); - } - - virtual ~ModuleSetName() + ModuleSetName() + : cmd(this) { } - - virtual Version GetVersion() + + void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE { - return Version(1,1,0,1,VF_VENDOR,API_VERSION); - } - -}; + ConfigTag* tag = ServerInstance->Config->ConfValue("setname"); -// stuff down here is the module-factory stuff. For basic modules you can ignore this. + // Whether the module should only be usable by server operators. + bool operonly = tag->getBool("operonly"); + cmd.flags_needed = operonly ? 'o' : 0; -class ModuleSetNameFactory : public ModuleFactory -{ - public: - ModuleSetNameFactory() - { - } - - ~ModuleSetNameFactory() - { + // Whether a snotice should be sent out when a user changes their real name. + cmd.notifyopers = tag->getBool("notifyopers", !operonly); } - - virtual Module * CreateModule(InspIRCd* Me) + + Version GetVersion() CXX11_OVERRIDE { - return new ModuleSetName(Me); + return Version("Provides the SETNAME command", VF_VENDOR); } - }; - -extern "C" void * init_module( void ) -{ - return new ModuleSetNameFactory; -} - +MODULE_INIT(ModuleSetName)