-
-
Notifications
You must be signed in to change notification settings - Fork 352
/
hijack.go
430 lines (354 loc) · 10.1 KB
/
hijack.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
package rod
import (
"bytes"
"context"
"io"
"net/http"
"net/url"
"regexp"
"strings"
"github.com/go-rod/rod/lib/proto"
"github.com/go-rod/rod/lib/utils"
"github.com/ysmood/gson"
)
// HijackRequests same as Page.HijackRequests, but can intercept requests of the entire browser.
func (b *Browser) HijackRequests() *HijackRouter {
return newHijackRouter(b, b).initEvents()
}
// HijackRequests creates a new router instance for requests hijacking.
// When use Fetch domain outside the router should be stopped. Enabling hijacking disables page caching,
// but such as 304 Not Modified will still work as expected.
// The entire process of hijacking one request:
//
// browser --req-> rod ---> server ---> rod --res-> browser
//
// The --req-> and --res-> are the parts that can be modified.
func (p *Page) HijackRequests() *HijackRouter {
return newHijackRouter(p.browser, p).initEvents()
}
// HijackRouter context.
type HijackRouter struct {
run func()
stop func()
handlers []*hijackHandler
enable *proto.FetchEnable
client proto.Client
browser *Browser
}
func newHijackRouter(browser *Browser, client proto.Client) *HijackRouter {
return &HijackRouter{
enable: &proto.FetchEnable{},
browser: browser,
client: client,
handlers: []*hijackHandler{},
}
}
func (r *HijackRouter) initEvents() *HijackRouter { //nolint: gocognit
ctx := r.browser.ctx
if cta, ok := r.client.(proto.Contextable); ok {
ctx = cta.GetContext()
}
var sessionID proto.TargetSessionID
if tsa, ok := r.client.(proto.Sessionable); ok {
sessionID = tsa.GetSessionID()
}
eventCtx, cancel := context.WithCancel(ctx)
r.stop = cancel
_ = r.enable.Call(r.client)
r.run = r.browser.Context(eventCtx).eachEvent(sessionID, func(e *proto.FetchRequestPaused) bool {
go func() {
ctx := r.new(eventCtx, e)
for _, h := range r.handlers {
if !h.regexp.MatchString(e.Request.URL) {
continue
}
h.handler(ctx)
if ctx.continueRequest != nil {
ctx.continueRequest.RequestID = e.RequestID
err := ctx.continueRequest.Call(r.client)
if err != nil {
ctx.OnError(err)
}
return
}
if ctx.Skip {
continue
}
if ctx.Response.fail.ErrorReason != "" {
err := ctx.Response.fail.Call(r.client)
if err != nil {
ctx.OnError(err)
}
return
}
err := ctx.Response.payload.Call(r.client)
if err != nil {
ctx.OnError(err)
return
}
}
}()
return false
})
return r
}
// Add a hijack handler to router, the doc of the pattern is the same as "proto.FetchRequestPattern.URLPattern".
func (r *HijackRouter) Add(pattern string, resourceType proto.NetworkResourceType, handler func(*Hijack)) error {
r.enable.Patterns = append(r.enable.Patterns, &proto.FetchRequestPattern{
URLPattern: pattern,
ResourceType: resourceType,
})
reg := regexp.MustCompile(proto.PatternToReg(pattern))
r.handlers = append(r.handlers, &hijackHandler{
pattern: pattern,
regexp: reg,
handler: handler,
})
return r.enable.Call(r.client)
}
// Remove handler via the pattern.
func (r *HijackRouter) Remove(pattern string) error {
patterns := []*proto.FetchRequestPattern{}
handlers := []*hijackHandler{}
for _, h := range r.handlers {
if h.pattern != pattern {
patterns = append(patterns, &proto.FetchRequestPattern{URLPattern: h.pattern})
handlers = append(handlers, h)
}
}
r.enable.Patterns = patterns
r.handlers = handlers
return r.enable.Call(r.client)
}
// new context.
func (r *HijackRouter) new(ctx context.Context, e *proto.FetchRequestPaused) *Hijack {
headers := http.Header{}
for k, v := range e.Request.Headers {
headers[k] = []string{v.String()}
}
u, _ := url.Parse(e.Request.URL)
req := &http.Request{
Method: e.Request.Method,
URL: u,
Body: io.NopCloser(strings.NewReader(e.Request.PostData)),
Header: headers,
}
return &Hijack{
Request: &HijackRequest{
event: e,
req: req.WithContext(ctx),
},
Response: &HijackResponse{
payload: &proto.FetchFulfillRequest{
ResponseCode: 200,
RequestID: e.RequestID,
},
fail: &proto.FetchFailRequest{
RequestID: e.RequestID,
},
},
OnError: func(_ error) {},
browser: r.browser,
}
}
// Run the router, after you call it, you shouldn't add new handler to it.
func (r *HijackRouter) Run() {
r.run()
}
// Stop the router.
func (r *HijackRouter) Stop() error {
r.stop()
return proto.FetchDisable{}.Call(r.client)
}
// hijackHandler to handle each request that match the regexp.
type hijackHandler struct {
pattern string
regexp *regexp.Regexp
handler func(*Hijack)
}
// Hijack context.
type Hijack struct {
Request *HijackRequest
Response *HijackResponse
OnError func(error)
// Skip to next handler
Skip bool
continueRequest *proto.FetchContinueRequest
// CustomState is used to store things for this context
CustomState interface{}
browser *Browser
}
// ContinueRequest without hijacking. The RequestID will be set by the router, you don't have to set it.
func (h *Hijack) ContinueRequest(cq *proto.FetchContinueRequest) {
h.continueRequest = cq
}
// LoadResponse will send request to the real destination and load the response as default response to override.
func (h *Hijack) LoadResponse(client *http.Client, loadBody bool) error {
res, err := client.Do(h.Request.req)
if err != nil {
return err
}
defer func() { _ = res.Body.Close() }()
h.Response.payload.ResponseCode = res.StatusCode
h.Response.RawResponse = res
for k, vs := range res.Header {
for _, v := range vs {
h.Response.SetHeader(k, v)
}
}
if loadBody {
b, err := io.ReadAll(res.Body)
if err != nil {
return err
}
h.Response.payload.Body = b
}
return nil
}
// HijackRequest context.
type HijackRequest struct {
event *proto.FetchRequestPaused
req *http.Request
}
// Type of the resource.
func (ctx *HijackRequest) Type() proto.NetworkResourceType {
return ctx.event.ResourceType
}
// Method of the request.
func (ctx *HijackRequest) Method() string {
return ctx.event.Request.Method
}
// URL of the request.
func (ctx *HijackRequest) URL() *url.URL {
u, _ := url.Parse(ctx.event.Request.URL)
return u
}
// Header via a key.
func (ctx *HijackRequest) Header(key string) string {
return ctx.event.Request.Headers[key].String()
}
// Headers of request.
func (ctx *HijackRequest) Headers() proto.NetworkHeaders {
return ctx.event.Request.Headers
}
// Body of the request, devtools API doesn't support binary data yet, only string can be captured.
func (ctx *HijackRequest) Body() string {
return ctx.event.Request.PostData
}
// JSONBody of the request.
func (ctx *HijackRequest) JSONBody() gson.JSON {
return gson.NewFrom(ctx.Body())
}
// Req returns the underlying http.Request instance that will be used to send the request.
func (ctx *HijackRequest) Req() *http.Request {
return ctx.req
}
// SetContext of the underlying http.Request instance.
func (ctx *HijackRequest) SetContext(c context.Context) *HijackRequest {
ctx.req = ctx.req.WithContext(c)
return ctx
}
// SetBody of the request, if obj is []byte or string, raw body will be used, else it will be encoded as json.
func (ctx *HijackRequest) SetBody(obj interface{}) *HijackRequest {
var b []byte
switch body := obj.(type) {
case []byte:
b = body
case string:
b = []byte(body)
default:
b = utils.MustToJSONBytes(body)
}
ctx.req.Body = io.NopCloser(bytes.NewBuffer(b))
return ctx
}
// IsNavigation determines whether the request is a navigation request.
func (ctx *HijackRequest) IsNavigation() bool {
return ctx.Type() == proto.NetworkResourceTypeDocument
}
// HijackResponse context.
type HijackResponse struct {
payload *proto.FetchFulfillRequest
RawResponse *http.Response
fail *proto.FetchFailRequest
}
// Payload to respond the request from the browser.
func (ctx *HijackResponse) Payload() *proto.FetchFulfillRequest {
return ctx.payload
}
// Body of the payload.
func (ctx *HijackResponse) Body() string {
return string(ctx.payload.Body)
}
// Headers returns the clone of response headers.
// If you want to modify the response headers use HijackResponse.SetHeader .
func (ctx *HijackResponse) Headers() http.Header {
header := http.Header{}
for _, h := range ctx.payload.ResponseHeaders {
header.Add(h.Name, h.Value)
}
return header
}
// SetHeader of the payload via key-value pairs.
func (ctx *HijackResponse) SetHeader(pairs ...string) *HijackResponse {
for i := 0; i < len(pairs); i += 2 {
ctx.payload.ResponseHeaders = append(ctx.payload.ResponseHeaders, &proto.FetchHeaderEntry{
Name: pairs[i],
Value: pairs[i+1],
})
}
return ctx
}
// SetBody of the payload, if obj is []byte or string, raw body will be used, else it will be encoded as json.
func (ctx *HijackResponse) SetBody(obj interface{}) *HijackResponse {
switch body := obj.(type) {
case []byte:
ctx.payload.Body = body
case string:
ctx.payload.Body = []byte(body)
default:
ctx.payload.Body = utils.MustToJSONBytes(body)
}
return ctx
}
// Fail request.
func (ctx *HijackResponse) Fail(reason proto.NetworkErrorReason) *HijackResponse {
ctx.fail.ErrorReason = reason
return ctx
}
// HandleAuth for the next basic HTTP authentication.
// It will prevent the popup that requires user to input user name and password.
// Ref: https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication
func (b *Browser) HandleAuth(username, password string) func() error {
enable := b.DisableDomain("", &proto.FetchEnable{})
disable := b.EnableDomain("", &proto.FetchEnable{
HandleAuthRequests: true,
})
paused := &proto.FetchRequestPaused{}
auth := &proto.FetchAuthRequired{}
ctx, cancel := context.WithCancel(b.ctx)
waitPaused := b.Context(ctx).WaitEvent(paused)
waitAuth := b.Context(ctx).WaitEvent(auth)
return func() (err error) {
defer enable()
defer disable()
defer cancel()
waitPaused()
err = proto.FetchContinueRequest{
RequestID: paused.RequestID,
}.Call(b)
if err != nil {
return
}
waitAuth()
err = proto.FetchContinueWithAuth{
RequestID: auth.RequestID,
AuthChallengeResponse: &proto.FetchAuthChallengeResponse{
Response: proto.FetchAuthChallengeResponseResponseProvideCredentials,
Username: username,
Password: password,
},
}.Call(b)
return
}
}