forked from chromedp/chromedp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
408 lines (343 loc) · 8.47 KB
/
util.go
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
package chromedp
import (
"context"
"encoding/json"
"net"
"net/http"
"net/url"
"strings"
"time"
"github.com/chromedp/cdproto"
"github.com/chromedp/cdproto/cdp"
)
// forceIP tries to force the host component in urlstr to be an IP address.
//
// Since Chrome 66+, Chrome DevTools Protocol clients connecting to a browser
// must send the "Host:" header as either an IP address, or "localhost".
// See https://github.com/chromium/chromium/commit/0e914b95f7cae6e8238e4e9075f248f801c686e6.
func forceIP(ctx context.Context, urlstr string) (string, error) {
u, err := url.Parse(urlstr)
if err != nil {
return "", err
}
host, port, err := net.SplitHostPort(u.Host)
if err != nil {
return "", err
}
host, err = resolveHost(ctx, host)
if err != nil {
return "", err
}
u.Host = net.JoinHostPort(host, port)
return u.String(), nil
}
// resolveHost tries to resolve a host to be an IP address. If the host is
// an IP address or "localhost", it returns the host directly.
func resolveHost(ctx context.Context, host string) (string, error) {
if host == "localhost" {
return host, nil
}
ip := net.ParseIP(host)
if ip != nil {
return host, nil
}
addrs, err := net.DefaultResolver.LookupIPAddr(ctx, host)
if err != nil {
return "", err
}
return addrs[0].IP.String(), nil
}
// modifyURL modifies the websocket debugger URL if the provided URL is not a
// valid websocket debugger URL.
//
// A websocket debugger URL containing "/devtools/browser/" are considered
// valid. In this case, urlstr will only be modified by forceIP.
//
// Otherwise, it will construct a URL like http://[host]:[port]/json/version
// and query the valid websocket debugger URL from this endpoint. The [host]
// and [port] are parsed from the urlstr. If the host component is not an IP,
// it will be resolved to an IP first. Example parameters:
// - ws://127.0.0.1:9222/
// - http://127.0.0.1:9222/
// - http://container-name:9222/
func modifyURL(ctx context.Context, urlstr string) (string, error) {
lctx, cancel := context.WithTimeout(ctx, 20*time.Second)
defer cancel()
if strings.Contains(urlstr, "/devtools/browser/") {
return forceIP(lctx, urlstr)
}
// replace the scheme and path to construct a URL like:
// http://127.0.0.1:9222/json/version
u, err := url.Parse(urlstr)
if err != nil {
return "", err
}
u.Scheme = "http"
host, port, err := net.SplitHostPort(u.Host)
if err != nil {
return "", err
}
host, err = resolveHost(ctx, host)
if err != nil {
return "", err
}
u.Host = net.JoinHostPort(host, port)
u.Path = "/json/version"
// to get "webSocketDebuggerUrl" in the response
req, err := http.NewRequestWithContext(lctx, "GET", u.String(), nil)
if err != nil {
return "", err
}
resp, err := http.DefaultClient.Do(req)
if err != nil {
return "", err
}
defer resp.Body.Close()
var result map[string]interface{}
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
return "", err
}
// the browser will construct the debugger URL using the "host" header of
// the /json/version request. For example, run headless-shell in a container:
// docker run -d -p 9000:9222 chromedp/headless-shell:latest
// then:
// curl http://127.0.0.1:9000/json/version
// and the websocket debugger URL will be something like:
// ws://127.0.0.1:9000/devtools/browser/...
wsURL := result["webSocketDebuggerUrl"].(string)
return wsURL, nil
}
func runListeners(list []cancelableListener, ev interface{}) []cancelableListener {
for i := 0; i < len(list); {
listener := list[i]
select {
case <-listener.ctx.Done():
list = append(list[:i], list[i+1:]...)
continue
default:
listener.fn(ev)
i++
}
}
return list
}
// frameOp is a frame manipulation operation.
type frameOp func(*cdp.Frame)
func frameAttached(id cdp.FrameID) frameOp {
return func(f *cdp.Frame) {
f.ParentID = id
setFrameState(f, cdp.FrameAttached)
}
}
func frameDetached(f *cdp.Frame) {
f.ParentID = cdp.EmptyFrameID
clearFrameState(f, cdp.FrameAttached)
}
func frameStartedLoading(f *cdp.Frame) {
setFrameState(f, cdp.FrameLoading)
}
func frameStoppedLoading(f *cdp.Frame) {
clearFrameState(f, cdp.FrameLoading)
}
// setFrameState sets the frame state via bitwise or (|).
func setFrameState(f *cdp.Frame, fs cdp.FrameState) {
f.State |= fs
}
// clearFrameState clears the frame state via bit clear (&^).
func clearFrameState(f *cdp.Frame, fs cdp.FrameState) {
f.State &^= fs
}
// nodeOp is a node manipulation operation.
type nodeOp func(*cdp.Node)
func walk(m map[cdp.NodeID]*cdp.Node, n *cdp.Node) {
n.RLock()
defer n.RUnlock()
m[n.NodeID] = n
for _, c := range n.Children {
c.Lock()
c.Parent = n
c.Invalidated = n.Invalidated
c.Unlock()
walk(m, c)
}
for _, c := range n.ShadowRoots {
c.Lock()
c.Parent = n
c.Invalidated = n.Invalidated
c.Unlock()
walk(m, c)
}
for _, c := range n.PseudoElements {
c.Lock()
c.Parent = n
c.Invalidated = n.Invalidated
c.Unlock()
walk(m, c)
}
for _, c := range []*cdp.Node{n.ContentDocument, n.TemplateContent} {
if c == nil {
continue
}
c.Lock()
c.Parent = n
c.Invalidated = n.Invalidated
c.Unlock()
walk(m, c)
}
}
func setChildNodes(m map[cdp.NodeID]*cdp.Node, nodes []*cdp.Node) nodeOp {
return func(n *cdp.Node) {
n.Lock()
n.Children = nodes
n.Unlock()
walk(m, n)
}
}
func attributeModified(name, value string) nodeOp {
return func(n *cdp.Node) {
n.Lock()
defer n.Unlock()
var found bool
var i int
for ; i < len(n.Attributes); i += 2 {
if n.Attributes[i] == name {
found = true
break
}
}
if found {
n.Attributes[i] = name
n.Attributes[i+1] = value
} else {
n.Attributes = append(n.Attributes, name, value)
}
}
}
func attributeRemoved(name string) nodeOp {
return func(n *cdp.Node) {
n.Lock()
defer n.Unlock()
var a []string
for i := 0; i < len(n.Attributes); i += 2 {
if n.Attributes[i] == name {
continue
}
a = append(a, n.Attributes[i], n.Attributes[i+1])
}
n.Attributes = a
}
}
func inlineStyleInvalidated(ids []cdp.NodeID) nodeOp {
return func(n *cdp.Node) {
}
}
func characterDataModified(characterData string) nodeOp {
return func(n *cdp.Node) {
n.Lock()
defer n.Unlock()
n.Value = characterData
}
}
func childNodeCountUpdated(count int64) nodeOp {
return func(n *cdp.Node) {
n.Lock()
defer n.Unlock()
n.ChildNodeCount = count
}
}
func childNodeInserted(m map[cdp.NodeID]*cdp.Node, prevID cdp.NodeID, c *cdp.Node) nodeOp {
return func(n *cdp.Node) {
n.Lock()
n.Children = insertNode(n.Children, prevID, c)
n.Unlock()
walk(m, n)
}
}
func childNodeRemoved(m map[cdp.NodeID]*cdp.Node, id cdp.NodeID) nodeOp {
return func(n *cdp.Node) {
n.Lock()
defer n.Unlock()
n.Children = removeNode(n.Children, id)
delete(m, id)
}
}
func shadowRootPushed(m map[cdp.NodeID]*cdp.Node, c *cdp.Node) nodeOp {
return func(n *cdp.Node) {
n.Lock()
n.ShadowRoots = append(n.ShadowRoots, c)
n.Unlock()
walk(m, n)
}
}
func shadowRootPopped(m map[cdp.NodeID]*cdp.Node, id cdp.NodeID) nodeOp {
return func(n *cdp.Node) {
n.Lock()
defer n.Unlock()
n.ShadowRoots = removeNode(n.ShadowRoots, id)
delete(m, id)
}
}
func pseudoElementAdded(m map[cdp.NodeID]*cdp.Node, c *cdp.Node) nodeOp {
return func(n *cdp.Node) {
n.Lock()
n.PseudoElements = append(n.PseudoElements, c)
n.Unlock()
walk(m, n)
}
}
func pseudoElementRemoved(m map[cdp.NodeID]*cdp.Node, id cdp.NodeID) nodeOp {
return func(n *cdp.Node) {
n.Lock()
defer n.Unlock()
n.PseudoElements = removeNode(n.PseudoElements, id)
delete(m, id)
}
}
func distributedNodesUpdated(nodes []*cdp.BackendNode) nodeOp {
return func(n *cdp.Node) {
n.Lock()
defer n.Unlock()
n.DistributedNodes = nodes
}
}
func insertNode(n []*cdp.Node, prevID cdp.NodeID, c *cdp.Node) []*cdp.Node {
var i int
var found bool
for ; i < len(n); i++ {
if n[i].NodeID == prevID {
found = true
break
}
}
if !found {
return append([]*cdp.Node{c}, n...)
}
i++
n = append(n, nil)
copy(n[i+1:], n[i:])
n[i] = c
return n
}
func removeNode(n []*cdp.Node, id cdp.NodeID) []*cdp.Node {
if len(n) == 0 {
return n
}
var found bool
var i int
for ; i < len(n); i++ {
if n[i].NodeID == id {
found = true
break
}
}
if !found {
return n
}
return append(n[:i], n[i+1:]...)
}
// isCouldNotComputeBoxModelError unwraps err as a MessageError and determines
// if it is a compute box model error.
func isCouldNotComputeBoxModelError(err error) bool {
e, ok := err.(*cdproto.Error)
return ok && e.Code == -32000 && e.Message == "Could not compute box model."
}