]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_operjoin.cpp
Fix the cloaking module on C++98 compilers.
[user/henk/code/inspircd.git] / src / modules / m_operjoin.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2014 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012 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) 2008 Thomas Stagner <aquanight@inspircd.org>
10  *   Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org>
11  *   Copyright (C) 2006-2007 Craig Edwards <brain@inspircd.org>
12  *   Copyright (C) 2005 Robin Burchell <robin+git@viroteck.net>
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 class ModuleOperjoin : public Module
31 {
32                 std::vector<std::string> operChans;
33                 bool override;
34
35         public:
36                 void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
37                 {
38                         ConfigTag* tag = ServerInstance->Config->ConfValue("operjoin");
39
40                         override = tag->getBool("override", false);
41                         irc::commasepstream ss(tag->getString("channel"));
42                         operChans.clear();
43
44                         for (std::string channame; ss.GetToken(channame); )
45                                 operChans.push_back(channame);
46                 }
47
48                 Version GetVersion() CXX11_OVERRIDE
49                 {
50                         return Version("Allows the server administrator to force server operators to join one or more channels when logging into their server operator account.", VF_VENDOR);
51                 }
52
53                 void OnPostOper(User* user, const std::string &opertype, const std::string &opername) CXX11_OVERRIDE
54                 {
55                         LocalUser* localuser = IS_LOCAL(user);
56                         if (!localuser)
57                                 return;
58
59                         for (std::vector<std::string>::const_iterator i = operChans.begin(); i != operChans.end(); ++i)
60                                 if (ServerInstance->IsChannel(*i))
61                                         Channel::JoinUser(localuser, *i, override);
62
63                         irc::commasepstream ss(localuser->oper->getConfig("autojoin"));
64                         for (std::string channame; ss.GetToken(channame); )
65                         {
66                                 if (ServerInstance->IsChannel(channame))
67                                         Channel::JoinUser(localuser, channame, override);
68                         }
69                 }
70 };
71
72 MODULE_INIT(ModuleOperjoin)