]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_setname.cpp
345e678f635a86f27f209713e58e283b436ae6e0
[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 #include "modules/ircv3.h"
30 #include "modules/ircv3_replies.h"
31
32 class CommandSetName : public SplitCommand
33 {
34 private:
35         IRCv3::Replies::Fail fail;
36
37  public:
38         Cap::Capability cap;
39         bool notifyopers;
40
41         CommandSetName(Module* Creator)
42                 : SplitCommand(Creator, "SETNAME", 1, 1)
43                 , fail(Creator)
44                 , cap(Creator, "setname")
45         {
46                 allow_empty_last_param = false;
47                 syntax = ":<realname>";
48         }
49
50         CmdResult HandleLocal(LocalUser* user, const Params& parameters) CXX11_OVERRIDE
51         {
52                 if (parameters[0].size() > ServerInstance->Config->Limits.MaxReal)
53                 {
54                         fail.SendIfCap(user, cap, this, "INVALID_REALNAME", "Real name is too long");
55                         return CMD_FAILURE;
56                 }
57
58                 if (!user->ChangeRealName(parameters[0]))
59                 {
60                         fail.SendIfCap(user, cap, this, "CANNOT_CHANGE_REALNAME", "Unable to change your real name");
61                         return CMD_FAILURE;
62                 }
63
64                 if (notifyopers)
65                         ServerInstance->SNO->WriteGlobalSno('a', "%s used SETNAME to change their real name to '%s'",
66                                 user->nick.c_str(), parameters[0].c_str());
67                 return CMD_SUCCESS;
68         }
69 };
70
71 class ModuleSetName : public Module
72 {
73  private:
74         CommandSetName cmd;
75         ClientProtocol::EventProvider setnameevprov;
76
77  public:
78         ModuleSetName()
79                 : cmd(this)
80                 , setnameevprov(this, "SETNAME")
81         {
82         }
83
84         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
85         {
86                 ConfigTag* tag = ServerInstance->Config->ConfValue("setname");
87
88                 // Whether the module should only be usable by server operators.
89                 bool operonly = tag->getBool("operonly");
90                 cmd.flags_needed = operonly ? 'o' : 0;
91
92                 // Whether a snotice should be sent out when a user changes their real name.
93                 cmd.notifyopers = tag->getBool("notifyopers", !operonly);
94         }
95
96         void OnChangeRealName(User* user, const std::string& real) CXX11_OVERRIDE
97         {
98                 if (!(user->registered & REG_NICKUSER))
99                         return;
100
101                 ClientProtocol::Message msg("SETNAME", user);
102                 msg.PushParamRef(real);
103                 ClientProtocol::Event protoev(setnameevprov, msg);
104                 IRCv3::WriteNeighborsWithCap(user, protoev, cmd.cap, true);
105         }
106
107         Version GetVersion() CXX11_OVERRIDE
108         {
109                 return Version("Adds the /SETNAME command which allows users to change their real name (gecos).", VF_VENDOR);
110         }
111 };
112
113 MODULE_INIT(ModuleSetName)