From 433e9777236f877469549f10d7232cf16197c9ba Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 6 May 2006 17:21:19 +0000 Subject: Oper logging module -- this still needs test compiling and test running git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3933 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_operlog.cpp | 104 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 src/modules/m_operlog.cpp diff --git a/src/modules/m_operlog.cpp b/src/modules/m_operlog.cpp new file mode 100644 index 000000000..a84629388 --- /dev/null +++ b/src/modules/m_operlog.cpp @@ -0,0 +1,104 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. + * E-mail: + * + * + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +using namespace std; + +#include "users.h" +#include "channels.h" +#include "modules.h" +#include "helperfuncs.h" +#include "message.h" +#include + +/* $ModDesc: A module which logs all oper commands to the ircd log at default loglevel. */ + +class ModuleOperLog : public Module +{ + private: + Server *Srv; + public: + ModuleOperLog(Server* Me) : Module::Module(Me) + { + Srv = Me; + } + + virtual ~ModuleOperLog() + { + } + + virtual Version GetVersion() + { + return Version(1,0,0,0,VF_VENDOR); + } + + void Implements(char* List) + { + List[I_OnPreCommand] = List[I_On005Numeric] = 1; + } + + virtual int OnPreCommand(const std::string &command, char **parameters, int pcnt, userrec *user, bool validated) + { + /* If the command doesnt appear to be valid, we dont want to mess with it. */ + if (!validated) + return 0; + + if (*user->oper) + { + std::string plist = ""; + for (int j = 0; j < pcnt; j++) + { + plist.append(" "+parameters[j]); + } + log(DEFAULT,"OPERLOG: [%s!%s@%s] %s%s",user->nick,user->ident,user->host,command.c_str(),plist.c_str()); + } + + return 0; + } + + virtual void On005Numeric(std::string &output) + { + output.append(" OPERLOG"); + } + +}; + + + +/******************************************************************************************************/ + +class ModuleOperLogFactory : public ModuleFactory +{ + public: + ModuleOperLogFactory() + { + } + + ~ModuleOperLogFactory() + { + } + + virtual Module * CreateModule(Server* Me) + { + return new ModuleOperLog(Me); + } + +}; + +extern "C" void * init_module( void ) +{ + return new ModuleOperLogFactory; +} + -- cgit v1.2.3