]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_globops.cpp
Fix the cloaking module on C++98 compilers.
[user/henk/code/inspircd.git] / src / modules / m_globops.cpp
index 5745cc9c6d38bc68ec487a6601c7509886ca2619..89164b6002a2a9a70070ff4dcf0b8be26c09a7c9 100644 (file)
@@ -1 +1,72 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r// Globops and +g support module by C.J.Edwards\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r\r/* $ModDesc: Provides support for GLOBOPS and user mode +g */\r\r/** Handle /GLOBOPS\r */\rclass cmd_globops : public command_t\r{\r public:\r      cmd_globops (InspIRCd* Instance) : command_t(Instance,"GLOBOPS",'o',1)\r {\r              this->source = "m_globops.so";\r         syntax = "<any-text>";\r }\r\r     CmdResult Handle (const char** parameters, int pcnt, userrec *user)\r    {\r              std::string line = "From " + std::string(user->nick) + ": ";\r           for (int i = 0; i < pcnt; i++)\r         {\r                      line = line + std::string(parameters[i]) + " ";\r                }\r              ServerInstance->SNO->WriteToSnoMask('g',line);\r\r                /* route it (ofc :p) */\r                return CMD_SUCCESS;\r    }\r};\r\rclass ModuleGlobops : public Module\r{\r    cmd_globops* mycommand;\r public:\r       ModuleGlobops(InspIRCd* Me)\r            : Module(Me)\r   {\r              mycommand = new cmd_globops(ServerInstance);\r           ServerInstance->AddCommand(mycommand);\r         ServerInstance->SNO->EnableSnomask('g',"GLOBOPS");\r     }\r      \r       virtual ~ModuleGlobops()\r       {\r              ServerInstance->SNO->DisableSnomask('g');\r              DELETE(mycommand);\r     }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1, 1, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION);\r        }\r\r     void Implements(char* List)\r    {\r      }\r};\r\rMODULE_INIT(ModuleGlobops)\r
\ No newline at end of file
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   Copyright (C) 2013, 2018-2020 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2012 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
+ *   Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2004, 2006, 2010 Craig Edwards <brain@inspircd.org>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+
+// Globops and snomask +g module by C.J.Edwards
+
+#include "inspircd.h"
+
+/** Handle /GLOBOPS
+ */
+class CommandGlobops : public Command
+{
+ public:
+       CommandGlobops(Module* Creator) : Command(Creator,"GLOBOPS", 1,1)
+       {
+               flags_needed = 'o';
+               syntax = ":<message>";
+       }
+
+       CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
+       {
+               if (parameters[0].empty())
+               {
+                       user->WriteNumeric(ERR_NOTEXTTOSEND, "No text to send");
+                       return CMD_FAILURE;
+               }
+
+               ServerInstance->SNO->WriteGlobalSno('g', "From " + user->nick + ": " + parameters[0]);
+               return CMD_SUCCESS;
+       }
+};
+
+class ModuleGlobops : public Module
+{
+       CommandGlobops cmd;
+ public:
+       ModuleGlobops() : cmd(this) {}
+
+       void init() CXX11_OVERRIDE
+       {
+               ServerInstance->SNO->EnableSnomask('g',"GLOBOPS");
+       }
+
+       Version GetVersion() CXX11_OVERRIDE
+       {
+               return Version("Adds the /GLOBOPS command which allows server operators to send messages to all server operators with the g (globops) snomask.", VF_VENDOR);
+       }
+};
+
+MODULE_INIT(ModuleGlobops)