/* * InspIRCd -- Internet Relay Chat Daemon * * Copyright (C) 2007 Dennis Friis * Copyright (C) 2007 Robin Burchell * Copyright (C) 2004-2006 Craig Edwards * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ // Globops and +g support module by C.J.Edwards #include "inspircd.h" /* $ModDesc: Provides support for GLOBOPS and user mode +g */ /** Handle /GLOBOPS */ class CommandGlobops : public Command { public: CommandGlobops (InspIRCd* Instance) : Command(Instance,"GLOBOPS","o",1,1) { this->source = "m_globops.so"; syntax = ""; TRANSLATE2(TR_TEXT, TR_END); } CmdResult Handle (const std::vector ¶meters, User *user) { std::string line = "From " + std::string(user->nick) + ": "; for (int i = 0; i < (int)parameters.size(); i++) { line = line + parameters[i] + " "; } ServerInstance->SNO->WriteToSnoMask('g',line); /* route it (ofc :p) */ return CMD_SUCCESS; } }; class ModuleGlobops : public Module { CommandGlobops* mycommand; public: ModuleGlobops(InspIRCd* Me) : Module(Me) { mycommand = new CommandGlobops(ServerInstance); ServerInstance->AddCommand(mycommand); ServerInstance->SNO->EnableSnomask('g',"GLOBOPS"); } virtual ~ModuleGlobops() { ServerInstance->SNO->DisableSnomask('g'); } virtual Version GetVersion() { return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION); } }; MODULE_INIT(ModuleGlobops)