-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from yushijinhun/develop
Release v1.1.38
- Loading branch information
Showing
3 changed files
with
84 additions
and
15 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright (C) 2020 Haowei Wen <[email protected]> and contributors | ||
* Copyright (C) 2021 Haowei Wen <[email protected]> and contributors | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
|
@@ -54,6 +54,7 @@ | |
import moe.yushi.authlibinjector.transform.support.AuthServerNameInjector; | ||
import moe.yushi.authlibinjector.transform.support.AuthlibLogInterceptor; | ||
import moe.yushi.authlibinjector.transform.support.CitizensTransformer; | ||
import moe.yushi.authlibinjector.transform.support.ConcatenateURLTransformUnit; | ||
import moe.yushi.authlibinjector.transform.support.ConstantURLTransformUnit; | ||
import moe.yushi.authlibinjector.transform.support.MC52974Workaround; | ||
import moe.yushi.authlibinjector.transform.support.MC52974_1710Workaround; | ||
|
@@ -266,6 +267,7 @@ private static ClassTransformer createTransformer(APIMetadata config) { | |
transformer.units.add(new MainArgumentsTransformer()); | ||
transformer.units.add(new ConstantURLTransformUnit(urlProcessor)); | ||
transformer.units.add(new CitizensTransformer()); | ||
transformer.units.add(new ConcatenateURLTransformUnit()); | ||
|
||
transformer.units.add(new SkinWhitelistTransformUnit()); | ||
SkinWhitelistTransformUnit.getWhitelistedDomains().addAll(config.getSkinDomains()); | ||
|
81 changes: 81 additions & 0 deletions
81
src/main/java/moe/yushi/authlibinjector/transform/support/ConcatenateURLTransformUnit.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
* Copyright (C) 2021 Haowei Wen <[email protected]> and contributors | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
package moe.yushi.authlibinjector.transform.support; | ||
|
||
import static org.objectweb.asm.Opcodes.ALOAD; | ||
import static org.objectweb.asm.Opcodes.ARETURN; | ||
import static org.objectweb.asm.Opcodes.ASM9; | ||
import java.net.MalformedURLException; | ||
import java.net.URL; | ||
import java.util.Optional; | ||
import org.objectweb.asm.ClassVisitor; | ||
import org.objectweb.asm.MethodVisitor; | ||
import moe.yushi.authlibinjector.transform.CallbackMethod; | ||
import moe.yushi.authlibinjector.transform.CallbackSupport; | ||
import moe.yushi.authlibinjector.transform.TransformContext; | ||
import moe.yushi.authlibinjector.transform.TransformUnit; | ||
|
||
/** | ||
* See <https://github.com/yushijinhun/authlib-injector/issues/126> | ||
*/ | ||
public class ConcatenateURLTransformUnit implements TransformUnit { | ||
|
||
@CallbackMethod | ||
public static URL concatenateURL(URL url, String query) { | ||
try { | ||
if (url.getQuery() != null && url.getQuery().length() > 0) { | ||
return new URL(url.getProtocol(), url.getHost(), url.getPort(), url.getFile() + "&" + query); | ||
} else { | ||
return new URL(url.getProtocol(), url.getHost(), url.getPort(), url.getFile() + "?" + query); | ||
} | ||
} catch (MalformedURLException ex) { | ||
throw new IllegalArgumentException("Could not concatenate given URL with GET arguments!", ex); | ||
} | ||
} | ||
|
||
@Override | ||
public Optional<ClassVisitor> transform(ClassLoader classLoader, String className, ClassVisitor writer, TransformContext ctx) { | ||
if ("com.mojang.authlib.HttpAuthenticationService".equals(className)) { | ||
return Optional.of(new ClassVisitor(ASM9, writer) { | ||
@Override | ||
public MethodVisitor visitMethod(int access, String name, String descriptor, String signature, String[] exceptions) { | ||
if ("concatenateURL".equals(name) && "(Ljava/net/URL;Ljava/lang/String;)Ljava/net/URL;".equals(descriptor)) { | ||
ctx.markModified(); | ||
MethodVisitor mv = super.visitMethod(access, name, descriptor, signature, exceptions); | ||
mv.visitCode(); | ||
mv.visitVarInsn(ALOAD, 0); | ||
mv.visitVarInsn(ALOAD, 1); | ||
CallbackSupport.invoke(ctx, mv, ConcatenateURLTransformUnit.class, "concatenateURL"); | ||
mv.visitInsn(ARETURN); | ||
mv.visitMaxs(-1, -1); | ||
mv.visitEnd(); | ||
return null; | ||
} else { | ||
return super.visitMethod(access, name, descriptor, signature, exceptions); | ||
} | ||
} | ||
}); | ||
} else { | ||
return Optional.empty(); | ||
} | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "ConcatenateURL Workaround"; | ||
} | ||
} |