X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_setname.cpp;h=ae85fc98dc57b5a8e21f6ca777461da3f65410e4;hb=a032cd90ad5582914759e226085efee5aae1a1ef;hp=b07f9a3912a7c2bd198f3b15d952c99601c1f876;hpb=d0b4bb3811458aa335857514e4cbb95d5c84f433;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index b07f9a391..ae85fc98d 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -1,101 +1,83 @@ -/* +------------------------------------+ - * | 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 "helperfuncs.h" #include "inspircd.h" -/* $ModDesc: Provides support for the SETNAME command */ -extern InspIRCd* ServerInstance; -class cmd_setname : public command_t +class CommandSetname : public Command { public: - cmd_setname () : command_t("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 = ""; } - void 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) + { + user->WriteNotice("*** SETNAME: Real name is too long"); + return CMD_FAILURE; + } + + if (user->ChangeRealName(parameters[0])) { - line = line + std::string(parameters[i]) + " "; + 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; } }; class ModuleSetName : public Module { - cmd_setname* mycommand; + CommandSetname cmd; public: - ModuleSetName(InspIRCd* Me) - : Module::Module(Me) - { - - mycommand = new cmd_setname(); - ServerInstance->AddCommand(mycommand); - } - - virtual ~ModuleSetName() + ModuleSetName() + : cmd(this) { } - - virtual Version GetVersion() + + void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE { - return Version(1,0,0,1,VF_VENDOR); - } - -}; + ConfigTag* tag = ServerInstance->Config->ConfValue("cgiirc"); -// 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 support for the SETNAME command", VF_VENDOR); } - }; - -extern "C" void * init_module( void ) -{ - return new ModuleSetNameFactory; -} - +MODULE_INIT(ModuleSetName)