-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
221 lines (181 loc) · 7.71 KB
/
setup.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
from distutils.command.install import install
from distutils.command.build_scripts import build_scripts
from distutils.core import setup
import hashlib
import os
import platform
import re
import tempfile
import sys
import zipfile
try:
from urllib import request
except ImportError:
import urllib as request
CHROMEDRIVER_INFO_URL = (
'https://sites.google.com/a/chromium.org/chromedriver/downloads'
)
CHROMEDRIVER_URL_TEMPLATE = (
'http://chromedriver.storage.googleapis.com/{version}/chromedriver_{os_}'
'{architecture}.zip'
)
CHROMEDRIVER_VERSION_PATTERN = re.compile(r'^\d+\.\d+$')
CROMEDRIVER_LATEST_VERSION_PATTERN = re.compile(
r'Latest-Release:-ChromeDriver-(\d+\.\d+)'
)
# Global variables
chromedriver_version = None
chromedriver_checksums = None
def get_chromedriver_version():
"""Retrieves the most recent chromedriver version."""
global chromedriver_version
response = request.urlopen(CHROMEDRIVER_INFO_URL)
content = response.read()
match = CROMEDRIVER_LATEST_VERSION_PATTERN.search(str(content))
if match:
return match.group(1)
else:
raise Exception('Unable to get latest chromedriver version from {0}'
.format(CHROMEDRIVER_INFO_URL))
class BuildScripts(build_scripts):
"""Downloads and unzips the requested chromedriver executable."""
def _download(self, zip_path, validate=False):
plat = platform.platform().lower()
if plat.startswith('darwin'):
os_ = 'mac'
# Only 64 bit architecture is available for mac since version 2.23
architecture = 64 if float(chromedriver_version) >= 2.23 else 32
elif plat.startswith('linux'):
os_ = 'linux'
architecture = platform.architecture()[0][:-3]
elif plat.startswith('win'):
os_ = 'win'
architecture = 32
else:
raise Exception('Unsupported platform: {0}'.format(plat))
url = CHROMEDRIVER_URL_TEMPLATE.format(version=chromedriver_version,
os_=os_,
architecture=architecture)
download_report_template = ("\t - downloading from '{0}' to '{1}'"
.format(url, zip_path))
def reporthoook(x, y, z):
global download_ok
percent_downloaded = '{0:.0%}'.format((x * y) / float(z))
sys.stdout.write('\r')
sys.stdout.write("{0} [{1}]".format(download_report_template,
percent_downloaded))
download_ok = percent_downloaded == '100%'
if download_ok:
sys.stdout.write(' OK')
sys.stdout.flush()
request.urlretrieve(url, zip_path, reporthoook)
print('')
if not download_ok:
print('\t - download failed!')
if validate:
if not self._validate(zip_path):
raise Exception("The checksum of the downloaded file '{0}' "
"matches none of the checksums {1}!"
.format(zip_path,
', '.join(chromedriver_checksums)))
def _unzip(self, zip_path):
zf = zipfile.ZipFile(zip_path)
print("\t - extracting '{0}' to '{1}'."
.format(zip_path, self.build_dir))
zf.extractall(self.build_dir)
def _validate(self, zip_path):
checksum = hashlib.md5(open(zip_path, 'rb').read()).hexdigest()
return checksum in chromedriver_checksums
def run(self):
global chromedriver_version, chromedriver_checksums
validate = False
if chromedriver_version:
if chromedriver_checksums:
validate = True
else:
chromedriver_version = get_chromedriver_version()
file_name = 'chromedriver_{0}.zip'.format(chromedriver_version)
zip_path = os.path.join(tempfile.gettempdir(), file_name)
if validate:
if os.path.exists(zip_path):
print("\t - requested file '{0}' found at '{1}'."
.format(file_name, zip_path))
if self._validate(zip_path):
print("\t - cached file '{0}' is valid.".format(zip_path))
else:
print("\t - cached file '{0}' is not valid!"
.format(zip_path))
self._download(zip_path, validate=True)
else:
self._download(zip_path, validate=True)
else:
self._download(zip_path)
self._unzip(zip_path)
self.scripts = [os.path.join(self.build_dir, script) for script in
os.listdir(self.build_dir)]
build_scripts.run(self)
def finalize_options(self):
build_scripts.finalize_options(self)
self.scripts = []
class Install(install):
"""Used to get chromedriver version and checksums from install options"""
# Fix an error when pip calls setup.py with the
# --single-version-externally-managed and it is not supported due to
# old setuptools version.
_svem = list(filter(lambda x: x[0] == 'single-version-externally-managed',
install.user_options))
if not _svem:
single_version_externally_managed = None
install.user_options.append(('single-version-externally-managed',
None, ""))
user_options = install.user_options + [
('chromedriver-version=', None, 'Chromedriver version'),
('chromedriver-checksums=', None, 'Chromedriver checksums'),
]
def initialize_options(self):
self.chromedriver_version = None
self.chromedriver_checksums = []
install.initialize_options(self)
def run(self):
global chromedriver_version, chromedriver_checksums
if self.chromedriver_version:
if not CHROMEDRIVER_VERSION_PATTERN.match(self.chromedriver_version):
raise Exception('Invalid --chromedriver-version={0}! '
'Must match /{1}/'
.format(self.chromedriver_version,
CHROMEDRIVER_VERSION_PATTERN.pattern))
chromedriver_version = self.chromedriver_version
chromedriver_checksums = self.chromedriver_checksums
if chromedriver_checksums:
chromedriver_checksums = [ch.strip() for ch in
self.chromedriver_checksums.split(',')]
install.run(self)
setup(
name='chromedriver_installer',
version='0.0.6',
author='Peter Hudec',
author_email='[email protected]',
description='Chromedriver Installer',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst'))
.read(),
keywords='chromedriver installer',
url='https://github.com/peterhudec/chromedriver_installer',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Installation/Setup',
],
license='MIT',
package_data={'': ['*.txt', '*.rst']},
# If packages is empty, contents of ./build/lib will not be copied!
packages=['chromedriver_installer'],
scripts=['if', 'empty', 'BuildScripts', 'will', 'be', 'ignored'],
cmdclass=dict(build_scripts=BuildScripts, install=Install)
)