]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_conn_umodes.cpp
Sync helpop chmodes s and p with docs
[user/henk/code/inspircd.git] / src / modules / m_conn_umodes.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2019 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
6  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
7  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
8  *   Copyright (C) 2006, 2010 Craig Edwards <brain@inspircd.org>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25
26 class ModuleModesOnConnect : public Module
27 {
28  public:
29         Version GetVersion() CXX11_OVERRIDE
30         {
31                 return Version("Allows the server administrator to set user modes on connecting users.", VF_VENDOR);
32         }
33
34         void OnUserConnect(LocalUser* user) CXX11_OVERRIDE
35         {
36                 const std::string modestr = user->MyClass->config->getString("modes");
37                 if (modestr.empty())
38                         return;
39
40                 CommandBase::Params params;
41                 params.push_back(user->nick);
42
43                 irc::spacesepstream modestream(modestr);
44                 for (std::string modetoken; modestream.GetToken(modetoken); )
45                         params.push_back(modetoken);
46
47                 ServerInstance->Parser.CallHandler("MODE", params, user);
48         }
49 };
50
51 MODULE_INIT(ModuleModesOnConnect)