2023-10-29 17:02:58 +01:00
|
|
|
From 0b970cb79fd1c2ecf5eee883f54b691554543a48 Mon Sep 17 00:00:00 2001
|
2019-03-16 08:08:11 +01:00
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Thu, 14 Mar 2019 07:44:06 +0000
|
|
|
|
Subject: [PATCH] Add ProxyDefineCommandsEvent
|
|
|
|
|
|
|
|
provides an event to allow plugins to intercept tab completions
|
|
|
|
sent to the client
|
|
|
|
|
|
|
|
diff --git a/api/src/main/java/io/github/waterfallmc/waterfall/event/ProxyDefineCommandsEvent.java b/api/src/main/java/io/github/waterfallmc/waterfall/event/ProxyDefineCommandsEvent.java
|
|
|
|
new file mode 100644
|
|
|
|
index 00000000..1fd4fc90
|
|
|
|
--- /dev/null
|
|
|
|
+++ b/api/src/main/java/io/github/waterfallmc/waterfall/event/ProxyDefineCommandsEvent.java
|
|
|
|
@@ -0,0 +1,41 @@
|
|
|
|
+package io.github.waterfallmc.waterfall.event;
|
|
|
|
+
|
|
|
|
+import net.md_5.bungee.api.CommandSender;
|
|
|
|
+import net.md_5.bungee.api.connection.Connection;
|
|
|
|
+import net.md_5.bungee.api.connection.ProxiedPlayer;
|
|
|
|
+import net.md_5.bungee.api.event.TargetedEvent;
|
|
|
|
+import net.md_5.bungee.api.plugin.Command;
|
|
|
|
+import net.md_5.bungee.api.plugin.Event;
|
|
|
|
+
|
|
|
|
+import java.util.Map;
|
|
|
|
+
|
|
|
|
+import lombok.Data;
|
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
+import lombok.ToString;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Called when the proxy intercepts the command packet
|
|
|
|
+ * allowing for plugins to prevent commands being added
|
|
|
|
+ * to the clients which might not be wanted.
|
|
|
|
+ *
|
|
|
|
+ *
|
|
|
|
+ * <i>Plugin developers, please implement {@link Command#hasPermission(CommandSender)}
|
|
|
|
+ * properly in favor of this event.</i>
|
|
|
|
+ */
|
|
|
|
+@Data
|
|
|
|
+@ToString(callSuper = true)
|
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
|
+public class ProxyDefineCommandsEvent extends TargetedEvent {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * The map of commands to be sent to the player
|
|
|
|
+ */
|
|
|
|
+ private final Map<String, Command> commands;
|
|
|
|
+
|
|
|
|
+ public ProxyDefineCommandsEvent(Connection sender, Connection receiver, Map<String, Command> commands) {
|
|
|
|
+ super(sender, receiver);
|
|
|
|
+ this.commands = commands;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
|
2023-10-29 17:02:58 +01:00
|
|
|
index bc808b2c..2e427335 100644
|
2019-03-16 08:08:11 +01:00
|
|
|
--- a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
|
|
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
|
2023-10-29 17:02:58 +01:00
|
|
|
@@ -779,9 +779,25 @@ public class DownstreamBridge extends PacketHandler
|
2019-03-16 08:08:11 +01:00
|
|
|
{
|
|
|
|
boolean modified = false;
|
|
|
|
|
|
|
|
- for ( Map.Entry<String, Command> command : bungee.getPluginManager().getCommands() )
|
|
|
|
+ // Waterfall start
|
2023-09-21 12:33:23 +02:00
|
|
|
+ Map<String, Command> commandMap = new java.util.HashMap<>();
|
2019-03-16 08:08:11 +01:00
|
|
|
+ for ( Map.Entry<String, Command> commandEntry : bungee.getPluginManager().getCommands() ) {
|
|
|
|
+ if ( !bungee.getDisabledCommands().contains( commandEntry.getKey() )
|
|
|
|
+ && commands.getRoot().getChild( commandEntry.getKey() ) == null
|
|
|
|
+ && commandEntry.getValue().hasPermission( this.con ) ) {
|
|
|
|
+
|
|
|
|
+ commandMap.put( commandEntry.getKey(), commandEntry.getValue() );
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
2022-02-06 06:54:54 +01:00
|
|
|
+ io.github.waterfallmc.waterfall.event.ProxyDefineCommandsEvent event = new io.github.waterfallmc.waterfall.event.ProxyDefineCommandsEvent( this.server, this.con, commandMap );
|
2019-03-16 08:08:11 +01:00
|
|
|
+ bungee.getPluginManager().callEvent( event );
|
|
|
|
+
|
|
|
|
+ for ( Map.Entry<String, Command> command : event.getCommands().entrySet() )
|
|
|
|
{
|
|
|
|
- if ( !bungee.getDisabledCommands().contains( command.getKey() ) && commands.getRoot().getChild( command.getKey() ) == null && command.getValue().hasPermission( con ) )
|
|
|
|
+ //noinspection ConstantConditions
|
|
|
|
+ if ( true ) // Moved up
|
|
|
|
+ // Waterfall end
|
|
|
|
{
|
2022-02-06 06:54:54 +01:00
|
|
|
CommandNode dummy = LiteralArgumentBuilder.literal( command.getKey() ).executes( DUMMY_COMMAND )
|
2019-03-16 08:08:11 +01:00
|
|
|
.then( RequiredArgumentBuilder.argument( "args", StringArgumentType.greedyString() )
|
|
|
|
--
|
2023-09-21 12:33:23 +02:00
|
|
|
2.42.0
|
2019-03-16 08:08:11 +01:00
|
|
|
|