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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
let src = Logs.Src.create "httpcats"
module Log = (val Logs.src_log src : Logs.LOG)
module Flow = Flow
module Miou_flow = Http_miou_unix
module Runtime = Runtime
module Client = Http_miou_client
module Server = Http_miou_server
module Version = H1.Version
module Status = H2.Status
module Method = H2.Method
module Cookie = Cookie
let ( % ) f g x = f (g x)
let open_client_error = function
| Ok _ as v -> v
| Error #Client.error as err -> err
let error_msgf fmt = Fmt.kstr (fun msg -> Error (`Msg msg)) fmt
let open_error_msg = function Ok _ as v -> v | Error (`Msg _) as v -> v
let decode_host_port str =
match String.split_on_char ':' str with
| [] -> Error (`Msg "Empty host part")
| [ host ] -> Ok (host, None)
| [ host; "" ] -> Ok (host, None)
| hd :: tl -> (
let port, host =
match List.rev (hd :: tl) with
| hd :: tl -> (hd, String.concat ":" (List.rev tl))
| _ -> assert false
in
try Ok (host, Some (int_of_string port))
with _ -> Error (`Msg "Couln't decode port"))
let decode_user_pass up =
match String.split_on_char ':' up with
| [ user; pass ] -> Ok (user, Some pass)
| [ user ] -> Ok (user, None)
| _ -> assert false
type uri =
bool * string * (string * string option) option * string * int option * string
let decode_uri uri =
let ( >>= ) = Result.bind in
match String.split_on_char '/' uri with
| proto :: "" :: user_pass_host_port :: path ->
(if String.equal proto "http:" then Ok ("http", false)
else if String.equal proto "https:" then Ok ("https", true)
else Error (`Msg "Unknown protocol"))
>>= fun (scheme, is_tls) ->
(match String.split_on_char '@' user_pass_host_port with
| [ host_port ] -> Ok (None, host_port)
| [ user_pass; host_port ] ->
decode_user_pass user_pass >>= fun up -> Ok (Some up, host_port)
| _ -> Error (`Msg "Couldn't decode URI"))
>>= fun (user_pass, host_port) ->
decode_host_port host_port >>= fun (host, port) ->
Ok (is_tls, scheme, user_pass, host, port, "/" ^ String.concat "/" path)
| [ user_pass_host_port ] ->
(match String.split_on_char '@' user_pass_host_port with
| [ host_port ] -> Ok (None, host_port)
| [ user_pass; host_port ] ->
decode_user_pass user_pass >>= fun up -> Ok (Some up, host_port)
| _ -> Error (`Msg "Couldn't decode URI"))
>>= fun (user_pass, host_port) ->
decode_host_port host_port >>= fun (host, port) ->
Ok (false, "", user_pass, host, port, "/")
| user_pass_host_port :: path ->
(match String.split_on_char '@' user_pass_host_port with
| [ host_port ] -> Ok (None, host_port)
| [ user_pass; host_port ] ->
decode_user_pass user_pass >>= fun up -> Ok (Some up, host_port)
| _ -> Error (`Msg "Couldn't decode URI"))
>>= fun (user_pass, host_port) ->
decode_host_port host_port >>= fun (host, port) ->
Ok (false, "", user_pass, host, port, "/" ^ String.concat "/" path)
| _ -> Error (`Msg "Could't decode URI on top")
let resolve_location ~uri ~location =
Log.debug (fun m -> m "resolve location: uri:%S, location:%S" uri location);
match String.split_on_char '/' location with
| "http:" :: "" :: _ -> Ok location
| "https:" :: "" :: _ -> Ok location
| "" :: "" :: _ -> begin
match String.split_on_char '/' uri with
| schema :: "" :: user_pass_host_port :: _ ->
Ok (String.concat "/" [ schema; ""; user_pass_host_port ^ location ])
| _ -> error_msgf "Expected an absolute uri, got: %S" uri
end
| _ -> error_msgf "Unknown location (relative path): %S" location
let add_authentication ?(meth = `Basic) ~add user_pass =
match (user_pass, meth) with
| None, _ -> headers
| Some (user, Some pass), `Basic ->
let data = Base64.encode_string (user ^ ":" ^ pass) in
let str = "Basic " ^ data in
add headers "authorization" str
| Some (user, None), `Basic ->
let data = Base64.encode_string user in
let str = "Basic " ^ data in
add headers "authorization" str
let user_agent = "hurl/0.1.0"
type request = { meth: Method.t; target: string; headers: Headers.t }
type response = {
version: Version.t
; status: Status.t
; reason: string
; headers: Headers.t
}
let pp_response ppf resp =
Fmt.pf ppf
"@[<hov>{ version=@ %a;@ status=@ %s;@ reason=@ %S;@ headers=@ @[<hov>%a@] \
}@]"
Version.pp_hum resp.version
(Status.to_string resp.status)
resp.reason Headers.pp_hum resp.headers
type error =
[ `V1 of H1.Client_connection.error
| `V2 of H2.Client_connection.error
| `Protocol of string
| `Msg of string
| `Exn of exn ]
let pp_error ppf = function
| `Msg msg -> Fmt.string ppf msg
| #Client.error as err -> Client.pp_error ppf err
type body = String of string | Stream of string Seq.t
type meta = (Ipaddr.t * int) * Tls.Core.epoch_data option
type 'a handler = meta -> request -> response -> 'a -> string option -> 'a
type config = {
meth: H2.Method.t
; headers: (string * string) list
; body: body option
; scheme: string
; user_pass: (string * string option) option
; host: string
; path: string
; ipaddr: Ipaddr.t
; port: int
; epoch: Tls.Core.epoch_data option
}
let cfg body =
let hdr = H1.Headers.of_list cfg.headers in
let add = H1.Headers.add_unless_exists in
let hdr = add hdr "user-agent" user_agent in
let hdr = add hdr "host" cfg.host in
let hdr =
match body with
| Some (Some len) ->
let hdr = add hdr "connection" "close" in
add hdr "content-length" (string_of_int len)
| Some None -> add hdr "transfer-encoding" "chunked"
| None ->
let hdr = add hdr "connection" "close" in
add hdr "content-length" "0"
in
add_authentication ~add hdr cfg.user_pass
let cfg body =
let fn (k, v) = (String.lowercase_ascii k, v) in
let hdr = List.rev_map fn cfg.headers in
let hdr = H2.Headers.of_rev_list hdr in
let hdr, authority =
match (H2.Headers.get hdr "host", H2.Headers.get hdr ":authority") with
| None, None -> (hdr, cfg.host)
| Some h, None -> (H2.Headers.remove hdr "host", h)
| None, Some a -> (H2.Headers.remove hdr ":authority", a)
| Some h, Some a ->
if String.equal h a then
let hdr = H2.Headers.remove hdr ":authority" in
let hdr = H2.Headers.remove hdr "host" in
(hdr, h)
else (H2.Headers.remove hdr ":authority", a)
in
let add hdr = H2.Headers.add_unless_exists hdr ?sensitive:None in
let hdr = H2.Headers.add_list H2.Headers.empty (H2.Headers.to_rev_list hdr) in
let hdr =
match body with
| Some (Some len) -> add hdr "content-length" (string_of_int len)
| Some None -> add hdr "transfer-encoding" "chunked"
| None -> add hdr "content-length" "0"
in
let hdr = add hdr ":authority" authority in
let hdr = add hdr "user-agent" user_agent in
let hdr = add_authentication ~add hdr cfg.user_pass in
let hdr = H2.Headers.to_list hdr in
let hdr = List.sort (fun (a, _) (b, _) -> String.compare a b) hdr in
H2.Headers.of_list hdr
let resp_from_h1 response =
{
version= response.H1.Response.version
; status= (response.H1.Response.status :> H2.Status.t)
; reason= response.H1.Response.reason
; headers=
H2.Headers.of_list (H1.Headers.to_list response.H1.Response.headers)
}
let req_from_h1 req =
{
meth= req.H1.Request.meth
; target= req.H1.Request.target
; headers= H2.Headers.of_list (H1.Headers.to_list req.H1.Request.headers)
}
let resp_from_h2 response =
{
version= { major= 2; minor= 0 }
; status= response.H2.Response.status
; reason= H2.Status.to_string response.H2.Response.status
; headers= response.H2.Response.headers
}
let req_from_h2 req =
{
meth= req.H2.Request.meth
; target= req.H2.Request.target
; headers= req.H2.Request.headers
}
let _is_a_valid_redirection resp ~uri =
if Status.is_redirection resp.status then
match Headers.get resp.headers "location" with
| Some location ->
let uri = resolve_location ~uri ~location in
Result.is_ok uri
| None -> false
else false
let http_1_1_writer body seq () =
let rec next seq =
match Seq.uncons seq with
| None -> H1.Body.Writer.close body
| Some (str, seq) ->
H1.Body.Writer.write_string body str;
H1.Body.Writer.flush body (fun () -> next seq)
in
next seq
let[@warning "-8"] single_http_1_1_request ?(config = H1.Config.default) flow
cfg ~fn acc =
let contents_length =
match cfg.body with
| Some (String str) -> Some (Some (String.length str))
| Some (Stream _) -> Some None
| None -> None
in
let = prep_http_1_1_headers cfg contents_length in
let meth = cfg.meth and path = cfg.path in
let request = H1.Request.create ~headers meth path in
let meta = ((cfg.ipaddr, cfg.port), cfg.epoch) in
let f (`V1 resp : Client.response) acc str =
fn meta (req_from_h1 request) (resp_from_h1 resp) acc (Some str)
in
let finally () =
Log.debug (fun m -> m "close the underlying socket");
match flow with
| `Tls flow -> Tls_miou_unix.close flow
| `Tcp flow -> Http_miou_unix.TCP.close flow
in
Fun.protect ~finally @@ fun () ->
let (Client.Process { version= V1; acc; response; body; process; _ }) =
Client.run ~f acc (`V1 config) flow (`V1 request)
in
let seq =
match cfg.body with
| Some (String str) -> Seq.return str
| Some (Stream seq) -> seq
| None -> Seq.empty
in
let sender = Miou.async (http_1_1_writer body seq) in
let on_error exn =
Log.debug (fun m -> m "cancel http/1.1 tasks");
Miou.cancel process;
Miou.cancel sender;
match exn with Client.Error err -> err | exn -> `Exn exn
in
let ( let* ) = Result.bind in
let resp = Miou.Computation.await response in
let* resp = Result.map_error (on_error % fst) resp in
let* () = Result.map_error on_error (Miou.await sender) in
let* () = Result.map_error on_error (Miou.await process) in
let req = req_from_h1 request in
let resp = resp_from_h1 resp in
Ok (resp, fn meta req resp !acc None)
let h2_writer body seq () =
let rec next seq reason =
match reason with
| `Closed -> H2.Body.Writer.close body
| `Written -> begin
match Seq.uncons seq with
| None -> H2.Body.Writer.close body
| Some (str, seq) ->
H2.Body.Writer.write_string body str;
H2.Body.Writer.flush body (fun reason -> next seq reason)
end
in
next seq `Written
let[@warning "-8"] single_h2_request ?(config = H2.Config.default) flow cfg ~fn
acc =
let contents_length =
match cfg.body with
| Some (String str) -> Some (Some (String.length str))
| Some (Stream _) -> Some None
| None -> None
in
let = prep_h2_headers cfg contents_length in
let scheme = cfg.scheme and meth = cfg.meth and path = cfg.path in
let request = H2.Request.create ~scheme ~headers meth path in
let meta = ((cfg.ipaddr, cfg.port), cfg.epoch) in
let f (`V2 response : Client.response) acc str =
fn meta (req_from_h2 request) (resp_from_h2 response) acc (Some str)
in
let (Client.Process { version= V2; acc; response; body; process; _ }) =
Client.run ~f acc (`V2 config) flow (`V2 request)
in
let seq =
match cfg.body with
| Some (String str) -> Seq.return str
| Some (Stream seq) -> seq
| None -> Seq.empty
in
let sender = Miou.async (h2_writer body seq) in
let on_error exn =
Log.debug (fun m -> m "cancel h2 tasks");
Miou.cancel process;
Miou.cancel sender;
match exn with Client.Error err -> err | exn -> `Exn exn
in
let ( let* ) = Result.bind in
let resp = Miou.Computation.await response in
let* resp = Result.map_error (on_error % fst) resp in
let* () = Result.map_error on_error (Miou.await sender) in
let* () = Result.map_error on_error (Miou.await process) in
let req = req_from_h2 request in
let resp = resp_from_h2 resp in
Ok (resp, fn meta req resp !acc None)
let alpn_protocol = function
| `Tcp _ -> None
| `Tls tls -> (
match Tls_miou_unix.epoch tls with
| Some { Tls.Core.alpn_protocol= Some "h2"; _ } -> Some `H2
| Some { Tls.Core.alpn_protocol= Some "http/1.1"; _ } -> Some `HTTP_1_1
| Some { Tls.Core.alpn_protocol= None; _ } -> None
| Some { Tls.Core.alpn_protocol= Some _; _ } -> None
| None -> None)
type socket =
[ `Tcp of Miou_unix.file_descr | `Tls of Tls_miou_unix.t ]
* Ipaddr.t
* int
* Tls.Core.epoch_data option
type resolver =
?port:int
-> ?tls_config:Tls.Config.client
-> string
-> (socket, [ `Msg of string ]) result
let connect_system ?port ?tls_config host =
let port =
match (port, tls_config) with
| None, None -> 80
| None, Some _ -> 443
| Some port, _ -> port
in
Log.debug (fun m -> m "try to connect to %s (with system)" host);
match Unix.gethostbyname host with
| exception Unix.Unix_error (err, f, v) ->
error_msgf "%s(%s): %s" f v (Unix.error_message err)
| { Unix.h_addr_list= [||]; _ } -> error_msgf "Impossible to resolve %s" host
| { Unix.h_addr_list; _ } -> (
let addr = Unix.ADDR_INET (h_addr_list.(0), port) in
let socket =
if Unix.is_inet6_addr h_addr_list.(0) then Miou_unix.tcpv6 ()
else Miou_unix.tcpv4 ()
in
let timeout = Miou.async @@ fun () -> Miou_unix.sleep 5.0; `Timeout in
let connect =
Miou.async @@ fun () ->
Miou_unix.connect socket addr;
`Connected
in
match Miou.await_first [ timeout; connect ] with
| Error exn ->
Miou_unix.close socket;
error_msgf "Got an unexpected exception while connecting: %s"
(Printexc.to_string exn)
| Ok `Timeout ->
Miou_unix.close socket;
error_msgf "Connection to %s (via %s:%d) timeout" host
(Unix.string_of_inet_addr h_addr_list.(0))
port
| Ok `Connected -> begin
let ipaddr = Ipaddr_unix.of_inet_addr h_addr_list.(0) in
match tls_config with
| Some tls_config ->
let tls = Tls_miou_unix.client_of_fd tls_config socket in
let epoch = Tls_miou_unix.epoch tls in
Ok (`Tls tls, ipaddr, port, epoch)
| None -> Ok (`Tcp socket, ipaddr, port, None)
end)
let connect_happy_eyeballs ?port ?tls_config ~happy_eyeballs host =
let port =
match (port, tls_config) with
| None, None -> 80
| None, Some _ -> 443
| Some port, _ -> port
in
Log.debug (fun m -> m "try to connect to %s (with happy-eyeballs)" host);
match
(Happy_eyeballs_miou_unix.connect happy_eyeballs host [ port ], tls_config)
with
| Ok ((ipaddr, port), file_descr), None ->
Ok (`Tcp file_descr, ipaddr, port, None)
| Ok ((ipaddr, port), file_descr), Some tls_config ->
let tls = Tls_miou_unix.client_of_fd tls_config file_descr in
let epoch = Tls_miou_unix.epoch tls in
Ok (`Tls tls, ipaddr, port, epoch)
| (Error (`Msg _) as err), _ -> err
type config_for_a_request = {
resolver:
[ `Happy of Happy_eyeballs_miou_unix.t | `User of resolver | `System ]
; http_config: [ `HTTP_1_1 of H1.Config.t | `H2 of H2.Config.t ] option
; tls_config: (tls_config, error) result
; meth: H2.Method.t
; headers: (string * string) list
; body: body option
; uri: string
; cookies: (string * string) list
}
and tls_config = [ `Custom of Tls.Config.client | `Default of Tls.Config.client ]
let single_request cfg ~fn acc =
let ( let* ) = Result.bind in
let ( let+ ) x f = Result.map f x in
let* tls, scheme, user_pass, host, port, path = decode_uri cfg.uri in
let* tls_config =
if tls then
let+ tls_config = cfg.tls_config in
let host =
let* domain_name = Domain_name.of_string host in
Domain_name.host domain_name
in
match (tls_config, host) with
| `Custom cfg, _ -> Some cfg
| `Default cfg, Ok host -> Some (Tls.Config.peer cfg host)
| `Default cfg, _ -> Some cfg
else Ok None
in
let* flow, ipaddr, port, epoch =
match cfg.resolver with
| `Happy happy_eyeballs ->
connect_happy_eyeballs ?port ?tls_config ~happy_eyeballs host
|> open_error_msg
| `User connect -> connect ?port ?tls_config host |> open_error_msg
| `System -> connect_system ?port ?tls_config host |> open_error_msg
in
Log.debug (fun m -> m "connected to %s" cfg.uri);
let to_cookie (k, v) = ("Cookie", Fmt.str "%s=%s" k v) in
let cookies = List.map to_cookie cfg.cookies in
let = cfg.headers @ cookies in
let cfg' =
{
meth= cfg.meth
; headers
; body= cfg.body
; scheme
; user_pass
; host
; path
; ipaddr
; port
; epoch
}
in
begin
match (alpn_protocol flow, cfg.http_config) with
| (Some `HTTP_1_1 | None), Some (`HTTP_1_1 config) ->
single_http_1_1_request ~config flow cfg' ~fn acc
| (Some `HTTP_1_1 | None), None -> single_http_1_1_request flow cfg' ~fn acc
| Some `H2, Some (`H2 config) -> single_h2_request ~config flow cfg' ~fn acc
| None, Some (`H2 _) ->
Log.warn (fun m ->
m "no ALPN protocol (choose http/1.1) where user forces h2");
single_http_1_1_request flow cfg' ~fn acc
| Some `H2, None -> single_h2_request flow cfg' ~fn acc
| Some `H2, Some (`HTTP_1_1 _) ->
Log.warn (fun m -> m "ALPN protocol is h2 where user forces http/1.1");
single_h2_request flow cfg' ~fn acc
| Some `HTTP_1_1, Some (`H2 _) ->
Log.warn (fun m -> m "ALPN protocol is http/1.1 where user forces h2");
single_http_1_1_request flow cfg' ~fn acc
end
|> open_client_error
let string str = String str
let stream seq = Stream seq
let memoize = function
| String _ as body -> body
| Stream seq -> Stream (Seq.memoize seq)
let =
let parse str =
match String.split_on_char '=' str with
| [ key; value ] -> Some (key, value)
| _ -> None
in
let rec go acc = function
| [] -> List.rev acc
| (key, value) :: -> (
match String.lowercase_ascii key with
| "cookie" ->
let acc =
match parse value with
| Some (key, value) -> (key, value) :: acc
| None -> acc
in
go acc headers
| _ -> go acc headers)
in
go [] headers
let =
let rec go acc = function
| [] -> List.rev acc
| (key, value) :: rest -> (
match String.lowercase_ascii key with
| "cookie" -> go acc rest
| _ -> go ((key, value) :: acc) rest)
in
go [] headers
let get_cookies_from_response (resp : response) =
let = Headers.to_list resp.headers in
let rec go acc = function
| [] -> acc
| (key, value) :: -> (
match String.lowercase_ascii key with
| "set-cookie" ->
let acc =
match Cookie.parse value with
| Some cookie -> cookie :: acc
| None -> acc
in
go acc headers
| _ -> go acc headers)
in
go [] headers
let accept_all_cookies db cookies =
let db' = List.map (fun { Cookie.key; value; _ } -> (key, value)) cookies in
let rec go db' = function
| [] -> db'
| (key, value) :: rest ->
if List.mem_assoc key db' then go db' rest
else go ((key, value) :: db') rest
in
go db' db
let meth_from_redirection meth (resp : response) =
match (meth, resp.status) with
| _, (`See_other | `Found) -> `GET
| meth, _ -> meth
type filter =
(string * string) list -> Cookie.cookie list -> (string * string) list
let request ?config:http_config ?tls_config ?authenticator ?(meth = `GET)
?( = []) ?body ?(max_redirect = 5) ?(follow_redirect = true)
?(resolver = `System) ?cookies:(filter = accept_all_cookies) ~fn ~uri acc =
let tls_config =
match tls_config with
| Some cfg -> Ok (`Custom cfg)
| None ->
let alpn_protocols =
match http_config with
| None -> [ "h2"; "http/1.1" ]
| Some (`H2 _) -> [ "h2" ]
| Some (`HTTP_1_1 _) -> [ "http/1.1" ]
and authenticator =
match authenticator with
| None -> Ca_certs.authenticator ()
| Some authenticator -> Ok authenticator
in
Result.map
begin
fun authenticator ->
Tls.Config.client ~alpn_protocols ~authenticator ()
|> Result.get_ok
|> fun default -> `Default default
end
authenticator
in
let cfg =
{
resolver
; http_config
; tls_config
; meth
; headers= headers_without_cookies headers
; body= Option.map memoize body
; uri
; cookies= cookies_from_headers headers
}
in
if not follow_redirect then single_request cfg ~fn acc
else
let ( let* ) = Result.bind in
let rec go count cfg =
if count = 0 then Error (`Msg "Redirect limit exceeded")
else
match single_request cfg ~fn acc with
| Error _ as err -> err
| Ok (resp, result) ->
let cookies = filter cfg.cookies (get_cookies_from_response resp) in
if Status.is_redirection resp.status then
match Headers.get resp.headers "location" with
| Some location ->
let meth = meth_from_redirection cfg.meth resp in
let* uri = resolve_location ~uri ~location in
go (pred count) { cfg with meth; uri; cookies }
| None -> Ok (resp, result)
else Ok (resp, result)
in
go max_redirect cfg
let[@inline always] open_error = function
| Ok _ as v -> v
| Error #error as err -> err
let[@inline always] request ?config ?tls_config ?authenticator ?(meth = `GET)
?( = []) ?body ?(max_redirect = 5) ?(follow_redirect = true)
?(resolver = `System) ?cookies ~fn ~uri acc =
request ?config ?tls_config ?authenticator ~meth ~headers ?body ~max_redirect
~follow_redirect ~resolver ?cookies ~fn ~uri acc
|> open_error
let ?config:(version = `HTTP_1_1 H1.Config.default) ~meth ~uri
?body =
let ( let+ ) x f = Result.map f x in
let+ tls, scheme, user_pass, host, port, path = decode_uri uri in
let ipaddr = Ipaddr.of_string_exn "0.0.0.0" in
let port =
match port with Some port -> port | None -> if tls then 443 else 80
in
let epoch = None in
let cfg =
{ headers; meth; body; scheme; user_pass; host; path; ipaddr; port; epoch }
in
let contents_length =
match body with
| Some (String str) -> Some (Some (String.length str))
| Some (Stream _) -> Some None
| None -> None
in
match version with
| `HTTP_1_1 _ ->
H1.Headers.to_list (prep_http_1_1_headers cfg contents_length)
| `H2 _ -> H2.Headers.to_list (prep_h2_headers cfg contents_length)