]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_operlog.cpp
Make better use of User::GetFullRealHost()
[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 /* $ModDesc: A module which logs all oper commands to the ircd log at default loglevel. */
25
26 class ModuleOperLog : public Module
27 {
28  private:
29
30  public:
31         ModuleOperLog()         {
32
33                 Implementation eventlist[] = { I_OnPreCommand, I_On005Numeric };
34                 ServerInstance->Modules->Attach(eventlist, this, 2);
35         }
36
37         virtual ~ModuleOperLog()
38         {
39         }
40
41         virtual Version GetVersion()
42         {
43                 return Version("A module which logs all oper commands to the ircd log at default loglevel.", VF_VENDOR);
44         }
45
46
47         virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, LocalUser *user, bool validated, const std::string &original_line)
48         {
49                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
50                 if (!validated)
51                         return MOD_RES_PASSTHRU;
52
53                 if ((IS_OPER(user)) && (IS_LOCAL(user)) && (user->HasPermission(command)))
54                 {
55                         Command* thiscommand = ServerInstance->Parser->GetHandler(command);
56                         if ((thiscommand) && (thiscommand->flags_needed == 'o'))
57                         {
58                                 std::string line;
59                                 if (!parameters.empty())
60                                         line = irc::stringjoiner(" ", parameters, 0, parameters.size() - 1).GetJoined();
61                                 ServerInstance->Logs->Log("m_operlog",DEFAULT,"OPERLOG: [%s] %s %s", user->GetFullRealHost().c_str(), command.c_str(), line.c_str());
62                         }
63                 }
64
65                 return MOD_RES_PASSTHRU;
66         }
67
68         virtual void On005Numeric(std::string &output)
69         {
70                 output.append(" OPERLOG");
71         }
72
73 };
74
75
76 MODULE_INIT(ModuleOperLog)