generated from ReVanced/revanced-patches-template
-
-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Strava): Add
Disable subscription suggestions
patch (#2997)
Co-authored-by: oSumAtrIX <[email protected]>
- Loading branch information
Showing
4 changed files
with
86 additions
and
3 deletions.
There are no files selected for viewing
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
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
72 changes: 72 additions & 0 deletions
72
src/main/kotlin/app/revanced/patches/strava/upselling/DisableSubscriptionSuggestionsPatch.kt
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,72 @@ | ||
package app.revanced.patches.strava.upselling | ||
|
||
import app.revanced.extensions.exception | ||
import app.revanced.patcher.data.BytecodeContext | ||
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions | ||
import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction | ||
import app.revanced.patcher.patch.BytecodePatch | ||
import app.revanced.patcher.patch.annotation.CompatiblePackage | ||
import app.revanced.patcher.patch.annotation.Patch | ||
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod.Companion.toMutable | ||
import app.revanced.patches.strava.upselling.fingerprints.GetModulesFingerprint | ||
import com.android.tools.smali.dexlib2.AccessFlags | ||
import com.android.tools.smali.dexlib2.builder.MutableMethodImplementation | ||
import com.android.tools.smali.dexlib2.immutable.ImmutableMethod | ||
|
||
@Patch( | ||
name = "Disable subscription suggestions", | ||
compatiblePackages = [CompatiblePackage("com.strava", ["320.12"])] | ||
) | ||
@Suppress("unused") | ||
object DisableSubscriptionSuggestionsPatch : BytecodePatch( | ||
setOf(GetModulesFingerprint) | ||
) { | ||
private const val HELPER_METHOD_NAME = "getModulesIfNotUpselling" | ||
private const val PAGE_SUFFIX = "_upsell" | ||
private const val LABEL = "original" | ||
|
||
override fun execute(context: BytecodeContext) = GetModulesFingerprint.result?.let { result -> | ||
val className = result.classDef.type | ||
val originalMethod = result.mutableMethod | ||
val returnType = originalMethod.returnType | ||
|
||
result.mutableClass.methods.add(ImmutableMethod( | ||
className, | ||
HELPER_METHOD_NAME, | ||
emptyList(), | ||
returnType, | ||
AccessFlags.PRIVATE.value, | ||
null, | ||
null, | ||
MutableMethodImplementation(3) | ||
).toMutable().apply { | ||
addInstructions( | ||
""" | ||
iget-object v0, p0, $className->page:Ljava/lang/String; | ||
const-string v1, "$PAGE_SUFFIX" | ||
invoke-virtual {v0, v1}, Ljava/lang/String;->endsWith(Ljava/lang/String;)Z | ||
move-result v0 | ||
if-eqz v0, :$LABEL | ||
invoke-static {}, Ljava/util/Collections;->emptyList()Ljava/util/List; | ||
move-result-object v0 | ||
return-object v0 | ||
:$LABEL | ||
iget-object v0, p0, $className->modules:Ljava/util/List; | ||
return-object v0 | ||
""" | ||
) | ||
}) | ||
|
||
val getModulesIndex = result.scanResult.patternScanResult!!.startIndex | ||
with(originalMethod) { | ||
removeInstruction(getModulesIndex) | ||
addInstructions( | ||
getModulesIndex, | ||
""" | ||
invoke-direct {p0}, $className->$HELPER_METHOD_NAME()$returnType | ||
move-result-object v0 | ||
""" | ||
) | ||
} | ||
} ?: throw GetModulesFingerprint.exception | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/kotlin/app/revanced/patches/strava/upselling/fingerprints/GetModulesFingerprint.kt
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,11 @@ | ||
package app.revanced.patches.strava.upselling.fingerprints | ||
|
||
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint | ||
import com.android.tools.smali.dexlib2.Opcode | ||
|
||
object GetModulesFingerprint : MethodFingerprint( | ||
opcodes = listOf(Opcode.IGET_OBJECT), | ||
customFingerprint = { methodDef, classDef -> | ||
classDef.type.endsWith("/GenericLayoutEntry;") && methodDef.name == "getModules" | ||
} | ||
) |