]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/commands.h
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / commands.h
index d0465a447edf5242794ee0506c66cf14af8739df..3047e7e60960ca99089af45a2d6949af416c5e63 100644 (file)
@@ -19,7 +19,8 @@
 
 #pragma once
 
-#include "main.h"
+#include "servercommand.h"
+#include "commandbuilder.h"
 
 /** Handle /RCONNECT
  */
@@ -41,14 +42,6 @@ class CommandRSQuit : public Command
 
 class CommandMap : public Command
 {
-       /** Show MAP output to a user (recursive)
-        */
-       void ShowMap(TreeServer* Current, User* user, int depth, int &line, char* names, int &maxnamew, char* stats);
-
-       /** Returns oper-specific MAP information
-        */
-       std::string MapOperInfo(TreeServer* Current);
-
  public:
        CommandMap(Module* Creator);
        CmdResult Handle(const std::vector<std::string>& parameters, User* user);
@@ -84,6 +77,14 @@ class CommandMetadata : public ServerCommand
  public:
        CommandMetadata(Module* Creator) : ServerCommand(Creator, "METADATA", 2) { }
        CmdResult Handle(User* user, std::vector<std::string>& params);
+
+       class Builder : public CmdBuilder
+       {
+        public:
+               Builder(User* user, const std::string& key, const std::string& val);
+               Builder(Channel* chan, const std::string& key, const std::string& val);
+               Builder(const std::string& key, const std::string& val);
+       };
 };
 
 class CommandUID : public ServerOnlyServerCommand<CommandUID>
@@ -91,6 +92,12 @@ class CommandUID : public ServerOnlyServerCommand<CommandUID>
  public:
        CommandUID(Module* Creator) : ServerOnlyServerCommand<CommandUID>(Creator, "UID", 10) { }
        CmdResult HandleServer(TreeServer* server, std::vector<std::string>& params);
+
+       class Builder : public CmdBuilder
+       {
+        public:
+               Builder(User* user);
+       };
 };
 
 class CommandOpertype : public UserOnlyServerCommand<CommandOpertype>
@@ -98,6 +105,12 @@ class CommandOpertype : public UserOnlyServerCommand<CommandOpertype>
  public:
        CommandOpertype(Module* Creator) : UserOnlyServerCommand<CommandOpertype>(Creator, "OPERTYPE", 1) { }
        CmdResult HandleRemote(RemoteUser* user, std::vector<std::string>& params);
+
+       class Builder : public CmdBuilder
+       {
+        public:
+               Builder(User* user);
+       };
 };
 
 class TreeSocket;
@@ -108,10 +121,36 @@ class CommandFJoin : public ServerCommand
         */
        static void RemoveStatus(Channel* c);
        static void ApplyModeStack(User* srcuser, Channel* c, irc::modestacker& stack);
-       bool ProcessModeUUIDPair(const std::string& item, TreeSocket* src_socket, Channel* chan, irc::modestacker* modestack);
+
+       /**
+        * Lowers the TS on the given channel: removes all modes, unsets all extensions,
+        * clears the topic and removes all pending invites.
+        * @param chan The target channel whose TS to lower
+        * @param TS The new TS to set
+        * @param newname The new name of the channel; must be the same or a case change of the current name
+        */
+       static void LowerTS(Channel* chan, time_t TS, const std::string& newname);
+       void ProcessModeUUIDPair(const std::string& item, TreeServer* sourceserver, Channel* chan, irc::modestacker* modestack);
  public:
        CommandFJoin(Module* Creator) : ServerCommand(Creator, "FJOIN", 3) { }
        CmdResult Handle(User* user, std::vector<std::string>& params);
+
+       class Builder : public CmdBuilder
+       {
+               /** Maximum possible Membership::Id length in decimal digits, used for determining whether a user will fit into
+                * a message or not
+                */
+               static const size_t membid_max_digits = 20;
+               static const size_t maxline = 480;
+               std::string::size_type pos;
+
+        public:
+               Builder(Channel* chan);
+               void add(Membership* memb);
+               bool has_room(Membership* memb) const;
+               void clear();
+               const std::string& finalize();
+       };
 };
 
 class CommandFMode : public ServerCommand
@@ -124,8 +163,15 @@ class CommandFMode : public ServerCommand
 class CommandFTopic : public ServerCommand
 {
  public:
-       CommandFTopic(Module* Creator) : ServerCommand(Creator, "FTOPIC", 5) { }
+       CommandFTopic(Module* Creator) : ServerCommand(Creator, "FTOPIC", 4, 5) { }
        CmdResult Handle(User* user, std::vector<std::string>& params);
+
+       class Builder : public CmdBuilder
+       {
+        public:
+               Builder(Channel* chan);
+               Builder(User* user, Channel* chan);
+       };
 };
 
 class CommandFHost : public UserOnlyServerCommand<CommandFHost>
@@ -152,7 +198,7 @@ class CommandFName : public UserOnlyServerCommand<CommandFName>
 class CommandIJoin : public UserOnlyServerCommand<CommandIJoin>
 {
  public:
-       CommandIJoin(Module* Creator) : UserOnlyServerCommand<CommandIJoin>(Creator, "IJOIN", 1) { }
+       CommandIJoin(Module* Creator) : UserOnlyServerCommand<CommandIJoin>(Creator, "IJOIN", 2) { }
        CmdResult HandleRemote(RemoteUser* user, std::vector<std::string>& params);
 };
 
@@ -161,6 +207,7 @@ class CommandResync : public ServerOnlyServerCommand<CommandResync>
  public:
        CommandResync(Module* Creator) : ServerOnlyServerCommand<CommandResync>(Creator, "RESYNC", 1) { }
        CmdResult HandleServer(TreeServer* server, std::vector<std::string>& parameters);
+       RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters) { return ROUTE_LOCALONLY; }
 };
 
 class CommandAway : public UserOnlyServerCommand<CommandAway>
@@ -168,13 +215,27 @@ class CommandAway : public UserOnlyServerCommand<CommandAway>
  public:
        CommandAway(Module* Creator) : UserOnlyServerCommand<CommandAway>(Creator, "AWAY", 0, 2) { }
        CmdResult HandleRemote(RemoteUser* user, std::vector<std::string>& parameters);
+
+       class Builder : public CmdBuilder
+       {
+        public:
+               Builder(User* user);
+               Builder(User* user, const std::string& msg);
+       };
 };
 
+class XLine;
 class CommandAddLine : public ServerCommand
 {
  public:
        CommandAddLine(Module* Creator) : ServerCommand(Creator, "ADDLINE", 6, 6) { }
        CmdResult Handle(User* user, std::vector<std::string>& parameters);
+
+       class Builder : public CmdBuilder
+       {
+        public:
+               Builder(XLine* xline, User* user = ServerInstance->FakeClient);
+       };
 };
 
 class CommandDelLine : public ServerCommand
@@ -243,6 +304,12 @@ class CommandServer : public ServerOnlyServerCommand<CommandServer>
  public:
        CommandServer(Module* Creator) : ServerOnlyServerCommand<CommandServer>(Creator, "SERVER", 5) { }
        CmdResult HandleServer(TreeServer* server, std::vector<std::string>& parameters);
+
+       class Builder : public CmdBuilder
+       {
+        public:
+               Builder(TreeServer* server);
+       };
 };
 
 class CommandSQuit : public ServerOnlyServerCommand<CommandSQuit>
@@ -259,33 +326,36 @@ class CommandSNONotice : public ServerCommand
        CmdResult Handle(User* user, std::vector<std::string>& parameters);
 };
 
-class CommandVersion : public ServerOnlyServerCommand<CommandServer>
+class CommandBurst : public ServerOnlyServerCommand<CommandBurst>
 {
  public:
-       CommandVersion(Module* Creator) : ServerOnlyServerCommand<CommandServer>(Creator, "VERSION", 1) { }
+       CommandBurst(Module* Creator) : ServerOnlyServerCommand<CommandBurst>(Creator, "BURST") { }
        CmdResult HandleServer(TreeServer* server, std::vector<std::string>& parameters);
 };
 
-class CommandBurst : public ServerOnlyServerCommand<CommandBurst>
+class CommandEndBurst : public ServerOnlyServerCommand<CommandEndBurst>
 {
  public:
-       CommandBurst(Module* Creator) : ServerOnlyServerCommand<CommandBurst>(Creator, "BURST") { }
+       CommandEndBurst(Module* Creator) : ServerOnlyServerCommand<CommandEndBurst>(Creator, "ENDBURST") { }
        CmdResult HandleServer(TreeServer* server, std::vector<std::string>& parameters);
 };
 
-class CommandEndBurst : public ServerOnlyServerCommand<CommandEndBurst>
+class CommandSInfo : public ServerOnlyServerCommand<CommandSInfo>
 {
  public:
-       CommandEndBurst(Module* Creator) : ServerOnlyServerCommand<CommandEndBurst>(Creator, "ENDBURST") { }
+       CommandSInfo(Module* Creator) : ServerOnlyServerCommand<CommandSInfo>(Creator, "SINFO", 2) { }
        CmdResult HandleServer(TreeServer* server, std::vector<std::string>& parameters);
+
+       class Builder : public CmdBuilder
+       {
+        public:
+               Builder(TreeServer* server, const char* type, const std::string& value);
+       };
 };
 
 class SpanningTreeCommands
 {
  public:
-       CommandRConnect rconnect;
-       CommandRSQuit rsquit;
-       CommandMap map;
        CommandSVSJoin svsjoin;
        CommandSVSPart svspart;
        CommandSVSNick svsnick;
@@ -313,8 +383,8 @@ class SpanningTreeCommands
        CommandServer server;
        CommandSQuit squit;
        CommandSNONotice snonotice;
-       CommandVersion version;
        CommandBurst burst;
        CommandEndBurst endburst;
+       CommandSInfo sinfo;
        SpanningTreeCommands(ModuleSpanningTree* module);
 };