]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_lockserv.cpp
Merge pull request #514 from SaberUK/master+virtual-cleanup
[user/henk/code/inspircd.git] / src / modules / m_lockserv.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2006-2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22
23 /* $ModDesc: Allows locking of the server to stop all incoming connections till unlocked again */
24
25 /** Adds numerics
26  * 988 <nick> <servername> :Closed for new connections
27  * 989 <nick> <servername> :Open for new connections
28  */
29
30 class CommandLockserv : public Command
31 {
32         bool& locked;
33
34  public:
35         CommandLockserv(Module* Creator, bool& lock) : Command(Creator, "LOCKSERV", 0), locked(lock)
36         {
37                 flags_needed = 'o';
38         }
39
40         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
41         {
42                 if (locked)
43                 {
44                         user->WriteNotice("The server is already locked.");
45                         return CMD_FAILURE;
46                 }
47
48                 locked = true;
49                 user->WriteNumeric(988, "%s %s :Closed for new connections", user->nick.c_str(), user->server.c_str());
50                 ServerInstance->SNO->WriteGlobalSno('a', "Oper %s used LOCKSERV to temporarily disallow new connections", user->nick.c_str());
51                 return CMD_SUCCESS;
52         }
53 };
54
55 class CommandUnlockserv : public Command
56 {
57         bool& locked;
58
59  public:
60         CommandUnlockserv(Module* Creator, bool &lock) : Command(Creator, "UNLOCKSERV", 0), locked(lock)
61         {
62                 flags_needed = 'o';
63         }
64
65         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
66         {
67                 if (!locked)
68                 {
69                         user->WriteNotice("The server isn't locked.");
70                         return CMD_FAILURE;
71                 }
72
73                 locked = false;
74                 user->WriteNumeric(989, "%s %s :Open for new connections", user->nick.c_str(), user->server.c_str());
75                 ServerInstance->SNO->WriteGlobalSno('a', "Oper %s used UNLOCKSERV to allow new connections", user->nick.c_str());
76                 return CMD_SUCCESS;
77         }
78 };
79
80 class ModuleLockserv : public Module
81 {
82         bool locked;
83         CommandLockserv lockcommand;
84         CommandUnlockserv unlockcommand;
85
86  public:
87         ModuleLockserv() : lockcommand(this, locked), unlockcommand(this, locked)
88         {
89         }
90
91         void init() CXX11_OVERRIDE
92         {
93                 locked = false;
94                 ServerInstance->Modules->AddService(lockcommand);
95                 ServerInstance->Modules->AddService(unlockcommand);
96                 Implementation eventlist[] = { I_OnUserRegister, I_OnRehash, I_OnCheckReady };
97                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
98         }
99
100         void OnRehash(User* user) CXX11_OVERRIDE
101         {
102                 // Emergency way to unlock
103                 if (!user) locked = false;
104         }
105
106         ModResult OnUserRegister(LocalUser* user) CXX11_OVERRIDE
107         {
108                 if (locked)
109                 {
110                         ServerInstance->Users->QuitUser(user, "Server is temporarily closed. Please try again later.");
111                         return MOD_RES_DENY;
112                 }
113                 return MOD_RES_PASSTHRU;
114         }
115
116         ModResult OnCheckReady(LocalUser* user) CXX11_OVERRIDE
117         {
118                 return locked ? MOD_RES_DENY : MOD_RES_PASSTHRU;
119         }
120
121         Version GetVersion() CXX11_OVERRIDE
122         {
123                 return Version("Allows locking of the server to stop all incoming connections until unlocked again", VF_VENDOR);
124         }
125 };
126
127 MODULE_INIT(ModuleLockserv)