]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setname.cpp
Allow configuring whether SETNAME sends snotices and is oper-only.
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
index e088b796381abf64ab310e924a5cd37eb924ff16..ae85fc98dc57b5a8e21f6ca777461da3f65410e4 100644 (file)
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * 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 <peavey@inspircd.org>
+ *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2004-2005 Craig Edwards <craigedwards@brainbox.cc>
  *
- * ---------------------------------------------------
+ * 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 <http://www.gnu.org/licenses/>.
  */
 
-using namespace std;
 
-#include <stdio.h>
-#include <string>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
-#include "helperfuncs.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 = "<new-gecos>";
+               allow_empty_last_param = false;
+               syntax = "<new real name>";
        }
 
-       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);
-               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)