]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_chgident.cpp
Add support for blocking tag messages with the deaf mode.
[user/henk/code/inspircd.git] / src / modules / m_chgident.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2014, 2016 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-2008, 2010 Craig Edwards <brain@inspircd.org>
10  *   Copyright (C) 2007, 2009 Dennis Friis <peavey@inspircd.org>
11  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
12  *   Copyright (C) 2007 John Brooks <special@inspircd.org>
13  *   Copyright (C) 2006 Oliver Lupton <om@inspircd.org>
14  *
15  * This file is part of InspIRCd.  InspIRCd is free software: you can
16  * redistribute it and/or modify it under the terms of the GNU General Public
17  * License as published by the Free Software Foundation, version 2.
18  *
19  * This program is distributed in the hope that it will be useful, but WITHOUT
20  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
21  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
22  * details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
26  */
27
28
29 #include "inspircd.h"
30
31 /** Handle /CHGIDENT
32  */
33 class CommandChgident : public Command
34 {
35  public:
36         CommandChgident(Module* Creator) : Command(Creator,"CHGIDENT", 2)
37         {
38                 allow_empty_last_param = false;
39                 flags_needed = 'o';
40                 syntax = "<nick> <ident>";
41                 TRANSLATE2(TR_NICK, TR_TEXT);
42         }
43
44         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
45         {
46                 User* dest = ServerInstance->FindNick(parameters[0]);
47
48                 if ((!dest) || (dest->registered != REG_ALL))
49                 {
50                         user->WriteNumeric(Numerics::NoSuchNick(parameters[0]));
51                         return CMD_FAILURE;
52                 }
53
54                 if (parameters[1].length() > ServerInstance->Config->Limits.IdentMax)
55                 {
56                         user->WriteNotice("*** CHGIDENT: Ident is too long");
57                         return CMD_FAILURE;
58                 }
59
60                 if (!ServerInstance->IsIdent(parameters[1]))
61                 {
62                         user->WriteNotice("*** CHGIDENT: Invalid characters in ident");
63                         return CMD_FAILURE;
64                 }
65
66                 if (IS_LOCAL(dest))
67                 {
68                         dest->ChangeIdent(parameters[1]);
69
70                         if (!user->server->IsULine())
71                                 ServerInstance->SNO->WriteGlobalSno('a', "%s used CHGIDENT to change %s's ident to '%s'", user->nick.c_str(), dest->nick.c_str(), dest->ident.c_str());
72                 }
73
74                 return CMD_SUCCESS;
75         }
76
77         RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
78         {
79                 return ROUTE_OPT_UCAST(parameters[0]);
80         }
81 };
82
83 class ModuleChgIdent : public Module
84 {
85         CommandChgident cmd;
86
87 public:
88         ModuleChgIdent() : cmd(this)
89         {
90         }
91
92         Version GetVersion() CXX11_OVERRIDE
93         {
94                 return Version("Adds the /CHGIDENT command which allows server operators to change the username (ident) of a user.", VF_OPTCOMMON | VF_VENDOR);
95         }
96 };
97
98 MODULE_INIT(ModuleChgIdent)