mirror of
https://github.com/ReVanced/revanced-cli.git
synced 2026-01-17 16:33:58 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d954424b30 | ||
|
|
168c003a31 | ||
|
|
96ec6a0384 | ||
|
|
1cd0976415 | ||
|
|
d8dbffd7a7 | ||
|
|
5f2bccc4e5 |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -1,3 +1,17 @@
|
|||||||
|
## [2.7.1](https://github.com/revanced/revanced-cli/compare/v2.7.0...v2.7.1) (2022-07-21)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* align every file ([96ec6a0](https://github.com/revanced/revanced-cli/commit/96ec6a0384e4c710c36b99ccf88bb14c5addc7af))
|
||||||
|
|
||||||
|
# [2.7.0](https://github.com/revanced/revanced-cli/compare/v2.6.0...v2.7.0) (2022-07-21)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* `--custom-aapt2-binary` option ([#104](https://github.com/revanced/revanced-cli/issues/104)) ([d8dbffd](https://github.com/revanced/revanced-cli/commit/d8dbffd7a7ebc583476d368d2ae78853cbb40382))
|
||||||
|
|
||||||
# [2.6.0](https://github.com/revanced/revanced-cli/compare/v2.5.3...v2.6.0) (2022-07-18)
|
# [2.6.0](https://github.com/revanced/revanced-cli/compare/v2.5.3...v2.6.0) (2022-07-18)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
kotlin.code.style = official
|
kotlin.code.style = official
|
||||||
version = 2.6.0
|
version = 2.7.1
|
||||||
|
|||||||
12
src/main/kotlin/app/revanced/cli/aligning/Aligning.kt
Normal file
12
src/main/kotlin/app/revanced/cli/aligning/Aligning.kt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
package app.revanced.cli.aligning
|
||||||
|
|
||||||
|
import app.revanced.cli.command.MainCommand.logger
|
||||||
|
import app.revanced.utils.signing.align.ZipAligner
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
|
object Aligning {
|
||||||
|
fun align(inputFile: File, outputFile: File) {
|
||||||
|
logger.info("Aligning ${inputFile.name} to ${outputFile.name}")
|
||||||
|
ZipAligner.align(inputFile, outputFile)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
package app.revanced.cli.command
|
package app.revanced.cli.command
|
||||||
|
|
||||||
|
import app.revanced.cli.aligning.Aligning
|
||||||
import app.revanced.cli.logging.impl.DefaultCliLogger
|
import app.revanced.cli.logging.impl.DefaultCliLogger
|
||||||
import app.revanced.cli.patcher.Patcher
|
import app.revanced.cli.patcher.Patcher
|
||||||
import app.revanced.cli.patcher.logging.impl.PatcherLogger
|
import app.revanced.cli.patcher.logging.impl.PatcherLogger
|
||||||
@@ -43,18 +44,18 @@ internal object MainCommand : Runnable {
|
|||||||
var deploy: String? = null
|
var deploy: String? = null
|
||||||
|
|
||||||
@ArgGroup(exclusive = false)
|
@ArgGroup(exclusive = false)
|
||||||
var sArgs: StartPatcherArgs? = null
|
var patchArgs: PatchArgs? = null
|
||||||
}
|
}
|
||||||
|
|
||||||
class StartPatcherArgs {
|
class PatchArgs {
|
||||||
@Option(names = ["-b", "--bundles"], description = ["One or more bundles of patches"], required = true)
|
@Option(names = ["-b", "--bundles"], description = ["One or more bundles of patches"], required = true)
|
||||||
var patchBundles = arrayOf<String>()
|
var patchBundles = arrayOf<String>()
|
||||||
|
|
||||||
@ArgGroup(exclusive = false)
|
@ArgGroup(exclusive = false)
|
||||||
var lArgs: ListingArgs? = null
|
var listingArgs: ListingArgs? = null
|
||||||
|
|
||||||
@ArgGroup(exclusive = false)
|
@ArgGroup(exclusive = false)
|
||||||
var pArgs: PatchingArgs? = null
|
var patchingArgs: PatchingArgs? = null
|
||||||
}
|
}
|
||||||
|
|
||||||
class ListingArgs {
|
class ListingArgs {
|
||||||
@@ -78,7 +79,10 @@ internal object MainCommand : Runnable {
|
|||||||
@Option(names = ["-e", "--exclude"], description = ["Explicitly exclude patches"])
|
@Option(names = ["-e", "--exclude"], description = ["Explicitly exclude patches"])
|
||||||
var excludedPatches = arrayOf<String>()
|
var excludedPatches = arrayOf<String>()
|
||||||
|
|
||||||
@Option(names = ["--exclusive"], description = ["Only installs the patches you include, not including any patch by default"])
|
@Option(
|
||||||
|
names = ["--exclusive"],
|
||||||
|
description = ["Only installs the patches you include, not including any patch by default"]
|
||||||
|
)
|
||||||
var defaultExclude = false
|
var defaultExclude = false
|
||||||
|
|
||||||
@Option(names = ["-i", "--include"], description = ["Include patches"])
|
@Option(names = ["-i", "--include"], description = ["Include patches"])
|
||||||
@@ -113,85 +117,120 @@ internal object MainCommand : Runnable {
|
|||||||
description = ["Clean the temporal resource cache directory. This will be done anyways when running the patcher"]
|
description = ["Clean the temporal resource cache directory. This will be done anyways when running the patcher"]
|
||||||
)
|
)
|
||||||
var clean: Boolean = false
|
var clean: Boolean = false
|
||||||
|
|
||||||
|
@Option(names = ["--custom-aapt2-binary"], description = ["Path to custom aapt2 binary"])
|
||||||
|
var aaptPath: String = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun run() {
|
override fun run() {
|
||||||
if (args.sArgs?.lArgs?.listOnly == true) {
|
if (args.patchArgs?.listingArgs?.listOnly == true) {
|
||||||
printListOfPatches()
|
printListOfPatches()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.uninstall) {
|
if (args.uninstall) {
|
||||||
// temporarily get package name using Patcher method
|
uninstall()
|
||||||
// fix: abstract options in patcher
|
|
||||||
val patcher = app.revanced.patcher.Patcher(
|
|
||||||
PatcherOptions(
|
|
||||||
args.inputFile,
|
|
||||||
"uninstaller-cache",
|
|
||||||
false
|
|
||||||
)
|
|
||||||
)
|
|
||||||
File("uninstaller-cache").deleteRecursively()
|
|
||||||
|
|
||||||
val adb: Adb? = args.deploy?.let {
|
|
||||||
Adb(File("placeholder_file"), patcher.data.packageMetadata.packageName, args.deploy!!, false)
|
|
||||||
}
|
|
||||||
adb?.uninstall()
|
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
val _args = args
|
val pArgs = this.args.patchArgs?.patchingArgs ?: return
|
||||||
val args = args.sArgs?.pArgs ?: return
|
|
||||||
|
// the file to write to
|
||||||
|
val outputFile = File(pArgs.outputPath)
|
||||||
|
|
||||||
val patcher = app.revanced.patcher.Patcher(
|
val patcher = app.revanced.patcher.Patcher(
|
||||||
PatcherOptions(
|
PatcherOptions(
|
||||||
_args.inputFile,
|
args.inputFile,
|
||||||
args.cacheDirectory,
|
pArgs.cacheDirectory,
|
||||||
!args.disableResourcePatching,
|
!pArgs.disableResourcePatching,
|
||||||
|
pArgs.aaptPath,
|
||||||
logger = PatcherLogger
|
logger = PatcherLogger
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
val outputFile = File(args.outputPath)
|
// prepare adb
|
||||||
|
val adb: Adb? = args.deploy?.let {
|
||||||
val adb: Adb? = _args.deploy?.let {
|
Adb(outputFile, patcher.data.packageMetadata.packageName, args.deploy!!, !pArgs.mount)
|
||||||
Adb(outputFile, patcher.data.packageMetadata.packageName, _args.deploy!!, !args.mount)
|
|
||||||
}
|
}
|
||||||
val patchedFile = if (args.mount) outputFile
|
|
||||||
else File(args.cacheDirectory).resolve("${outputFile.nameWithoutExtension}_raw.apk")
|
|
||||||
|
|
||||||
|
val patchedFile = File(pArgs.cacheDirectory).resolve("${outputFile.nameWithoutExtension}_raw.apk")
|
||||||
|
|
||||||
|
// start the patcher
|
||||||
Patcher.start(patcher, patchedFile)
|
Patcher.start(patcher, patchedFile)
|
||||||
|
|
||||||
if (!args.mount) {
|
val cacheDirectory = File(pArgs.cacheDirectory)
|
||||||
Signing.start(
|
|
||||||
patchedFile,
|
// align the file
|
||||||
outputFile,
|
val alignedFile = cacheDirectory.resolve("${outputFile.nameWithoutExtension}_aligned.apk")
|
||||||
|
Aligning.align(patchedFile, alignedFile)
|
||||||
|
|
||||||
|
// sign the file
|
||||||
|
val finalFile = if (!pArgs.mount) {
|
||||||
|
val signedOutput = cacheDirectory.resolve("${outputFile.nameWithoutExtension}_signed.apk")
|
||||||
|
Signing.sign(
|
||||||
|
alignedFile,
|
||||||
|
signedOutput,
|
||||||
SigningOptions(
|
SigningOptions(
|
||||||
args.cn,
|
pArgs.cn,
|
||||||
args.password,
|
pArgs.password,
|
||||||
args.keystorePath ?: outputFile.absoluteFile.parentFile
|
pArgs.keystorePath ?: outputFile.absoluteFile.parentFile
|
||||||
.resolve("${outputFile.nameWithoutExtension}.keystore")
|
.resolve("${outputFile.nameWithoutExtension}.keystore")
|
||||||
.canonicalPath
|
.canonicalPath
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
|
||||||
if (args.clean) File(args.cacheDirectory).deleteRecursively()
|
signedOutput
|
||||||
|
} else
|
||||||
|
alignedFile
|
||||||
|
|
||||||
|
// finally copy to the specified output file
|
||||||
|
logger.info("Copying ${finalFile.name} to ${outputFile.name}")
|
||||||
|
finalFile.copyTo(outputFile, overwrite = true)
|
||||||
|
|
||||||
|
// clean up the cache directory if needed
|
||||||
|
if (pArgs.clean)
|
||||||
|
cleanUp(pArgs.cacheDirectory)
|
||||||
|
|
||||||
|
// deploy if specified
|
||||||
adb?.deploy()
|
adb?.deploy()
|
||||||
|
|
||||||
if (args.clean && _args.deploy != null) Files.delete(outputFile.toPath())
|
if (pArgs.clean && args.deploy != null) Files.delete(outputFile.toPath())
|
||||||
|
|
||||||
logger.info("Finished")
|
logger.info("Finished")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun cleanUp(cacheDirectory: String) {
|
||||||
|
val result = if (File(cacheDirectory).deleteRecursively())
|
||||||
|
"Cleaned up cache directory"
|
||||||
|
else
|
||||||
|
"Failed to clean up cache directory"
|
||||||
|
logger.info(result)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun uninstall() {
|
||||||
|
// temporarily get package name using Patcher method
|
||||||
|
// fix: abstract options in patcher
|
||||||
|
val patcher = app.revanced.patcher.Patcher(
|
||||||
|
PatcherOptions(
|
||||||
|
args.inputFile,
|
||||||
|
"uninstaller-cache",
|
||||||
|
false
|
||||||
|
)
|
||||||
|
)
|
||||||
|
File("uninstaller-cache").deleteRecursively()
|
||||||
|
|
||||||
|
val adb: Adb? = args.deploy?.let {
|
||||||
|
Adb(File("placeholder_file"), patcher.data.packageMetadata.packageName, args.deploy!!, false)
|
||||||
|
}
|
||||||
|
adb?.uninstall()
|
||||||
|
}
|
||||||
|
|
||||||
private fun printListOfPatches() {
|
private fun printListOfPatches() {
|
||||||
for (patchBundlePath in args.sArgs?.patchBundles!!) for (patch in JarPatchBundle(patchBundlePath).loadPatches()) {
|
for (patchBundlePath in args.patchArgs?.patchBundles!!) for (patch in JarPatchBundle(patchBundlePath).loadPatches()) {
|
||||||
for (compatiblePackage in patch.compatiblePackages!!) {
|
for (compatiblePackage in patch.compatiblePackages!!) {
|
||||||
val packageEntryStr = buildString {
|
val packageEntryStr = buildString {
|
||||||
// Add package if flag is set
|
// Add package if flag is set
|
||||||
if (args.sArgs?.lArgs?.withPackages == true) {
|
if (args.patchArgs?.listingArgs?.withPackages == true) {
|
||||||
val packageName = compatiblePackage.name.substringAfterLast(".").padStart(10)
|
val packageName = compatiblePackage.name.substringAfterLast(".").padStart(10)
|
||||||
append(packageName)
|
append(packageName)
|
||||||
append("\t")
|
append("\t")
|
||||||
@@ -200,12 +239,12 @@ internal object MainCommand : Runnable {
|
|||||||
val patchName = patch.patchName.padStart(25)
|
val patchName = patch.patchName.padStart(25)
|
||||||
append(patchName)
|
append(patchName)
|
||||||
// Add description if flag is set.
|
// Add description if flag is set.
|
||||||
if (args.sArgs?.lArgs?.withDescriptions == true) {
|
if (args.patchArgs?.listingArgs?.withDescriptions == true) {
|
||||||
append("\t")
|
append("\t")
|
||||||
append(patch.description)
|
append(patch.description)
|
||||||
}
|
}
|
||||||
// Add compatible versions, if flag is set
|
// Add compatible versions, if flag is set
|
||||||
if (args.sArgs?.lArgs?.withVersions == true) {
|
if (args.patchArgs?.listingArgs?.withVersions == true) {
|
||||||
val compatibleVersions = compatiblePackage.versions.joinToString(separator = ", ")
|
val compatibleVersions = compatiblePackage.versions.joinToString(separator = ", ")
|
||||||
append("\t")
|
append("\t")
|
||||||
append(compatibleVersions)
|
append(compatibleVersions)
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import java.nio.file.Files
|
|||||||
internal object Patcher {
|
internal object Patcher {
|
||||||
internal fun start(patcher: app.revanced.patcher.Patcher, output: File) {
|
internal fun start(patcher: app.revanced.patcher.Patcher, output: File) {
|
||||||
val inputFile = args.inputFile
|
val inputFile = args.inputFile
|
||||||
val args = args.sArgs?.pArgs!!
|
val args = args.patchArgs?.patchingArgs!!
|
||||||
|
|
||||||
// merge files like necessary integrations
|
// merge files like necessary integrations
|
||||||
patcher.mergeFiles()
|
patcher.mergeFiles()
|
||||||
|
|||||||
@@ -1,28 +1,12 @@
|
|||||||
package app.revanced.cli.signing
|
package app.revanced.cli.signing
|
||||||
|
|
||||||
import app.revanced.cli.command.MainCommand.args
|
|
||||||
import app.revanced.cli.command.MainCommand.logger
|
import app.revanced.cli.command.MainCommand.logger
|
||||||
import app.revanced.utils.signing.Signer
|
import app.revanced.utils.signing.Signer
|
||||||
import app.revanced.utils.signing.align.ZipAligner
|
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
object Signing {
|
object Signing {
|
||||||
fun start(inputFile: File, outputFile: File, signingOptions: SigningOptions) {
|
fun sign(alignedFile: File, signedOutput: File, signingOptions: SigningOptions) {
|
||||||
val cacheDirectory = File(args.sArgs?.pArgs?.cacheDirectory)
|
logger.info("Signing ${alignedFile.name} to ${signedOutput.name}")
|
||||||
val alignedOutput = cacheDirectory.resolve("${outputFile.nameWithoutExtension}_aligned.apk")
|
Signer(signingOptions).signApk(alignedFile, signedOutput)
|
||||||
val signedOutput = cacheDirectory.resolve("${outputFile.nameWithoutExtension}_signed.apk")
|
|
||||||
|
|
||||||
// align the inputFile and write to alignedOutput
|
|
||||||
logger.info("Aligning ${inputFile.name}")
|
|
||||||
ZipAligner.align(inputFile, alignedOutput)
|
|
||||||
// sign the alignedOutput and write to signedOutput
|
|
||||||
// the reason is, in case the signer fails
|
|
||||||
// it does not damage the output file
|
|
||||||
logger.info("Signing ${alignedOutput.name}")
|
|
||||||
Signer(signingOptions).signApk(alignedOutput, signedOutput)
|
|
||||||
|
|
||||||
// afterwards copy over the file to the output
|
|
||||||
logger.info("Copying ${signedOutput.name} to ${outputFile.name}")
|
|
||||||
signedOutput.copyTo(outputFile, true)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ fun Patcher.addPatchesFiltered() {
|
|||||||
val packageName = this.data.packageMetadata.packageName
|
val packageName = this.data.packageMetadata.packageName
|
||||||
val packageVersion = this.data.packageMetadata.packageVersion
|
val packageVersion = this.data.packageMetadata.packageVersion
|
||||||
|
|
||||||
args.sArgs?.patchBundles!!.forEach { bundle ->
|
args.patchArgs?.patchBundles!!.forEach { bundle ->
|
||||||
val includedPatches = mutableListOf<Class<out Patch<Data>>>()
|
val includedPatches = mutableListOf<Class<out Patch<Data>>>()
|
||||||
JarPatchBundle(bundle).loadPatches().forEach patch@{ patch ->
|
JarPatchBundle(bundle).loadPatches().forEach patch@{ patch ->
|
||||||
val compatiblePackages = patch.compatiblePackages
|
val compatiblePackages = patch.compatiblePackages
|
||||||
@@ -23,10 +23,10 @@ fun Patcher.addPatchesFiltered() {
|
|||||||
|
|
||||||
val prefix = "Skipping $patchName"
|
val prefix = "Skipping $patchName"
|
||||||
|
|
||||||
val args = MainCommand.args.sArgs?.pArgs!!
|
val args = MainCommand.args.patchArgs?.patchingArgs!!
|
||||||
|
|
||||||
if (args.excludedPatches.contains(patchName)) {
|
if (args.excludedPatches.contains(patchName)) {
|
||||||
logger.info("$prefix: Explicitely excluded")
|
logger.info("$prefix: Explicitly excluded")
|
||||||
return@patch
|
return@patch
|
||||||
} else if ((!patch.include || args.defaultExclude) && !args.includedPatches.contains(patchName)) {
|
} else if ((!patch.include || args.defaultExclude) && !args.includedPatches.contains(patchName)) {
|
||||||
logger.info("$prefix: Not explicitly included")
|
logger.info("$prefix: Not explicitly included")
|
||||||
@@ -72,7 +72,7 @@ fun Patcher.applyPatchesVerbose() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun Patcher.mergeFiles() {
|
fun Patcher.mergeFiles() {
|
||||||
this.addFiles(args.sArgs?.pArgs!!.mergeFiles) { file ->
|
this.addFiles(args.patchArgs?.patchingArgs!!.mergeFiles) { file ->
|
||||||
logger.info("Merging $file")
|
logger.info("Merging $file")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ internal class Signer(
|
|||||||
// TODO: keystore should be saved securely
|
// TODO: keystore should be saved securely
|
||||||
val ks = File(signingOptions.keyStoreFilePath)
|
val ks = File(signingOptions.keyStoreFilePath)
|
||||||
if (!ks.exists()) newKeystore(ks) else {
|
if (!ks.exists()) newKeystore(ks) else {
|
||||||
logger.info("Found existing keystore: ${ks.nameWithoutExtension}")
|
logger.info("Found existing keystore: ${ks.name}")
|
||||||
}
|
}
|
||||||
|
|
||||||
val keyStore = KeyStore.getInstance("BKS", "BC")
|
val keyStore = KeyStore.getInstance("BKS", "BC")
|
||||||
|
|||||||
Reference in New Issue
Block a user