]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_setname.cpp
7510a79f70da3100ab018a0a6c0dbf7e9ce441fb
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018 Matt Schatz <genius3000@g3k.solutions>
5  *   Copyright (C) 2013, 2018-2019 Sadie Powell <sadie@witchery.services>
6  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2012 Attila Molnar <attilamolnar@hush.com>
8  *   Copyright (C) 2010 Craig Edwards <brain@inspircd.org>
9  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
10  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
11  *   Copyright (C) 2007 John Brooks <special@inspircd.org>
12  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
13  *
14  * This file is part of InspIRCd.  InspIRCd is free software: you can
15  * redistribute it and/or modify it under the terms of the GNU General Public
16  * License as published by the Free Software Foundation, version 2.
17  *
18  * This program is distributed in the hope that it will be useful, but WITHOUT
19  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25  */
26
27
28 #include "inspircd.h"
29
30
31
32 class CommandSetname : public Command
33 {
34  public:
35         bool notifyopers;
36         CommandSetname(Module* Creator) : Command(Creator,"SETNAME", 1, 1)
37         {
38                 allow_empty_last_param = false;
39                 syntax = ":<realname>";
40         }
41
42         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
43         {
44                 if (parameters[0].size() > ServerInstance->Config->Limits.MaxReal)
45                 {
46                         user->WriteNotice("*** SETNAME: Real name is too long");
47                         return CMD_FAILURE;
48                 }
49
50                 if (user->ChangeRealName(parameters[0]))
51                 {
52                         if (notifyopers)
53                                 ServerInstance->SNO->WriteGlobalSno('a', "%s used SETNAME to change their real name to '%s'",
54                                         user->nick.c_str(), parameters[0].c_str());
55                 }
56
57                 return CMD_SUCCESS;
58         }
59 };
60
61
62 class ModuleSetName : public Module
63 {
64         CommandSetname cmd;
65  public:
66         ModuleSetName()
67                 : cmd(this)
68         {
69         }
70
71         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
72         {
73                 ConfigTag* tag = ServerInstance->Config->ConfValue("setname");
74
75                 // Whether the module should only be usable by server operators.
76                 bool operonly = tag->getBool("operonly");
77                 cmd.flags_needed = operonly ? 'o' : 0;
78
79                 // Whether a snotice should be sent out when a user changes their real name.
80                 cmd.notifyopers = tag->getBool("notifyopers", !operonly);
81         }
82
83         Version GetVersion() CXX11_OVERRIDE
84         {
85                 return Version("Provides the SETNAME command", VF_VENDOR);
86         }
87 };
88
89 MODULE_INIT(ModuleSetName)