forked from microsoft/playwright-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetwork.py
237 lines (195 loc) · 7.39 KB
/
network.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
# 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 base64
import json
import mimetypes
from pathlib import Path
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union, cast
from urllib import parse
from playwright.connection import ChannelOwner, from_channel, from_nullable_channel
from playwright.helper import (
ContinueParameters,
Error,
Header,
RequestFailure,
locals_to_params,
)
if TYPE_CHECKING: # pragma: no cover
from playwright.frame import Frame
class Request(ChannelOwner):
def __init__(
self, parent: ChannelOwner, type: str, guid: str, initializer: Dict
) -> None:
super().__init__(parent, type, guid, initializer)
self._redirected_from: Optional["Request"] = from_nullable_channel(
initializer.get("redirectedFrom")
)
self._redirected_to: Optional["Request"] = None
if self._redirected_from:
self._redirected_from._redirected_to = self
self._failure_text: Optional[str] = None
@property
def url(self) -> str:
return self._initializer["url"]
@property
def resourceType(self) -> str:
return self._initializer["resourceType"]
@property
def method(self) -> str:
return self._initializer["method"]
@property
def postData(self) -> Optional[str]:
data = self.postDataBuffer
if not data:
return None
return data.decode()
@property
def postDataJSON(self) -> Optional[Dict]:
post_data = self.postData
if not post_data:
return None
content_type = self.headers["content-type"]
if not content_type:
return None
if content_type == "application/x-www-form-urlencoded":
return dict(parse.parse_qsl(post_data))
return json.loads(post_data)
@property
def postDataBuffer(self) -> Optional[bytes]:
b64_content = self._initializer.get("postData")
if not b64_content:
return None
return base64.b64decode(b64_content)
@property
def headers(self) -> Dict[str, str]:
return parse_headers(self._initializer["headers"])
async def response(self) -> Optional["Response"]:
return from_nullable_channel(await self._channel.send("response"))
@property
def frame(self) -> "Frame":
return from_channel(self._initializer["frame"])
def isNavigationRequest(self) -> bool:
return self._initializer["isNavigationRequest"]
@property
def redirectedFrom(self) -> Optional["Request"]:
return self._redirected_from
@property
def redirectedTo(self) -> Optional["Request"]:
return self._redirected_to
@property
def failure(self) -> Optional[RequestFailure]:
return {"errorText": self._failure_text} if self._failure_text else None
class Route(ChannelOwner):
def __init__(
self, parent: ChannelOwner, type: str, guid: str, initializer: Dict
) -> None:
super().__init__(parent, type, guid, initializer)
@property
def request(self) -> Request:
return from_channel(self._initializer["request"])
async def abort(self, errorCode: str = None) -> None:
await self._channel.send("abort", locals_to_params(locals()))
async def fulfill(
self,
status: int = None,
headers: Dict[str, str] = None,
body: Union[str, bytes] = None,
path: Union[str, Path] = None,
contentType: str = None,
) -> None:
params = locals_to_params(locals())
length = 0
if isinstance(body, str):
params["body"] = body
params["isBase64"] = False
length = len(body.encode())
elif isinstance(body, bytes):
params["body"] = base64.b64encode(body).decode()
params["isBase64"] = True
length = len(body)
elif path:
del params["path"]
file_content = Path(path).read_bytes()
params["body"] = base64.b64encode(file_content).decode()
params["isBase64"] = True
length = len(file_content)
headers = {k.lower(): str(v) for k, v in params.get("headers", {}).items()}
if params.get("contentType"):
headers["content-type"] = params["contentType"]
elif path:
headers["content-type"] = (
mimetypes.guess_type(str(Path(path)))[0] or "application/octet-stream"
)
if length and "content-length" not in headers:
headers["content-length"] = str(length)
params["headers"] = serialize_headers(headers)
await self._channel.send("fulfill", params)
async def continue_(
self,
method: str = None,
headers: Dict[str, str] = None,
postData: Union[str, bytes] = None,
) -> None:
overrides: ContinueParameters = {}
if method:
overrides["method"] = method
if headers:
overrides["headers"] = serialize_headers(headers)
if isinstance(postData, str):
overrides["postData"] = base64.b64encode(postData.encode()).decode()
elif isinstance(postData, bytes):
overrides["postData"] = base64.b64encode(postData).decode()
await self._channel.send("continue", cast(Any, overrides))
class Response(ChannelOwner):
def __init__(
self, parent: ChannelOwner, type: str, guid: str, initializer: Dict
) -> None:
super().__init__(parent, type, guid, initializer)
@property
def url(self) -> str:
return self._initializer["url"]
@property
def ok(self) -> bool:
return self._initializer["status"] == 0 or (
self._initializer["status"] >= 200 and self._initializer["status"] <= 299
)
@property
def status(self) -> int:
return self._initializer["status"]
@property
def statusText(self) -> str:
return self._initializer["statusText"]
@property
def headers(self) -> Dict[str, str]:
return parse_headers(self._initializer["headers"])
async def finished(self) -> Optional[Error]:
return await self._channel.send("finished")
async def body(self) -> bytes:
binary = await self._channel.send("body")
return base64.b64decode(binary)
async def text(self) -> str:
content = await self.body()
return content.decode()
async def json(self) -> Union[Dict, List]:
return json.loads(await self.text())
@property
def request(self) -> Request:
return from_channel(self._initializer["request"])
@property
def frame(self) -> "Frame":
return self.request.frame
def serialize_headers(headers: Dict[str, str]) -> List[Header]:
return [{"name": name, "value": value} for name, value in headers.items()]
def parse_headers(headers: List[Header]) -> Dict[str, str]:
return {header["name"].lower(): header["value"] for header in headers}