]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_operlog.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_operlog.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 class ModuleOperLog : public Module
25 {
26         bool tosnomask;
27
28  public:
29         void init() CXX11_OVERRIDE
30         {
31                 ServerInstance->SNO->EnableSnomask('r', "OPERLOG");
32                 OnRehash(NULL);
33         }
34
35         Version GetVersion() CXX11_OVERRIDE
36         {
37                 return Version("A module which logs all oper commands to the ircd log at default loglevel.", VF_VENDOR);
38         }
39
40         void OnRehash(User* user) CXX11_OVERRIDE
41         {
42                 tosnomask = ServerInstance->Config->ConfValue("operlog")->getBool("tosnomask", false);
43         }
44
45         ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, LocalUser *user, bool validated, const std::string &original_line) CXX11_OVERRIDE
46         {
47                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
48                 if (!validated)
49                         return MOD_RES_PASSTHRU;
50
51                 if ((user->IsOper()) && (IS_LOCAL(user)) && (user->HasPermission(command)))
52                 {
53                         Command* thiscommand = ServerInstance->Parser->GetHandler(command);
54                         if ((thiscommand) && (thiscommand->flags_needed == 'o'))
55                         {
56                                 std::string line = irc::stringjoiner(parameters).GetJoined();
57                                 std::string msg = "[" + user->GetFullRealHost() + "] " + command + " " + line;
58                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "OPERLOG: " + msg);
59                                 if (tosnomask)
60                                         ServerInstance->SNO->WriteGlobalSno('r', msg);
61                         }
62                 }
63
64                 return MOD_RES_PASSTHRU;
65         }
66
67         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
68         {
69                 tokens["OPERLOG"];
70         }
71
72 };
73
74 MODULE_INIT(ModuleOperLog)