-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathios-url-scheme-extractor.py
100 lines (81 loc) · 3.06 KB
/
ios-url-scheme-extractor.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
import zipfile
import os
import fnmatch
import shutil
from biplist import *
from sys import platform as _platform
from os.path import expanduser
import Tkinter,tkFileDialog
def extract_url_scheme(bytes):
plist = readPlistFromString(bytes)
schemes = []
if 'URL Types' in plist:
for data in plist['URL Types']:
for scheme in data['URL Schemes']:
schemes.append(scheme)
elif 'CFBundleURLTypes' in plist:
for data in plist['CFBundleURLTypes']:
for scheme in data['CFBundleURLSchemes']:
schemes.append(scheme)
return schemes
def get_url_scheme(filename):
with zipfile.ZipFile(filename) as zf:
for filename in zf.namelist():
if filename.endswith('Info.plist'):
bytes = zf.read(filename)
print bytes
return extract_url_scheme(bytes)
return ''
class simpleapp_tk(Tkinter.Tk):
def __init__(self,parent):
Tkinter.Tk.__init__(self,parent)
self.parent = parent
self.initialize()
self.textbox = []
def initialize(self):
self.grid()
button = Tkinter.Button(self,text=u"Open",
command=self.OnButtonClick)
button.grid(column=0,row=0)
self.entry_vars = []
self.entries = []
for i in xrange(10):
entry_var = Tkinter.StringVar()
entry = Tkinter.Entry(self,textvariable=entry_var)
entry.grid(column=0,row=i + 1,sticky='EW')
self.entry_vars.append(entry_var)
self.entries.append(entry)
self.grid_columnconfigure(0,weight=1)
self.resizable(True,False)
def showFileOpen(self):
initialdir = ''
if _platform == "darwin":
initialdir = expanduser("~") + '/Music/iTunes/iTunes Music/Mobile Applications'
elif _platform == "win32":
initialdir = expanduser("~") + '\\My Documents\\My Music\\iTunes\\iTunes Media\Mobile Applications'
if not os.path.exists(initialdir):
initialdir = ''
file = tkFileDialog.askopenfile(parent=self.parent,
mode='rb',
title='Choose a file',
defaultextension='ipa',
initialdir=initialdir)
return file
def OnButtonClick(self):
file = self.showFileOpen()
if file != None:
for entry_var in self.entry_vars:
entry_var.set('')
path = os.path.abspath(file.name)
# print u'input: {0}'.format(path)
schemes = get_url_scheme(path)
# print u'output: {0}'.format(schemes)
for i, scheme in enumerate(schemes):
self.entry_vars[i].set(scheme + '://')
# import tkMessageBox
# tkMessageBox.showinfo("Result", '\n'.join(schemes))
if __name__ == "__main__":
app = simpleapp_tk(None)
app.title('URL Scheme extractor')
app.minsize(300, 200)
app.mainloop()