2022-12-08 16:06:23 +08:00
|
|
|
#!/usr/bin/python3
|
2022-08-26 00:20:49 +08:00
|
|
|
#
|
2022-08-24 01:54:24 +08:00
|
|
|
# This file is part of MagiskOnWSALocal.
|
|
|
|
#
|
|
|
|
# MagiskOnWSALocal 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.
|
|
|
|
#
|
|
|
|
# MagiskOnWSALocal 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 MagiskOnWSALocal. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
#
|
2024-02-07 20:56:41 +08:00
|
|
|
# Copyright (C) 2024 LSPosed Contributors
|
2022-08-24 01:54:24 +08:00
|
|
|
#
|
|
|
|
|
2023-01-19 23:17:26 +08:00
|
|
|
from datetime import datetime
|
2022-08-24 01:54:24 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
import requests
|
|
|
|
import json
|
|
|
|
import re
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
arch = sys.argv[1]
|
2024-02-07 00:47:43 +08:00
|
|
|
arg2 = sys.argv[2]
|
|
|
|
download_dir = Path.cwd().parent / "download" if arg2 == "" else Path(arg2)
|
|
|
|
tempScript = sys.argv[3]
|
|
|
|
android_api = sys.argv[4]
|
|
|
|
file_name = sys.argv[5]
|
|
|
|
print(f"Generating GApps download link: arch={arch}", flush=True)
|
2022-08-24 01:54:24 +08:00
|
|
|
abi_map = {"x64": "x86_64", "arm64": "arm64"}
|
2022-12-08 16:06:23 +08:00
|
|
|
android_api_map = {"30": "11.0", "32": "12.1", "33": "13.0"}
|
2022-12-08 20:06:42 +08:00
|
|
|
release = android_api_map[android_api]
|
2024-02-07 00:47:43 +08:00
|
|
|
res = requests.get(f"https://api.github.com/repos/LSPosed/WSA-Addon/releases/latest")
|
|
|
|
json_data = json.loads(res.content)
|
|
|
|
headers = res.headers
|
|
|
|
x_ratelimit_remaining = headers["x-ratelimit-remaining"]
|
|
|
|
if res.status_code == 200:
|
|
|
|
assets = json_data["assets"]
|
|
|
|
for asset in assets:
|
|
|
|
if re.match(f'gapps.*{release}.*{abi_map[arch]}.*\.apex$', asset["name"]):
|
|
|
|
link = asset["browser_download_url"]
|
|
|
|
break
|
|
|
|
elif res.status_code == 403 and x_ratelimit_remaining == '0':
|
|
|
|
message = json_data["message"]
|
|
|
|
print(f"Github API Error: {message}", flush=True)
|
|
|
|
ratelimit_reset = headers["x-ratelimit-reset"]
|
|
|
|
ratelimit_reset = datetime.fromtimestamp(int(ratelimit_reset))
|
|
|
|
print(f"The current rate limit window resets in {ratelimit_reset}", flush=True)
|
|
|
|
exit(1)
|
2022-08-24 01:54:24 +08:00
|
|
|
|
|
|
|
print(f"download link: {link}", flush=True)
|
|
|
|
|
2022-08-26 02:33:27 +08:00
|
|
|
with open(download_dir/tempScript, 'a') as f:
|
|
|
|
f.writelines(f'{link}\n')
|
|
|
|
f.writelines(f' dir={download_dir}\n')
|
2022-12-08 16:06:23 +08:00
|
|
|
f.writelines(f' out={file_name}\n')
|