2021-09-29 04:37:21 +02:00
|
|
|
From a36b335d307fd14a3694937fd0bc1c4b53ec0d1d Mon Sep 17 00:00:00 2001
|
2020-08-13 21:59:22 +02:00
|
|
|
From: theminecoder <theminecoder.dev@gmail.com>
|
|
|
|
Date: Sun, 19 Jul 2020 10:18:23 +1000
|
|
|
|
Subject: [PATCH] Add auth url option
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java b/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
|
2021-09-29 04:37:21 +02:00
|
|
|
index d07f60c9..0fd58e83 100644
|
2020-08-13 21:59:22 +02:00
|
|
|
--- a/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
|
|
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/connection/InitialHandler.java
|
2021-09-29 04:37:21 +02:00
|
|
|
@@ -73,6 +73,8 @@ import net.md_5.bungee.util.QuietException;
|
2020-08-13 21:59:22 +02:00
|
|
|
public class InitialHandler extends PacketHandler implements PendingConnection
|
|
|
|
{
|
|
|
|
|
|
|
|
+ private static final String MOJANG_AUTH_URL = System.getProperty("waterfall.auth.url", "https://sessionserver.mojang.com/session/minecraft/hasJoined?username=%s&serverId=%s%s");
|
|
|
|
+
|
|
|
|
private final BungeeCord bungee;
|
|
|
|
private ChannelWrapper ch;
|
|
|
|
@Getter
|
2021-09-29 04:37:21 +02:00
|
|
|
@@ -448,7 +450,7 @@ public class InitialHandler extends PacketHandler implements PendingConnection
|
2020-08-13 21:59:22 +02:00
|
|
|
String encodedHash = URLEncoder.encode( new BigInteger( sha.digest() ).toString( 16 ), "UTF-8" );
|
|
|
|
|
|
|
|
String preventProxy = ( BungeeCord.getInstance().config.isPreventProxyConnections() && getSocketAddress() instanceof InetSocketAddress ) ? "&ip=" + URLEncoder.encode( getAddress().getAddress().getHostAddress(), "UTF-8" ) : "";
|
|
|
|
- String authURL = "https://sessionserver.mojang.com/session/minecraft/hasJoined?username=" + encName + "&serverId=" + encodedHash + preventProxy;
|
|
|
|
+ String authURL = String.format( MOJANG_AUTH_URL, encName, encodedHash, preventProxy );
|
|
|
|
|
|
|
|
Callback<String> handler = new Callback<String>()
|
|
|
|
{
|
|
|
|
--
|
2021-09-29 04:37:21 +02:00
|
|
|
2.30.0
|
2020-08-13 21:59:22 +02:00
|
|
|
|