-
Notifications
You must be signed in to change notification settings - Fork 15
/
get_bundle_id.py
99 lines (83 loc) · 2.98 KB
/
get_bundle_id.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import requests
import zipfile
import plistlib
import github
import pandas as pd
import shutil
import os
def get_single_bundle_id(url, name="temp.ipa"):
reponse = requests.get(url)
open(name, 'wb').write(reponse.content)
icon_folder = "icons/"
if not os.path.exists(icon_folder):
os.mkdir(icon_folder)
with zipfile.ZipFile(name, mode="r") as archive:
for file_name in archive.namelist():
if file_name.endswith(".app/Info.plist"):
info_file = file_name
folder_path = os.path.dirname(info_file)
with archive.open(info_file) as fp:
pl = plistlib.load(fp)
icon_path = ""
bundleId = pl["CFBundleIdentifier"]
if "CFBundleIconFiles" in pl.keys():
try:
icon_path = os.path.join(
folder_path, pl["CFBundleIconFiles"][0])
except:
# index [0] out-of-range: empty icon list
return bundleId
if "CFBundleIcons" in pl.keys():
try:
icon_prefix = pl["CFBundleIcons"]["CFBundlePrimaryIcon"]["CFBundleIconFiles"][0]
except:
icon_prefix = pl["CFBundleIcons"]["CFBundlePrimaryIcon"]["CFBundleIconName"]
for file_name in archive.namelist():
if icon_prefix in file_name:
icon_path = file_name
if icon_path:
try:
with archive.open(icon_path) as origin, open(icon_folder + bundleId + ".png", "wb") as dst:
shutil.copyfileobj(origin, dst)
except:
pass
else: # no icon info
pass
return bundleId
return "com.example.app"
def generate_bundle_id_csv(token):
g = github.Github(token)
repo = g.get_repo("Neoncat-OG/TrollStore-IPAs")
releases = repo.get_releases()
df = pd.DataFrame(columns=["name", "bundleId"])
for release in releases:
date = release.created_at.strftime("%Y-%m-%d")
if date > "2022-11-10":
continue
print(release.title)
for asset in release.get_assets():
if (asset.name[-3:] != "ipa"):
continue
name = asset.name[:-4]
print(asset.name)
try:
app_name = name.split("-", 1)[0]
except:
app_name = name
if app_name in df.name.values:
continue
df = pd.concat(
[
df,
pd.DataFrame(
{
"name": [app_name],
"bundleId": get_single_bundle_id(asset.browser_download_url)
}
)
],
ignore_index=True
)
df.to_csv("bundleIdmap.csv", index=False)
if __name__ == "__main__":
pass