summaryrefslogtreecommitdiffhomepage
path: root/patches/unapplied/server/0151-ProfileWhitelistVerifyEvent.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/unapplied/server/0151-ProfileWhitelistVerifyEvent.patch')
-rw-r--r--patches/unapplied/server/0151-ProfileWhitelistVerifyEvent.patch48
1 files changed, 48 insertions, 0 deletions
diff --git a/patches/unapplied/server/0151-ProfileWhitelistVerifyEvent.patch b/patches/unapplied/server/0151-ProfileWhitelistVerifyEvent.patch
new file mode 100644
index 0000000000..bdffadff3e
--- /dev/null
+++ b/patches/unapplied/server/0151-ProfileWhitelistVerifyEvent.patch
@@ -0,0 +1,48 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Aikar <[email protected]>
+Date: Mon, 3 Jul 2017 18:11:10 -0500
+Subject: [PATCH] ProfileWhitelistVerifyEvent
+
+
+diff --git a/src/main/java/net/minecraft/server/players/PlayerList.java b/src/main/java/net/minecraft/server/players/PlayerList.java
+index ce2291fb34df531b783d34f8453128a7a01049e5..39cfbc7e109943878df038b7c3e26c64188104a3 100644
+--- a/src/main/java/net/minecraft/server/players/PlayerList.java
++++ b/src/main/java/net/minecraft/server/players/PlayerList.java
+@@ -639,9 +639,9 @@ public abstract class PlayerList {
+
+ // return chatmessage;
+ event.disallow(PlayerLoginEvent.Result.KICK_BANNED, PaperAdventure.asAdventure(ichatmutablecomponent)); // Paper - Adventure
+- } else if (!this.isWhiteListed(gameprofile)) {
+- ichatmutablecomponent = Component.translatable("multiplayer.disconnect.not_whitelisted");
+- event.disallow(PlayerLoginEvent.Result.KICK_WHITELIST, net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer.legacySection().deserialize(org.spigotmc.SpigotConfig.whitelistMessage)); // Spigot // Paper - Adventure
++ } else if (!this.isWhiteListed(gameprofile, event)) { // Paper
++ //ichatmutablecomponent = Component.translatable("multiplayer.disconnect.not_whitelisted"); // Paper
++ //event.disallow(PlayerLoginEvent.Result.KICK_WHITELIST, net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer.legacySection().deserialize(org.spigotmc.SpigotConfig.whitelistMessage)); // Spigot // Paper - Adventure - moved to isWhitelisted
+ } else if (this.getIpBans().isBanned(socketaddress) && !this.getIpBans().get(socketaddress).hasExpired()) {
+ IpBanListEntry ipbanentry = this.ipBans.get(socketaddress);
+
+@@ -1025,7 +1025,23 @@ public abstract class PlayerList {
+ }
+
+ public boolean isWhiteListed(GameProfile profile) {
+- return !this.doWhiteList || this.ops.contains(profile) || this.whitelist.contains(profile);
++ // Paper start
++ return isWhiteListed(profile, null);
++ }
++ public boolean isWhiteListed(GameProfile gameprofile, org.bukkit.event.player.PlayerLoginEvent loginEvent) {
++ boolean isOp = this.ops.contains(gameprofile);
++ boolean isWhitelisted = !this.doWhiteList || isOp || this.whitelist.contains(gameprofile);
++ final com.destroystokyo.paper.event.profile.ProfileWhitelistVerifyEvent event;
++ event = new com.destroystokyo.paper.event.profile.ProfileWhitelistVerifyEvent(io.papermc.paper.util.MCUtil.toBukkit(gameprofile), this.doWhiteList, isWhitelisted, isOp, org.spigotmc.SpigotConfig.whitelistMessage);
++ event.callEvent();
++ if (!event.isWhitelisted()) {
++ if (loginEvent != null) {
++ loginEvent.disallow(PlayerLoginEvent.Result.KICK_WHITELIST, net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer.legacySection().deserialize(event.getKickMessage() == null ? org.spigotmc.SpigotConfig.whitelistMessage : event.getKickMessage()));
++ }
++ return false;
++ }
++ return true;
++ // Paper end
+ }
+
+ public boolean isOp(GameProfile profile) {