forked from theJaxon/unlocker
-
Notifications
You must be signed in to change notification settings - Fork 161
/
gettools.py
247 lines (208 loc) · 8.32 KB
/
gettools.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#!/usr/bin/env python
"""
The MIT License (MIT)
Copyright (c) 2015-2017 Dave Parsons
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the 'Software'), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
from __future__ import print_function
import os
import sys
import shutil
import tarfile
import zipfile
import time
import urllib
try:
# For Python 3.0 and later
# noinspection PyCompatibility
from urllib.request import urlopen
# noinspection PyCompatibility
from html.parser import HTMLParser
# noinspection PyCompatibility
from urllib.request import urlretrieve
# noinspection PyCompatibility
from urllib.request import install_opener
except ImportError:
# Fall back to Python 2
# noinspection PyCompatibility
from urllib2 import urlopen
# noinspection PyCompatibility
from HTMLParser import HTMLParser
# Parse the Fusion directory page
class CDSParser(HTMLParser):
def __init__(self):
HTMLParser.__init__(self)
self.reset()
self.HTMLDATA = []
def handle_data(self, data):
# Build a list of numeric data from any element
if data.find("\n") == -1:
if data[0].isdigit():
self.HTMLDATA.append(data)
self.HTMLDATA.sort(key=lambda s: [int(u) for u in s.split('.')])
def clean(self):
self.HTMLDATA = []
if sys.version_info > (3, 0):
# Python 3 code in this block
pass
else:
# Python 2 code in this block
class MyURLopener(urllib.FancyURLopener):
http_error_default = urllib.URLopener.http_error_default
def convertpath(path):
# OS path separator replacement function
return path.replace(os.path.sep, '/')
def reporthook(count, block_size, total_size):
global start_time
if count == 0:
start_time = time.time()
return
duration = time.time() - start_time
progress_size = int(count * block_size)
speed = int(progress_size / (1024 * duration)) if duration>0 else 0
percent = min(int(count*block_size*100/total_size),100)
time_remaining = ((total_size - progress_size)/1024) / speed if speed > 0 else 0
sys.stdout.write("\r...%d%%, %d MB, %d KB/s, %d seconds remaining " %
(percent, progress_size / (1024 * 1024), speed, time_remaining))
sys.stdout.flush()
def CheckToolsFilesExists(dest):
filesFound = os.path.exists(convertpath(dest + '/tools/darwin.iso')) & os.path.exists(convertpath(dest + '/tools/darwinPre15.iso'))
askMsg = 'You already have downloaded the tools. Download again?[y/n]'
if filesFound:
while True:
# Ask if the user want to download again
if sys.version_info > (3, 0):
# Python 3 code in this block
userResponse = input(askMsg)
else:
# Python 2 code in this block
userResponse = raw_input(askMsg)
if str(userResponse).upper() == 'Y':
return False
elif str(userResponse).upper() == 'N':
return True
else:
print('Must enter y or n. You pressed: ' + str(userResponse).upper())
else:
return False
def GetResponseFromUrl(url):
try:
# Try to read page
if sys.version_info > (3, 0):
# Python 3 code in this block
req = urllib.request.Request(url, headers={'User-Agent' : "Magic Browser"})
response = urllib.request.urlopen( req )
return response
else:
# Python 2 code in this block
req = urllib.Request(url, headers={'User-Agent' : "Magic Browser"})
response = urllib.urlopen( req )
return response
except:
print('Couldn\'t read page')
return False
def main():
# Check minimal Python version is 2.7
if sys.version_info < (2, 7):
sys.stderr.write('You need Python 2.7 or later\n')
sys.exit(1)
dest = os.getcwd()
# Try local file check
if(CheckToolsFilesExists(dest)):
# User as already download the tools and chosen not doing again
return
# Re-create the tools folder
shutil.rmtree(dest + '/tools', True)
try:
os.mkdir(dest + '/tools')
except :
pass
parser = CDSParser()
# Last published version doesn't ship with darwin tools
# so in case of error get it from the core.vmware.fusion.tar
print('Trying to get tools from the packages folder...')
# Setup secure url and file paths
url = 'https://softwareupdate.vmware.com/cds/vmw-desktop/fusion/'
# Get the list of Fusion releases
# And get the last item in the ul/li tags
response = GetResponseFromUrl(url)
if response == False:
return
html = response.read()
parser.clean()
parser.feed(str(html))
url = url + parser.HTMLDATA[-1] + '/'
parser.clean()
# Open the latest release page
# And build file URL
response = GetResponseFromUrl(url)
if response == False:
return
html = response.read()
parser.feed(str(html))
lastVersion = parser.HTMLDATA[-1]
fromLocal = '/universal/core/'
zipName = 'com.vmware.fusion.zip'
tarName = zipName + '.tar'
urlpost15 = url + lastVersion + fromLocal + tarName
parser.clean()
# Download the darwin.iso tar file
print('Retrieving Darwin tools from: ' + urlpost15)
try:
# Try to get tools from packages folder
if sys.version_info > (3, 0):
# Python 3 code in this block
opener = urllib.request.build_opener()
opener.addheaders = [('User-Agent','Magic Browser')]
install_opener(opener)
urlretrieve(urlpost15, convertpath(dest + '/tools/' + tarName), reporthook)
else:
# Python 2 code in this block
opener = MyURLopener()
opener.Version = [('User-Agent','Magic Browser')]
(f,headers)=opener.retrieve(urlpost15, convertpath(dest + '/tools/' + tarName), reporthook)
except:
print('Couldn\'t find tools')
return
print()
# Extract the tar to zip
print('Extracting ' + tarName + '...')
tar = tarfile.open(convertpath(dest + '/tools/' + tarName), 'r')
tar.extract(zipName, path=convertpath(dest + '/tools/'))
tar.close()
# Extract files from zip
print('Extracting files from ' + zipName + '...')
cdszip = zipfile.ZipFile(convertpath(dest + '/tools/' + zipName), 'r')
# Query where the iso files resides
isoPath = 'payload/VMware Fusion.app/Contents/Library/isoimages/x86_x64/'
if not (isoPath in cdszip.namelist()):
isoPath = 'payload/VMware Fusion.app/Contents/Library/isoimages/'
# Extract the iso files from zip
cdszip.extract(isoPath + 'darwin.iso', path=convertpath(dest + '/tools/'))
cdszip.extract(isoPath + 'darwinPre15.iso', path=convertpath(dest + '/tools/'))
cdszip.close()
# Move the iso files to tools folder
shutil.move(convertpath(dest + '/tools/' + isoPath + 'darwin.iso'), convertpath(dest + '/tools/darwin.iso'))
shutil.move(convertpath(dest + '/tools/' + isoPath + 'darwinPre15.iso'), convertpath(dest + '/tools/darwinPre15.iso'))
# Cleanup working files and folders
shutil.rmtree(convertpath(dest + '/tools/payload'), True)
os.remove(convertpath(dest + '/tools/' + tarName))
os.remove(convertpath(dest + '/tools/' + zipName))
print('Tools from core retrieved successfully')
return
if __name__ == '__main__':
main()