]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/main.h
Don't call events provided by dying or dead modules.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / main.h
index 2490c83ef65133252cc606af4f76b42063484ce5..0763694938810f289c1298592deb8d738c41bbfb 100644 (file)
@@ -1,11 +1,16 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
- *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
- *   Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2019 linuxdaemon <linuxdaemon.irc@gmail.com>
+ *   Copyright (C) 2013-2016, 2018 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2013, 2017-2020 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2013 Adam <Adam@anope.org>
+ *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
+ *   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, 2009-2010 Craig Edwards <brain@inspircd.org>
  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
- *   Copyright (C) 2007 Dennis Friis <peavey@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
 #include "inspircd.h"
 #include "event.h"
 #include "modules/dns.h"
+#include "modules/ssl.h"
+#include "modules/stats.h"
+#include "modules/ctctags.h"
+#include "modules/server.h"
 #include "servercommand.h"
 #include "commands.h"
 #include "protocolinterface.h"
+#include "tags.h"
 
-/** If you make a change which breaks the protocol, increment this.
- * If you  completely change the protocol, completely change the number.
+/** An enumeration of all known protocol versions.
  *
- * IMPORTANT: If you make changes, document your changes here, without fail:
- * http://wiki.inspircd.org/List_of_protocol_changes_between_versions
- *
- * Failure to document your protocol changes will result in a painfully
- * painful death by pain. You have been warned.
+ * If you introduce new protocol versions please document them here:
+ * https://docs.inspircd.org/spanningtree/changes
  */
-const long ProtocolVersion = 1205;
-const long MinCompatProtocol = 1202;
+enum ProtocolVersion
+{
+       /** The linking protocol version introduced in InspIRCd v2.0. */
+       PROTO_INSPIRCD_20 = 1202,
+
+       /** The linking protocol version introduced in InspIRCd v2.1 alpha 0. */
+       PROTO_INSPIRCD_21_A0 = 1203,
+
+       /** The linking protocol version introduced in InspIRCd v2.1 beta 2. */
+       PROTO_INSPIRCD_21_B2 = 1204,
+
+       /** The linking protocol version introduced in InspIRCd v3.0. */
+       PROTO_INSPIRCD_30 = 1205,
+
+       /** The oldest version of the protocol that we support. */
+       PROTO_OLDEST = PROTO_INSPIRCD_20,
+
+       /** The newest version of the protocol that we support. */
+       PROTO_NEWEST = PROTO_INSPIRCD_30
+};
 
 /** Forward declarations
  */
@@ -52,7 +76,11 @@ class Autoconnect;
 
 /** This is the main class for the spanningtree module
  */
-class ModuleSpanningTree : public Module
+class ModuleSpanningTree
+       : public Module
+       , public Away::EventListener
+       , public Stats::EventListener
+       , public CTCTags::EventListener
 {
        /** Client to server commands, registered in the core
         */
@@ -72,13 +100,30 @@ class ModuleSpanningTree : public Module
         */
        SpanningTreeProtocolInterface protocolinterface;
 
-       /** Event provider for our events
-        */
-       Events::ModuleEventProvider eventprov;
+       /** Event provider for our broadcast events. */
+       Events::ModuleEventProvider broadcasteventprov;
+
+       /** Event provider for our link events. */
+       Events::ModuleEventProvider linkeventprov;
+
+       /** Event provider for our message events. */
+       Events::ModuleEventProvider messageeventprov;
+
+       /** Event provider for our sync events. */
+       Events::ModuleEventProvider synceventprov;
+
+       /** API for accessing user SSL certificates. */
+       UserCertificateAPI sslapi;
+
+       /** Tag for marking services pseudoclients. */
+       ServiceTag servicetag;
 
  public:
        dynamic_reference<DNS::Manager> DNS;
 
+       /** Event provider for message tags. */
+       ClientProtocol::MessageTagEvent tagevprov;
+
        ServerCommandManager CmdManager;
 
        /** Set to true if inside a spanningtree call, to prevent sending
@@ -97,15 +142,15 @@ class ModuleSpanningTree : public Module
 
        /** Handle LINKS command
         */
-       void HandleLinks(const std::vector<std::string>& parameters, User* user);
+       void HandleLinks(const CommandBase::Params& parameters, User* user);
 
        /** Handle SQUIT
         */
-       ModResult HandleSquit(const std::vector<std::string>& parameters, User* user);
+       ModResult HandleSquit(const CommandBase::Params& parameters, User* user);
 
        /** Handle remote WHOIS
         */
-       ModResult HandleRemoteWhois(const std::vector<std::string>& parameters, User* user);
+       ModResult HandleRemoteWhois(const CommandBase::Params& parameters, User* user);
 
        /** Connect a server locally
         */
@@ -123,38 +168,42 @@ class ModuleSpanningTree : public Module
         */
        void DoConnectTimeout(time_t curtime);
 
-       /** Handle remote VERSON
+       /** Handle remote VERSION
         */
-       ModResult HandleVersion(const std::vector<std::string>& parameters, User* user);
+       ModResult HandleVersion(const CommandBase::Params& parameters, User* user);
 
        /** Handle CONNECT
         */
-       ModResult HandleConnect(const std::vector<std::string>& parameters, User* user);
+       ModResult HandleConnect(const CommandBase::Params& parameters, User* user);
 
-       /** Attempt to send a message to a user
-        */
-       void RemoteMessage(User* user, const char* format, ...) CUSTOM_PRINTF(3, 4);
+       /** Retrieves the event provider for broadcast events. */
+       const Events::ModuleEventProvider& GetBroadcastEventProvider() const { return broadcasteventprov; }
 
-       /** Display a time as a human readable string
-        */
-       static std::string TimeToStr(time_t secs);
+       /** Retrieves the event provider for link events. */
+       const Events::ModuleEventProvider& GetLinkEventProvider() const { return linkeventprov; }
+
+       /** Retrieves the event provider for message events. */
+       const Events::ModuleEventProvider& GetMessageEventProvider() const { return messageeventprov; }
 
-       const Events::ModuleEventProvider& GetEventProvider() const { return eventprov; }
+       /** Retrieves the event provider for sync events. */
+       const Events::ModuleEventProvider& GetSyncEventProvider() const { return synceventprov; }
 
        /**
         ** *** MODULE EVENTS ***
         **/
 
-       ModResult OnPreCommand(std::string &command, std::vector<std::string>& parameters, LocalUser *user, bool validated, const std::string &original_line) CXX11_OVERRIDE;
-       void OnPostCommand(Command*, const std::vector<std::string>& parameters, LocalUser* user, CmdResult result, const std::string& original_line) CXX11_OVERRIDE;
+       ModResult OnPreCommand(std::string& command, CommandBase::Params& parameters, LocalUser* user, bool validated) CXX11_OVERRIDE;
+       void OnPostCommand(Command*, const CommandBase::Params& parameters, LocalUser* user, CmdResult result, bool loop) CXX11_OVERRIDE;
        void OnUserConnect(LocalUser* source) CXX11_OVERRIDE;
        void OnUserInvite(User* source, User* dest, Channel* channel, time_t timeout, unsigned int notifyrank, CUList& notifyexcepts) CXX11_OVERRIDE;
+       ModResult OnPreTopicChange(User* user, Channel* chan, const std::string& topic) CXX11_OVERRIDE;
        void OnPostTopicChange(User* user, Channel* chan, const std::string &topic) CXX11_OVERRIDE;
-       void OnUserMessage(User* user, void* dest, int target_type, const std::string& text, char status, const CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE;
+       void OnUserPostMessage(User* user, const MessageTarget& target, const MessageDetails& details) CXX11_OVERRIDE;
+       void OnUserPostTagMessage(User* user, const MessageTarget& target, const CTCTags::TagMessageDetails& details) CXX11_OVERRIDE;
        void OnBackgroundTimer(time_t curtime) CXX11_OVERRIDE;
        void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts) CXX11_OVERRIDE;
        void OnChangeHost(User* user, const std::string &newhost) CXX11_OVERRIDE;
-       void OnChangeName(User* user, const std::string &gecos) CXX11_OVERRIDE;
+       void OnChangeRealName(User* user, const std::string& real) CXX11_OVERRIDE;
        void OnChangeIdent(User* user, const std::string &ident) CXX11_OVERRIDE;
        void OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts) CXX11_OVERRIDE;
        void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message) CXX11_OVERRIDE;
@@ -166,13 +215,15 @@ class ModuleSpanningTree : public Module
        void OnAddLine(User *u, XLine *x) CXX11_OVERRIDE;
        void OnDelLine(User *u, XLine *x) CXX11_OVERRIDE;
        ModResult OnStats(Stats::Context& stats) CXX11_OVERRIDE;
-       ModResult OnSetAway(User* user, const std::string &awaymsg) CXX11_OVERRIDE;
+       void OnUserAway(User* user) CXX11_OVERRIDE;
+       void OnUserBack(User* user) CXX11_OVERRIDE;
        void OnLoadModule(Module* mod) CXX11_OVERRIDE;
        void OnUnloadModule(Module* mod) CXX11_OVERRIDE;
        ModResult OnAcceptConnection(int newsock, ListenSocket* from, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server) CXX11_OVERRIDE;
-       void OnMode(User* source, User* u, Channel* c, const Modes::ChangeList& modes, ModeParser::ModeProcessFlag processflags, const std::string& output_mode) CXX11_OVERRIDE;
-       CullResult cull();
+       void OnMode(User* source, User* u, Channel* c, const Modes::ChangeList& modes, ModeParser::ModeProcessFlag processflags) CXX11_OVERRIDE;
+       void OnShutdown(const std::string& reason) CXX11_OVERRIDE;
+       CullResult cull() CXX11_OVERRIDE;
        ~ModuleSpanningTree();
        Version GetVersion() CXX11_OVERRIDE;
-       void Prioritize();
+       void Prioritize() CXX11_OVERRIDE;
 };