-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
259 lines (232 loc) · 8.95 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
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
248
249
250
251
252
253
254
255
256
257
258
259
# Copyright (c) Microsoft Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import glob
import os
import platform
import shutil
import tempfile
import urllib.request
import tarfile
import re
import subprocess
import sys
import zipfile
from typing import Dict
driver_version = "1.49.0-beta-1732210972000"
base_wheel_bundles = [
{
"wheel": "macosx_10_13_x86_64.whl",
"machine": "x86_64",
"platform": "darwin",
"zip_name": "mac",
},
{
"wheel": "macosx_11_0_universal2.whl",
"machine": "x86_64",
"platform": "darwin",
"zip_name": "mac",
},
{
"wheel": "macosx_11_0_arm64.whl",
"machine": "arm64",
"platform": "darwin",
"zip_name": "mac-arm64",
},
{
"wheel": "manylinux1_x86_64.whl",
"machine": "x86_64",
"platform": "linux",
"zip_name": "linux",
},
{
"wheel": "manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"machine": "aarch64",
"platform": "linux",
"zip_name": "linux-arm64",
},
{
"wheel": "win32.whl",
"machine": "i386",
"platform": "win32",
"zip_name": "win32_x64",
},
{
"wheel": "win_amd64.whl",
"machine": "amd64",
"platform": "win32",
"zip_name": "win32_x64",
},
]
if len(sys.argv) == 2 and sys.argv[1] == "--list-wheels":
for bundle in base_wheel_bundles:
print(bundle["wheel"])
exit(0)
from setuptools import setup # noqa: E402
try:
from auditwheel.wheeltools import InWheel
except ImportError:
InWheel = None
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand # noqa: E402
def prepare_rebrowser_sources():
old_path = "playwright"
new_path = "rebrowser_playwright"
shutil.rmtree(new_path, ignore_errors=True)
shutil.copytree(old_path, new_path)
print(f"[rebrowser-patches] preparing new sources in {new_path}")
for root, dirs, files in os.walk(new_path):
for file in files:
if file.endswith('.py'):
file_path = os.path.join(root, file)
with open(file_path, 'r') as f:
content = f.read()
new_content = content
new_content = re.sub(r'= playwright\._impl', '= rebrowser_playwright._impl', new_content)
new_content = re.sub(r'from playwright.', 'from rebrowser_playwright.', new_content)
new_content = re.sub(r'import playwright.', 'import rebrowser_playwright.', new_content)
new_content = re.sub(r'import playwright', 'import rebrowser_playwright as playwright', new_content)
if new_content != content:
with open(file_path, 'w') as f:
f.write(new_content)
print(f"[rebrowser-patches] updated imports in {file_path}")
def replace_driver_with_rebrowser(path: str):
package_folder = path + "/package"
package_name = "rebrowser-playwright-core"
package_version = "1.49.0"
print(f"[rebrowser-patches] package_version = {package_version}, path = {path}")
# clean old package folder
if os.path.exists(package_folder):
shutil.rmtree(package_folder)
os.makedirs(package_folder)
# Create a temporary directory for downloading
with tempfile.TemporaryDirectory() as temp_dir:
# Construct the NPM package URL
npm_url = f"https://registry.npmjs.org/{package_name}/-/{package_name}-{package_version}.tgz"
# Download the package
tgz_file = os.path.join(temp_dir, f"{package_name}.tgz")
urllib.request.urlretrieve(npm_url, tgz_file)
# Extract the package
with tarfile.open(tgz_file, "r:gz") as tar:
tar.extractall(path=path)
print(f"[rebrowser-patches] {package_name} has been downloaded and extracted to {path}")
def extractall(zip: zipfile.ZipFile, path: str) -> None:
for name in zip.namelist():
member = zip.getinfo(name)
extracted_path = zip.extract(member, path)
attr = member.external_attr >> 16
if attr != 0:
os.chmod(extracted_path, attr)
def download_driver(zip_name: str) -> None:
zip_file = f"playwright-{driver_version}-{zip_name}.zip"
if os.path.exists("driver/" + zip_file):
return
url = "https://playwright.azureedge.net/builds/driver/"
if (
"-alpha" in driver_version
or "-beta" in driver_version
or "-next" in driver_version
):
url = url + "next/"
url = url + zip_file
print(f"Fetching {url}")
# Don't replace this with urllib - Python won't have certificates to do SSL on all platforms.
subprocess.check_call(["curl", url, "-o", "driver/" + zip_file])
class PlaywrightBDistWheelCommand(BDistWheelCommand):
def run(self) -> None:
prepare_rebrowser_sources()
shutil.rmtree("build", ignore_errors=True)
shutil.rmtree("dist", ignore_errors=True)
shutil.rmtree("playwright.egg-info", ignore_errors=True)
super().run()
os.makedirs("driver", exist_ok=True)
os.makedirs("rebrowser_playwright/driver", exist_ok=True)
self._download_and_extract_local_driver()
wheel = None
if os.getenv("PLAYWRIGHT_TARGET_WHEEL", None):
wheel = list(
filter(
lambda wheel: wheel["wheel"]
== os.getenv("PLAYWRIGHT_TARGET_WHEEL"),
base_wheel_bundles,
)
)[0]
else:
wheel = list(
filter(
lambda wheel: wheel["platform"] == sys.platform
and wheel["machine"] == platform.machine().lower(),
base_wheel_bundles,
)
)[0]
assert wheel
self._build_wheel(wheel)
def _build_wheel(
self,
wheel_bundle: Dict[str, str],
) -> None:
assert self.dist_dir
base_wheel_location: str = glob.glob(os.path.join(self.dist_dir, "*.whl"))[0]
without_platform = base_wheel_location[:-7]
download_driver(wheel_bundle["zip_name"])
zip_file = f"driver/playwright-{driver_version}-{wheel_bundle['zip_name']}.zip"
with zipfile.ZipFile(zip_file, "r") as zip:
extractall(zip, f"driver/{wheel_bundle['zip_name']}")
replace_driver_with_rebrowser(f"driver/{wheel_bundle['zip_name']}")
wheel_location = without_platform + wheel_bundle["wheel"]
shutil.copy(base_wheel_location, wheel_location)
with zipfile.ZipFile(
wheel_location, mode="a", compression=zipfile.ZIP_DEFLATED
) as zip:
driver_root = os.path.abspath(f"driver/{wheel_bundle['zip_name']}")
for dir_path, _, files in os.walk(driver_root):
for file in files:
from_path = os.path.join(dir_path, file)
to_path = os.path.relpath(from_path, driver_root)
zip.write(from_path, f"rebrowser_playwright/driver/{to_path}")
zip.writestr(
"rebrowser_playwright/driver/README.md",
f"{wheel_bundle['wheel']} driver package",
)
os.remove(base_wheel_location)
for whlfile in glob.glob(os.path.join(self.dist_dir, "*.whl")):
os.makedirs("wheelhouse", exist_ok=True)
if InWheel:
with InWheel(
in_wheel=whlfile,
out_wheel=os.path.join("wheelhouse", os.path.basename(whlfile)),
):
print(f"Updating RECORD file of {whlfile}")
print("Copying new wheels")
shutil.move("wheelhouse", self.dist_dir)
def _download_and_extract_local_driver(
self,
) -> None:
zip_names_for_current_system = set(
map(
lambda wheel: wheel["zip_name"],
filter(
lambda wheel: wheel["machine"] == platform.machine().lower()
and wheel["platform"] == sys.platform,
base_wheel_bundles,
),
)
)
assert len(zip_names_for_current_system) == 1
zip_name = zip_names_for_current_system.pop()
download_driver(zip_name)
zip_file = f"driver/playwright-{driver_version}-{zip_name}.zip"
with zipfile.ZipFile(zip_file, "r") as zip:
extractall(zip, "rebrowser_playwright/driver")
setup(
cmdclass={"bdist_wheel": PlaywrightBDistWheelCommand},
)