2019-02-04 20:49:46 +00:00
|
|
|
#!/bin/env python3
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
import os
|
2019-05-18 06:54:20 +00:00
|
|
|
import json
|
2019-02-04 20:49:46 +00:00
|
|
|
import subprocess
|
|
|
|
import datetime
|
2019-03-08 11:53:24 +00:00
|
|
|
import shutil
|
2019-02-04 20:49:46 +00:00
|
|
|
|
|
|
|
# Example invocation:
|
2019-05-18 06:54:20 +00:00
|
|
|
# python3 patchport.py /home/ave/apks/com.discord-900/
|
2019-02-04 20:49:46 +00:00
|
|
|
|
2019-05-18 06:54:20 +00:00
|
|
|
with open("patchport-state.json", "r") as f:
|
|
|
|
jin = json.load(f)
|
|
|
|
from_versioncode = jin["versioncode"]
|
|
|
|
from_versionname = jin["versionname"]
|
|
|
|
|
|
|
|
apk_folder = sys.argv[1]
|
|
|
|
cutthecord_folder = os.path.dirname(os.path.realpath(__file__))
|
2019-02-04 20:49:46 +00:00
|
|
|
debug = False
|
2019-03-08 11:53:24 +00:00
|
|
|
tmp_folder = "/tmp/patchport"
|
2019-02-04 20:49:46 +00:00
|
|
|
|
2019-07-10 21:32:10 +00:00
|
|
|
if debug:
|
|
|
|
print(f"ctc folder: {cutthecord_folder}")
|
|
|
|
|
2019-02-04 20:49:46 +00:00
|
|
|
|
|
|
|
def modify_patch(patch_name, patch_path):
|
|
|
|
with open(patch_path) as f:
|
|
|
|
patch_content = f.read()
|
|
|
|
|
|
|
|
if patch_name in ["branding", "customversion"]:
|
|
|
|
patch_content = patch_content.replace(from_versioncode, to_versioncode)
|
|
|
|
patch_content = patch_content.replace(from_versionname, to_versionname)
|
|
|
|
|
|
|
|
if patch_name == "notrack":
|
|
|
|
# TODO: There's a risk here that we'll replace the nulled value
|
|
|
|
from_crashlytics_id = re_crashlytics.findall(patch_content)[0]
|
|
|
|
patch_content = patch_content.replace(from_crashlytics_id,
|
|
|
|
to_crashlytics_id)
|
|
|
|
return patch_content
|
|
|
|
|
|
|
|
|
2019-04-25 10:12:30 +00:00
|
|
|
def apply_patch(patch_contents):
|
|
|
|
subprocess.run("patch -p1 --no-backup-if-mismatch --force",
|
|
|
|
shell=True, input=patch_contents, text=True,
|
|
|
|
cwd=apk_folder, capture_output=True)
|
|
|
|
|
|
|
|
|
2019-03-08 11:53:24 +00:00
|
|
|
def fix_offset(patch_contents):
|
|
|
|
# OH GOD OH FUCK
|
|
|
|
shutil.rmtree(tmp_folder, ignore_errors=True)
|
|
|
|
shutil.copytree(apk_folder, tmp_folder)
|
|
|
|
subprocess.run("patch -p1 --no-backup-if-mismatch --force",
|
|
|
|
shell=True, input=patch_contents, text=True,
|
2019-03-08 13:17:28 +00:00
|
|
|
cwd=tmp_folder, capture_output=True)
|
2019-03-08 11:53:24 +00:00
|
|
|
out = subprocess.run(f"diff -crB {apk_folder} {tmp_folder}",
|
|
|
|
shell=True, input=patch_contents, text=True,
|
|
|
|
cwd=tmp_folder, capture_output=True)
|
|
|
|
shutil.rmtree(tmp_folder, ignore_errors=True)
|
2019-03-08 13:17:28 +00:00
|
|
|
patch_out = out.stdout.replace(apk_folder, "from").replace(tmp_folder, "to")
|
|
|
|
return patch_out
|
2019-03-08 11:53:24 +00:00
|
|
|
|
|
|
|
|
2019-04-25 10:12:30 +00:00
|
|
|
def make_necessary(version_name, version_code):
|
|
|
|
# OH GOD OH FUCK
|
|
|
|
shutil.rmtree(tmp_folder, ignore_errors=True)
|
|
|
|
shutil.copytree(apk_folder, tmp_folder)
|
|
|
|
|
|
|
|
# Set version code and name
|
|
|
|
# Due to https://github.com/iBotPeaches/Apktool/issues/2046
|
|
|
|
# Code based on https://stackoverflow.com/a/4128192/3286892
|
|
|
|
with open(os.path.join(tmp_folder, "AndroidManifest.xml")) as fin:
|
|
|
|
filec = fin.read()
|
|
|
|
incorrect_versioncode = re_versioncode_xml.findall(filec)[0]
|
|
|
|
filec = filec.replace(incorrect_versioncode,
|
|
|
|
f'platformBuildVersionCode="{to_versioncode}"')
|
|
|
|
incorrect_versionname = re_versionname_xml.findall(filec)[0]
|
|
|
|
filec = filec.replace(incorrect_versionname,
|
|
|
|
f'platformBuildVersionName="{to_versionname}"')
|
|
|
|
with open(os.path.join(tmp_folder, "AndroidManifest.xml"), "w") as fout:
|
|
|
|
fout.write(filec)
|
|
|
|
|
|
|
|
out = subprocess.run(f"diff -crB {apk_folder} {tmp_folder}",
|
|
|
|
shell=True, text=True,
|
|
|
|
cwd=tmp_folder, capture_output=True)
|
|
|
|
shutil.rmtree(tmp_folder, ignore_errors=True)
|
|
|
|
patch_out = out.stdout.replace(apk_folder, "from").replace(tmp_folder, "to")
|
|
|
|
return patch_out
|
|
|
|
|
|
|
|
|
|
|
|
re_versioncode_xml = re.compile(r'(platformBuildVersionCode="[0-9]+")')
|
|
|
|
re_versionname_xml = re.compile(r'(platformBuildVersionName="[0-9a-z.]+")')
|
|
|
|
|
|
|
|
re_versioncode_yml = re.compile(r'versionCode: \'([0-9]+)\'')
|
2019-07-10 21:27:22 +00:00
|
|
|
re_versionname_yml = re.compile(r'versionName: (.+)$')
|
2019-04-25 10:12:30 +00:00
|
|
|
|
2019-02-04 20:49:46 +00:00
|
|
|
re_releasedate = re.compile(r'released on ([0-9]{4}-[0-9]{2}-[0-9]{2})')
|
|
|
|
re_crashlytics = re.compile(r'com\.crashlytics\.android\.build_id">([a-z0-9]'
|
|
|
|
r'{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-'
|
|
|
|
r'[a-z0-9]{12})</string>')
|
|
|
|
|
|
|
|
|
|
|
|
# Get version code and name
|
2019-04-25 10:12:30 +00:00
|
|
|
with open(os.path.join(apk_folder, "apktool.yml")) as f:
|
2019-02-04 20:49:46 +00:00
|
|
|
file_contents = f.read()
|
2019-04-25 10:12:30 +00:00
|
|
|
to_versioncode = re_versioncode_yml.findall(file_contents)[0]
|
|
|
|
to_versionname = re_versionname_yml.findall(file_contents)[0]
|
2019-02-04 20:49:46 +00:00
|
|
|
|
|
|
|
# Get crashlytics build ID
|
|
|
|
with open(os.path.join(apk_folder, "res", "values", "strings.xml")) as f:
|
|
|
|
file_contents = f.read()
|
|
|
|
to_crashlytics_id = re_crashlytics.findall(file_contents)[0]
|
|
|
|
|
|
|
|
|
|
|
|
failures = []
|
|
|
|
|
|
|
|
for patch in os.listdir(os.path.join(cutthecord_folder, "patches")):
|
2019-07-10 21:32:10 +00:00
|
|
|
if debug:
|
|
|
|
print(f"going over patch: {patch}")
|
|
|
|
|
2019-06-25 12:11:01 +00:00
|
|
|
# Ignore non-dirs
|
2019-07-10 21:32:10 +00:00
|
|
|
if not os.path.isdir(os.path.join(cutthecord_folder, "patches", patch)):
|
|
|
|
if debug:
|
|
|
|
print(f"patch is not a folder, skipping: {patch}")
|
2019-06-25 12:11:01 +00:00
|
|
|
continue
|
|
|
|
|
2019-02-04 20:49:46 +00:00
|
|
|
patch_path = os.path.join(cutthecord_folder, "patches", patch,
|
|
|
|
f"{from_versioncode}.patch")
|
|
|
|
out_path = os.path.join(cutthecord_folder, "patches", patch,
|
|
|
|
f"{to_versioncode}.patch")
|
|
|
|
readme_path = os.path.join(cutthecord_folder, "patches", patch, "README.md")
|
|
|
|
|
|
|
|
# Check if patch exists for from_version, if it doesn't, warn user
|
2019-04-25 10:12:30 +00:00
|
|
|
if not os.path.isfile(patch_path) and patch not in ["necessary"]:
|
2019-02-05 22:55:28 +00:00
|
|
|
# Don't warn on instructional patches
|
2019-03-08 11:53:24 +00:00
|
|
|
if patch not in ["customfont", "customring",
|
2019-05-13 08:20:03 +00:00
|
|
|
"bettertm", "bettertmlight",
|
|
|
|
"blobs"]:
|
2019-02-05 22:55:28 +00:00
|
|
|
print(f"SKIPPED: No {from_versionname} version found for {patch}.")
|
2019-02-04 20:49:46 +00:00
|
|
|
continue
|
|
|
|
|
2019-04-25 10:12:30 +00:00
|
|
|
# Create necessary instead of porting it.
|
|
|
|
if patch == "necessary":
|
|
|
|
patch_contents = make_necessary(to_versioncode, to_versionname)
|
|
|
|
else:
|
|
|
|
# Get a modified version of the patch
|
|
|
|
patch_contents = modify_patch(patch, patch_path)
|
2019-02-04 20:49:46 +00:00
|
|
|
|
|
|
|
# Pass the new patch to patch command and get it to attempt to patch
|
|
|
|
out = subprocess.run("patch -p1 --dry-run --force", shell=True,
|
|
|
|
cwd=apk_folder, input=patch_contents, text=True,
|
|
|
|
capture_output=True)
|
|
|
|
|
|
|
|
# Check for issues
|
|
|
|
if "FAILED" in out.stdout:
|
|
|
|
print(f"FAILED: {patch} failed, please fix by hand.")
|
|
|
|
failures.append(patch)
|
2019-03-08 11:53:24 +00:00
|
|
|
out_path += "-failed"
|
2019-02-04 20:49:46 +00:00
|
|
|
elif "offset" in out.stdout:
|
2019-03-08 11:53:24 +00:00
|
|
|
patch_contents = fix_offset(patch_contents)
|
|
|
|
print(f"WARNING: {patch} has offsets which were auto corrected.")
|
2019-02-04 20:49:46 +00:00
|
|
|
|
|
|
|
if debug:
|
|
|
|
print(out.stdout)
|
|
|
|
|
2019-04-25 10:12:30 +00:00
|
|
|
# Apply patch to main APK folder too
|
|
|
|
if patch in ["necessary"]:
|
|
|
|
apply_patch(patch_contents)
|
|
|
|
|
2019-02-04 20:49:46 +00:00
|
|
|
# Add supported version to readme of that patch, hacky
|
|
|
|
# https://stackoverflow.com/a/35130508/3286892
|
|
|
|
with open(readme_path, 'r') as f:
|
|
|
|
readme_text = f.read().replace(f'- {from_versionname}',
|
|
|
|
f'- {from_versionname}\n'
|
|
|
|
f'- {to_versionname}')
|
|
|
|
with open(readme_path, "w") as f:
|
|
|
|
f.write(readme_text)
|
|
|
|
|
|
|
|
# Save ported patch
|
|
|
|
with open(out_path, "w") as f:
|
|
|
|
f.write(patch_contents)
|
|
|
|
|
2019-03-21 11:02:40 +00:00
|
|
|
if not out_path.endswith("-failed"):
|
|
|
|
print(f"PORTED: {patch} was successfully ported.")
|
2019-02-04 20:49:46 +00:00
|
|
|
|
2019-05-18 06:54:20 +00:00
|
|
|
ctcreadme_path = os.path.join(cutthecord_folder, "README.md")
|
|
|
|
# TODO: can we pull the correct date from distok?
|
|
|
|
out_datestamp = datetime.datetime.utcnow().strftime("%Y-%m-%d")
|
|
|
|
# Update readme with latest version, hacky
|
|
|
|
# https://stackoverflow.com/a/35130508/3286892
|
|
|
|
with open(ctcreadme_path, 'r') as f:
|
|
|
|
ctcr_text = f.read().replace(f'{from_versionname} ({from_versioncode})',
|
|
|
|
f'{to_versionname} ({to_versioncode})')
|
|
|
|
in_datestamp = re_releasedate.findall(ctcr_text)[0]
|
|
|
|
ctcr_text = ctcr_text.replace(in_datestamp, out_datestamp)
|
|
|
|
with open(ctcreadme_path, "w") as f:
|
|
|
|
f.write(ctcr_text)
|
|
|
|
|
|
|
|
with open("patchport-state.json", "w") as f:
|
|
|
|
jout = {"versionname": to_versionname, "versioncode": to_versioncode}
|
|
|
|
json.dump(jout, f)
|
|
|
|
|
2019-02-04 20:49:46 +00:00
|
|
|
if failures:
|
|
|
|
print(f"Port complete. Following patches failed: {', '.join(failures)}")
|
|
|
|
else:
|
2019-03-08 12:27:43 +00:00
|
|
|
print("Port complete. All patches completed successfully.")
|