mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-11 03:54:36 +02:00
refactor: enable-open-links-directly
patch now applies to all URLs, not just video descriptions
This commit is contained in:
parent
b9931deca4
commit
03f2ee8e11
@ -8,13 +8,13 @@ import org.jf.dexlib2.Opcode
|
|||||||
object OpenLinksDirectlyFingerprintPrimary : MethodFingerprint(
|
object OpenLinksDirectlyFingerprintPrimary : MethodFingerprint(
|
||||||
returnType = "Ljava/lang/Object",
|
returnType = "Ljava/lang/Object",
|
||||||
access = AccessFlags.PUBLIC or AccessFlags.FINAL,
|
access = AccessFlags.PUBLIC or AccessFlags.FINAL,
|
||||||
parameters = listOf("L"),
|
parameters = listOf("Ljava/lang/Object"),
|
||||||
opcodes = listOf(
|
opcodes = listOf(
|
||||||
Opcode.CHECK_CAST,
|
|
||||||
Opcode.INVOKE_STATIC,
|
Opcode.INVOKE_STATIC,
|
||||||
Opcode.MOVE_RESULT_OBJECT,
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
Opcode.RETURN_OBJECT,
|
Opcode.RETURN_OBJECT,
|
||||||
Opcode.CHECK_CAST,
|
Opcode.CHECK_CAST,
|
||||||
Opcode.SGET
|
Opcode.SGET,
|
||||||
|
Opcode.SGET_OBJECT
|
||||||
)
|
)
|
||||||
)
|
)
|
@ -6,20 +6,12 @@ import org.jf.dexlib2.AccessFlags
|
|||||||
import org.jf.dexlib2.Opcode
|
import org.jf.dexlib2.Opcode
|
||||||
|
|
||||||
object OpenLinksDirectlyFingerprintSecondary : MethodFingerprint(
|
object OpenLinksDirectlyFingerprintSecondary : MethodFingerprint(
|
||||||
returnType = "L",
|
returnType = "Landroid/net/Uri",
|
||||||
access = AccessFlags.PUBLIC or AccessFlags.STATIC,
|
access = AccessFlags.PUBLIC or AccessFlags.STATIC,
|
||||||
parameters = listOf("L"),
|
parameters = listOf("Ljava/lang/String"),
|
||||||
opcodes = listOf(
|
opcodes = listOf(
|
||||||
Opcode.INVOKE_STATIC,
|
Opcode.INVOKE_STATIC,
|
||||||
Opcode.MOVE_RESULT_OBJECT,
|
Opcode.MOVE_RESULT_OBJECT
|
||||||
Opcode.INVOKE_STATIC,
|
|
||||||
Opcode.MOVE_RESULT_OBJECT,
|
|
||||||
Opcode.INVOKE_VIRTUAL,
|
|
||||||
Opcode.MOVE_RESULT,
|
|
||||||
Opcode.IF_EQZ,
|
|
||||||
Opcode.RETURN_OBJECT,
|
|
||||||
Opcode.NEW_INSTANCE,
|
|
||||||
Opcode.CONST_STRING
|
|
||||||
),
|
),
|
||||||
strings = listOf("Uri must have an absolute scheme")
|
strings = listOf("://")
|
||||||
)
|
)
|
@ -5,19 +5,17 @@ import app.revanced.patcher.annotation.Description
|
|||||||
import app.revanced.patcher.annotation.Name
|
import app.revanced.patcher.annotation.Name
|
||||||
import app.revanced.patcher.annotation.Version
|
import app.revanced.patcher.annotation.Version
|
||||||
import app.revanced.patcher.data.BytecodeContext
|
import app.revanced.patcher.data.BytecodeContext
|
||||||
import app.revanced.patcher.extensions.addInstructions
|
import app.revanced.patcher.extensions.replaceInstruction
|
||||||
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprintResult
|
|
||||||
import app.revanced.patcher.patch.BytecodePatch
|
import app.revanced.patcher.patch.BytecodePatch
|
||||||
import app.revanced.patcher.patch.PatchResult
|
import app.revanced.patcher.patch.PatchResult
|
||||||
import app.revanced.patcher.patch.PatchResultSuccess
|
import app.revanced.patcher.patch.PatchResultSuccess
|
||||||
import app.revanced.patcher.patch.annotations.DependsOn
|
import app.revanced.patcher.patch.annotations.DependsOn
|
||||||
import app.revanced.patcher.patch.annotations.Patch
|
import app.revanced.patcher.patch.annotations.Patch
|
||||||
import app.revanced.patches.shared.annotation.YouTubeCompatibility
|
import app.revanced.patches.shared.annotation.YouTubeCompatibility
|
||||||
import app.revanced.patches.youtube.misc.openlinksdirectly.fingerprints.*
|
import app.revanced.patches.youtube.misc.openlinksdirectly.fingerprints.OpenLinksDirectlyFingerprintPrimary
|
||||||
|
import app.revanced.patches.youtube.misc.openlinksdirectly.fingerprints.OpenLinksDirectlyFingerprintSecondary
|
||||||
import app.revanced.patches.youtube.misc.settings.resource.patch.SettingsPatch
|
import app.revanced.patches.youtube.misc.settings.resource.patch.SettingsPatch
|
||||||
import app.revanced.util.integrations.Constants.MISC_PATH
|
import app.revanced.util.integrations.Constants.MISC_PATH
|
||||||
import org.jf.dexlib2.iface.instruction.Instruction
|
|
||||||
import org.jf.dexlib2.iface.instruction.formats.Instruction11x
|
|
||||||
import org.jf.dexlib2.iface.instruction.formats.Instruction35c
|
import org.jf.dexlib2.iface.instruction.formats.Instruction35c
|
||||||
|
|
||||||
@Patch
|
@Patch
|
||||||
@ -35,10 +33,18 @@ class OpenLinksDirectlyPatch : BytecodePatch(
|
|||||||
override fun execute(context: BytecodeContext): PatchResult {
|
override fun execute(context: BytecodeContext): PatchResult {
|
||||||
|
|
||||||
arrayOf(
|
arrayOf(
|
||||||
OpenLinksDirectlyFingerprintPrimary to true,
|
OpenLinksDirectlyFingerprintPrimary,
|
||||||
OpenLinksDirectlyFingerprintSecondary to false
|
OpenLinksDirectlyFingerprintSecondary
|
||||||
).map { (fingerprint, boolean) ->
|
).forEach {
|
||||||
fingerprint.result?.hookUriParser(boolean) ?: return fingerprint.toErrorResult()
|
val result = it.result?: return it.toErrorResult()
|
||||||
|
val insertIndex = result.scanResult.patternScanResult!!.startIndex
|
||||||
|
with (result.mutableMethod) {
|
||||||
|
val register = (implementation!!.instructions[insertIndex] as Instruction35c).registerC
|
||||||
|
replaceInstruction(
|
||||||
|
insertIndex,
|
||||||
|
"invoke-static {v$register}, $MISC_PATH/OpenLinksDirectlyPatch;->enableBypassRedirect(Ljava/lang/String;)Landroid/net/Uri;"
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -55,21 +61,3 @@ class OpenLinksDirectlyPatch : BytecodePatch(
|
|||||||
return PatchResultSuccess()
|
return PatchResultSuccess()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun MethodFingerprintResult.hookUriParser(isPrimaryFingerprint: Boolean) {
|
|
||||||
fun getTargetRegister(instruction: Instruction): Int {
|
|
||||||
if (isPrimaryFingerprint) return (instruction as Instruction35c).registerC
|
|
||||||
return (instruction as Instruction11x).registerA
|
|
||||||
}
|
|
||||||
val startIndex = scanResult.patternScanResult!!.startIndex
|
|
||||||
val instruction = method.implementation!!.instructions.elementAt(startIndex + 1)
|
|
||||||
val insertIndex = if (isPrimaryFingerprint) 1 else 2
|
|
||||||
val targetRegister = getTargetRegister(instruction)
|
|
||||||
|
|
||||||
mutableMethod.addInstructions(
|
|
||||||
startIndex + insertIndex, """
|
|
||||||
invoke-static {v$targetRegister}, $MISC_PATH/OpenLinksDirectlyPatch;->enableBypassRedirect(Ljava/lang/String;)Ljava/lang/String;
|
|
||||||
move-result-object v$targetRegister
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user