]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_clones.cpp
Fix the cloaking module on C++98 compilers.
[user/henk/code/inspircd.git] / src / modules / m_clones.cpp
index 9859073c52130b08ed6e237341896dd23a84d69b..1210c7c126adddcf04922ace4ddf405a5399192e 100644 (file)
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *   Copyright (C) 2013, 2018 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2012, 2014 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2007, 2010 Craig Edwards <brain@inspircd.org>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * 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/>.
  */
 
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
+
 #include "inspircd.h"
-#include "wildcard.h"
+#include "modules/ircv3_batch.h"
 
-/* $ModDesc: Provides the /clones command to retrieve information on a user, channel, or IP address */
+enum
+{
+       // InspIRCd-specific.
+       RPL_CLONES = 399
+};
 
-/** Handle /CHECK
- */
-class cmd_clones : public command_t
+class CommandClones : public SplitCommand
 {
+ private:
+       IRCv3::Batch::API batchmanager;
+       IRCv3::Batch::Batch batch;
+
  public:
-       cmd_clones (InspIRCd* Instance) : command_t(Instance,"CLONES", 'o', 1)
+       CommandClones(Module* Creator)
+               : SplitCommand(Creator,"CLONES", 1)
+               , batchmanager(Creator)
+               , batch("inspircd.org/clones")
        {
-               this->source = "m_clones.so";
+               flags_needed = 'o';
                syntax = "<limit>";
        }
 
-       std::string FindMatchingIP(const irc::string &ipaddr)
+       CmdResult HandleLocal(LocalUser* user, const Params& parameters) CXX11_OVERRIDE
        {
-               std::string n = assign(ipaddr);
-               for (user_hash::const_iterator a = ServerInstance->clientlist->begin(); a != ServerInstance->clientlist->end(); a++)
-                       if (a->second->GetIPString() == n)
-                               return a->second->GetFullRealHost();
-               return "<?>";
-       }
+               unsigned int limit = ConvToNum<unsigned int>(parameters[0]);
 
-       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
-       {
+               // Syntax of a CLONES reply:
+               // :irc.example.com BATCH +<id> inspircd.org/clones :<min-count>
+               // @batch=<id> :irc.example.com 399 <client> <local-count> <remote-count> <cidr-mask>
+               /// :irc.example.com BATCH :-<id>
 
-               std::string clonesstr = "304 " + std::string(user->nick) + " :CLONES";
-
-               long limit = atoi(parameters[0]);
-
-               /*
-                * Syntax of a /clones reply:
-                *  :server.name 304 target :CLONES START
-                *  :server.name 304 target :CLONES <count> <ip> <fullhost>
-                *  :server.name 304 target :CHECK END
-                */
-
-               user->WriteServ(clonesstr + " START");
+               if (batchmanager)
+               {
+                       batchmanager->Start(batch);
+                       batch.GetBatchStartMessage().PushParam(ConvToStr(limit));
+               }
 
-               /* hostname or other */
-               for (clonemap::iterator x = ServerInstance->global_clones.begin(); x != ServerInstance->global_clones.end(); x++)
+               const UserManager::CloneMap& clonemap = ServerInstance->Users->GetCloneMap();
+               for (UserManager::CloneMap::const_iterator i = clonemap.begin(); i != clonemap.end(); ++i)
                {
-                       if (x->second >= limit)
-                               user->WriteServ(clonesstr + " "+ ConvToStr(x->second) + " " + assign(x->first) + " " + FindMatchingIP(x->first));
+                       const UserManager::CloneCounts& counts = i->second;
+                       if (counts.global < limit)
+                               continue;
+
+                       Numeric::Numeric numeric(RPL_CLONES);
+                       numeric.push(counts.local);
+                       numeric.push(counts.global);
+                       numeric.push(i->first.str());
+
+                       ClientProtocol::Messages::Numeric numericmsg(numeric, user);
+                       batch.AddToBatch(numericmsg);
+                       user->Send(ServerInstance->GetRFCEvents().numeric, numericmsg);
                }
 
-               user->WriteServ(clonesstr + " END");
+               if (batchmanager)
+                       batchmanager->End(batch);
 
-               return CMD_LOCALONLY;
+               return CMD_SUCCESS;
        }
 };
 
-
 class ModuleClones : public Module
 {
- private:
-       cmd_clones *mycommand;
  public:
-       ModuleClones(InspIRCd* Me) : Module::Module(Me)
-       {
-               
-               mycommand = new cmd_clones(ServerInstance);
-               ServerInstance->AddCommand(mycommand);
-       }
-       
-       virtual ~ModuleClones()
-       {
-       }
-       
-       virtual Version GetVersion()
-       {
-               return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
-       }
-
-       void Implements(char* List)
-       {
-               /* we don't hook anything, nothing required */
-       }
-       
-};
+       CommandClones cmd;
 
-
-
-class ModuleClonesFactory : public ModuleFactory
-{
  public:
-       ModuleClonesFactory()
-       {
-       }
-       
-       ~ModuleClonesFactory()
+       ModuleClones()
+               : cmd(this)
        {
        }
-       
-       virtual Module * CreateModule(InspIRCd* Me)
+
+       Version GetVersion() CXX11_OVERRIDE
        {
-               return new ModuleClones(Me);
+               return Version("Adds the /CLONES command which allows server operators to view IP addresses from which there are more than a specified number of connections.", VF_VENDOR);
        }
-       
 };
 
-extern "C" void * init_module( void )
-{
-       return new ModuleClonesFactory;
-}
-
+MODULE_INIT(ModuleClones)