]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_setident.cpp
Add support for blocking tag messages with the deaf mode.
[user/henk/code/inspircd.git] / src / modules / m_setident.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018, 2020 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2013 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
8  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
9  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
10  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
11  *   Copyright (C) 2006, 2008, 2010 Craig Edwards <brain@inspircd.org>
12  *   Copyright (C) 2006 Oliver Lupton <om@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 /** Handle /SETIDENT
31  */
32 class CommandSetident : public Command
33 {
34  public:
35  CommandSetident(Module* Creator) : Command(Creator,"SETIDENT", 1)
36         {
37                 allow_empty_last_param = false;
38                 flags_needed = 'o';
39                 syntax = "<ident>";
40         }
41
42         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
43         {
44                 if (parameters[0].size() > ServerInstance->Config->Limits.IdentMax)
45                 {
46                         user->WriteNotice("*** SETIDENT: Ident is too long");
47                         return CMD_FAILURE;
48                 }
49
50                 if (!ServerInstance->IsIdent(parameters[0]))
51                 {
52                         user->WriteNotice("*** SETIDENT: Invalid characters in ident");
53                         return CMD_FAILURE;
54                 }
55
56                 user->ChangeIdent(parameters[0]);
57                 ServerInstance->SNO->WriteGlobalSno('a', "%s used SETIDENT to change their ident to '%s'", user->nick.c_str(), user->ident.c_str());
58
59                 return CMD_SUCCESS;
60         }
61 };
62
63 class ModuleSetIdent : public Module
64 {
65         CommandSetident cmd;
66
67  public:
68         ModuleSetIdent() : cmd(this)
69         {
70         }
71
72         Version GetVersion() CXX11_OVERRIDE
73         {
74                 return Version("Adds the /SETIDENT command which allows server operators to change their username (ident).", VF_VENDOR);
75         }
76 };
77
78 MODULE_INIT(ModuleSetIdent)