-
Notifications
You must be signed in to change notification settings - Fork 21
/
piaf.mli
982 lines (827 loc) · 27.8 KB
/
piaf.mli
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
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
(*----------------------------------------------------------------------------
* Copyright (c) 2019-2020, António Nuno Monteiro
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*---------------------------------------------------------------------------*)
module IOVec : sig
type 'a t = 'a Faraday.iovec =
{ buffer : 'a
; off : int
; len : int
}
val make : 'a -> off:int -> len:int -> 'a t
val length : _ t -> int
val lengthv : _ t list -> int
val shift : 'a t -> int -> 'a t
val shiftv : 'a t list -> int -> 'a t list
val of_string : string -> off:int -> len:int -> Bigstringaf.t t
val of_bytes : bytes -> off:int -> len:int -> Bigstringaf.t t
val pp_hum : Format.formatter -> _ t -> unit [@@ocaml.toplevel_printer]
end
module Method : module type of Method
module Headers : sig
type t
(** The type of a group of header fields. *)
type name = string
(** The type of a lowercase header name. *)
type value = string
(** The type of a header value. *)
(** {3 Constructor} *)
val empty : t
(** [empty] is the empty collection of header fields. *)
val of_list : (name * value) list -> t
(** [of_list assoc] is a collection of header fields defined by the
association list [assoc]. [of_list] assumes the order of header fields in
[assoc] is the intended transmission order. The following equations should
hold:
- [to_list (of_list lst) = lst]
- [get (of_list [("k", "v1"); ("k", "v2")]) "k" = Some "v2"]. *)
val of_rev_list : (name * value) list -> t
(** [of_list assoc] is a collection of header fields defined by the
association list [assoc]. [of_list] assumes the order of header fields in
[assoc] is the {i reverse} of the intended trasmission order. The
following equations should hold:
- [to_list (of_rev_list lst) = List.rev lst]
- [get (of_rev_list [("k", "v1"); ("k", "v2")]) "k" = Some "v1"]. *)
val to_list : t -> (name * value) list
(** [to_list t] is the association list of header fields contained in [t] in
transmission order. *)
val to_rev_list : t -> (name * value) list
(** [to_rev_list t] is the association list of header fields contained in [t]
in {i reverse} transmission order. *)
val add : t -> ?sensitive:bool -> name -> value -> t
(** [add t ?sensitive name value] is a collection of header fields that is the
same as [t] except with [(name, value)] added at the end of the
trasmission order. Additionally, [sensitive] specifies whether this header
field should not be compressed by HPACK and instead encoded as a
never-indexed literal (see
{{:https://tools.ietf.org/html/rfc7541#section-7.1.3} RFC7541§7.1.3} for
more details).
The following equations should hold:
- [get (add t name value) name = Some value] *)
val add_unless_exists : t -> ?sensitive:bool -> name -> value -> t
(** [add_unless_exists t ?sensitive name value] is a collection of header
fields that is the same as [t] if [t] already inclues [name], and
otherwise is equivalent to [add t ?sensitive name value]. *)
val add_list : t -> (name * value) list -> t
(** [add_list t assoc] is a collection of header fields that is the same as
[t] except with all the header fields in [assoc] added to the end of the
transmission order, in reverse order. *)
val add_multi : t -> (name * value list) list -> t
(** [add_multi t assoc] is the same as
{[
add_list
t
(List.concat_map assoc ~f:(fun (name, values) ->
List.map values ~f:(fun value -> name, value)))
]}
but is implemented more efficiently. For example,
{[
add_multi t [ "name1", [ "x", "y" ]; "name2", [ "p", "q" ] ]
= add_list [ "name1", "x"; "name1", "y"; "name2", "p"; "name2", "q" ]
]} *)
val remove : t -> name -> t
(** [remove t name] is a collection of header fields that contains all the
header fields of [t] except those that have a header-field name that are
equal to [name]. If [t] contains multiple header fields whose name is
[name], they will all be removed. *)
val replace : t -> ?sensitive:bool -> name -> value -> t
(** [replace t ?sensitive name value] is a collection of header fields that is
the same as [t] except with all header fields with a name equal to [name]
removed and replaced with a single header field whose name is [name] and
whose value is [value]. This new header field will appear in the
transmission order where the first occurrence of a header field with a
name matching [name] was found.
If no header field with a name equal to [name] is present in [t], then the
result is simply [t], unchanged. *)
(** {3 Destructors} *)
val mem : t -> name -> bool
(** [mem t name] is [true] iff [t] includes a header field with a name that is
equal to [name]. *)
val get : t -> name -> value option
(** [get t name] returns the last header from [t] with name [name], or [None]
if no such header is present. *)
val get_exn : t -> name -> value
(** [get t name] returns the last header from [t] with name [name], or raises
if no such header is present. *)
val get_multi : t -> name -> value list
(** [get_multi t name] is the list of header values in [t] whose names are
equal to [name]. The returned list is in transmission order. *)
(** {3 Iteration} *)
val iter : f:(name -> value -> unit) -> t -> unit
val fold : f:(name -> value -> 'a -> 'a) -> init:'a -> t -> 'a
(** {3 Utilities} *)
val to_string : t -> string
val pp_hum : Format.formatter -> t -> unit
module Well_known : sig
module HTTP1 : sig
val host : string
end
module HTTP2 : sig
val host : string
end
val authorization : string
val connection : string
val content_length : string
val content_type : string
val location : string
val upgrade : string
val transfer_encoding : string
module Values : sig
val close : string
end
end
end
module Scheme : sig
type http = [ `HTTP ]
type https = [ `HTTPS ]
type t =
[ http
| https
]
val of_uri : Uri.t -> (t, [ `Msg of string ]) result
val to_string : t -> string
val pp_hum : Format.formatter -> t -> unit [@@ocaml.toplevel_printer]
end
module Status : module type of Status
module Versions : sig
module HTTP : sig
type t =
| HTTP_1_0
| HTTP_1_1
| HTTP_2
type http_version := t
val pp : Format.formatter -> t -> unit
module Raw : sig
include module type of struct
include Httpun.Version
end
val v1_0 : t
val v1_1 : t
val v2_0 : t
val to_version : t -> http_version option
val to_version_exn : t -> http_version
val of_version : http_version -> t
end
end
module TLS : sig
type t =
| Any
| SSLv3
| TLSv1_0
| TLSv1_1
| TLSv1_2
| TLSv1_3
val compare : t -> t -> int
val of_string : string -> (t, string) result
val pp_hum : Format.formatter -> t -> unit [@@ocaml.toplevel_printer]
end
module ALPN : sig
val of_string : string -> HTTP.t option
val to_string : HTTP.t -> string
end
end
module Cert : sig
type t =
| Filepath of string
| Certpem of string
val pp : Format.formatter -> t -> unit
end
module Config : sig
type t =
{ follow_redirects : bool (** whether to follow redirects *)
; max_redirects : int
(** max redirects to follow. Could probably be rolled up into one option *)
; allow_insecure : bool
(** Wether to allow insecure server connections when using SSL *)
; max_http_version : Versions.HTTP.t
(** Use this as the highest HTTP version when sending requests *)
; h2c_upgrade : bool
(** Send an upgrade to `h2c` (HTTP/2 over TCP) request to the server.
`http2_prior_knowledge` below ignores this option. *)
; http2_prior_knowledge : bool
(** Assume HTTP/2 prior knowledge -- don't use HTTP/1.1 Upgrade when
communicating with "http" URIs, default to HTTP/2.0 when we can't agree
to an ALPN protocol and communicating with "https" URIs. *)
; cacert : Cert.t option
(** The path to a CA certificates file in PEM format *)
; capath : string option
(** The path to a directory which contains CA certificates in PEM format *)
; clientcert : (Cert.t * Cert.t) option
(** Client certificate in PEM format *)
; min_tls_version : Versions.TLS.t
; max_tls_version : Versions.TLS.t
; tcp_nodelay : bool
; connect_timeout : float (* in seconds *)
; (* Buffer sizes *)
buffer_size : int
(** Buffer size used for requests and responses. Defaults to 16384 bytes *)
; body_buffer_size : int
(** Buffer size used for request and response bodies. *)
; enable_http2_server_push : bool
; default_headers : (Headers.name * Headers.value) list
(** Set default headers (on the client) to be sent on every request. *)
; flush_headers_immediately : bool
(** Specifies whether to flush message headers to the transport immediately,
or if Piaf should wait for the first body bytes to be written. Defaults
to [false]. *)
; prefer_ip_version : [ `V4 | `V6 | `Both ]
(** Specify IP version preference *)
}
val default : t
end
module Error : sig
type common =
[ `Exn of exn
| `Protocol_error of H2.Error_code.t * string
| `TLS_error of Ssl.Error.t
| `Upgrade_not_supported
| `Msg of string
]
type client =
[ `Invalid_response_body_length of H2.Status.t * Headers.t
| `Malformed_response of string
| `Connect_error of string
| common
]
type server =
[ `Bad_gateway
| `Bad_request
| `Internal_server_error
| common
]
type t =
[ common
| client
| server
]
val to_string : t -> string
val pp_hum : Format.formatter -> t -> unit [@@ocaml.toplevel_printer]
end
module Stream = Piaf_stream
module Body : sig
type t
type length =
[ `Fixed of Int64.t
| `Chunked
| `Error of [ `Bad_request | `Bad_gateway | `Internal_server_error ]
| `Unknown
| `Close_delimited
]
val length : t -> length
val empty : t
val of_stream : ?length:length -> Bigstringaf.t IOVec.t Stream.t -> t
val of_string_stream : ?length:length -> string Stream.t -> t
val of_string : string -> t
val of_bigstring : ?off:int -> ?len:int -> Bigstringaf.t -> t
val sendfile : ?length:length -> string -> (t, [> Error.common ]) result
val to_string : t -> (string, [> Error.t ]) result
val drain : t -> (unit, [> Error.t ]) result
val is_closed : t -> bool
val closed : t -> (unit, [> Error.t ]) result
val when_closed : f:((unit, [> Error.t ]) result -> unit) -> t -> unit
val is_errored : t -> bool
(** {2 Destruction} *)
val to_list : t -> Bigstringaf.t IOVec.t list
val to_string_list : t -> string list
(** {3 Traversal} *)
val fold :
f:('a -> Bigstringaf.t IOVec.t -> 'a)
-> init:'a
-> t
-> ('a, [> Error.t ]) result
val fold_string :
f:('a -> string -> 'a)
-> init:'a
-> t
-> ('a, [> Error.t ]) result
val iter :
f:(Bigstringaf.t IOVec.t -> unit)
-> t
-> (unit, [> Error.t ]) result
val iter_p :
sw:Eio.Switch.t
-> f:(Bigstringaf.t IOVec.t -> unit)
-> t
-> (unit, [> Error.t ]) result
val iter_string : f:(string -> unit) -> t -> (unit, [> Error.t ]) result
val iter_string_p :
sw:Eio.Switch.t
-> f:(string -> unit)
-> t
-> (unit, [> Error.t ]) result
(** {3 Conversion to [Stream.t]} *)
(** The functions below convert a [Piaf.Body.t] to a [Stream.t]. These
functions should be used sparingly, and only when interacting with other
APIs that require their argument to be a [Lwt_stream.t].
These functions return a tuple of two elements. In addition to returning a
[Lwt_stream.t], the tuple's second element is a promise that will sleep
until the stream is consumed (and closed). This promise will resolve to
[Ok ()] if the body was successfully transferred from the peer; otherwise,
it will return [Error error] with an error of type [Error.t] detailing the
failure that caused the body to not have been fully transferred from the
peer. *)
val to_stream : t -> Bigstringaf.t IOVec.t Stream.t
(* * (unit, [> Error.t ]) result Eio.Promise.t *)
val to_string_stream : t -> string Stream.t
(* * (unit, [> Error.t ]) result Eio.Promise.t *)
end
module Ws : sig
module Message : sig
type t = Httpun_ws.Websocket.Opcode.t * Bigstringaf.t IOVec.t
end
module Descriptor : sig
type t
val messages : t -> Message.t Stream.t
(** Stream of incoming websocket messages (frames) *)
val send_iovec : t -> Bigstringaf.t IOVec.t -> unit
val send_stream : t -> Bigstringaf.t IOVec.t Stream.t -> unit
val send_string_stream : t -> string Stream.t -> unit
val send_string : t -> string -> unit
val send_bigstring : t -> ?off:int -> ?len:int -> Bigstringaf.t -> unit
val send_ping : ?application_data:Bigstringaf.t IOVec.t -> t -> unit
val send_pong : ?application_data:Bigstringaf.t IOVec.t -> t -> unit
val flushed : t -> unit Eio.Promise.t
val close : t -> unit
val is_closed : t -> bool
end
end
module Request : sig
type t = private
{ meth : Method.t
; target : string
; version : Versions.HTTP.t
; headers : Headers.t
; scheme : Scheme.t
; body : Body.t
}
val meth : t -> Method.t
val target : t -> string
val version : t -> Versions.HTTP.t
val headers : t -> Headers.t
val scheme : t -> Scheme.t
val body : t -> Body.t
val create :
scheme:Scheme.t
-> version:Versions.HTTP.t
-> ?headers:Headers.t
-> meth:Method.t
-> body:Body.t
-> string
-> t
val with_ :
?meth:Method.t
-> ?target:string
-> ?version:Versions.HTTP.t
-> ?headers:Headers.t
-> ?scheme:Scheme.t
-> ?body:Body.t
-> t
-> t
val uri : t -> Uri.t
val persistent_connection : t -> bool
val pp_hum : Format.formatter -> t -> unit [@@ocaml.toplevel_printer]
end
module Response : sig
type t = private
{ status : Status.t
; headers : Headers.t
; version : Versions.HTTP.t
; body : Body.t
}
val status : t -> Status.t
val headers : t -> Headers.t
val version : t -> Versions.HTTP.t
val body : t -> Body.t
val create :
?version:Versions.HTTP.t
-> ?headers:Headers.t
-> ?body:Body.t
-> Status.t
-> t
val with_ :
?status:Status.t
-> ?headers:Headers.t
-> ?version:Versions.HTTP.t
-> ?body:Body.t
-> t
-> t
val of_string :
?version:Versions.HTTP.t
-> ?headers:Headers.t
-> body:string
-> Status.t
-> t
val of_bigstring :
?version:Versions.HTTP.t
-> ?headers:Headers.t
-> body:Bigstringaf.t
-> Status.t
-> t
val of_string_stream :
?version:Versions.HTTP.t
-> ?headers:Headers.t
-> body:string Stream.t
-> Status.t
-> t
val of_stream :
?version:Versions.HTTP.t
-> ?headers:Headers.t
-> body:Bigstringaf.t IOVec.t Stream.t
-> Status.t
-> t
val copy_file :
?version:Versions.HTTP.t
-> ?headers:Headers.t
-> string
-> (t, [> Error.common ]) result
val sendfile :
?version:Versions.HTTP.t
-> ?headers:Headers.t
-> string
-> (t, [> Error.common ]) result
module Upgrade : sig
val generic :
?version:Versions.HTTP.t
-> ?headers:Headers.t
-> (sw:Eio.Switch.t -> (Gluten.impl -> unit) -> unit)
-> t
val websocket :
f:(Ws.Descriptor.t -> unit)
-> ?headers:Headers.t
-> Request.t
-> (t, [> Error.common ]) result
end
val or_internal_error : (t, Error.t) result -> t
val persistent_connection : t -> bool
val pp_hum : Format.formatter -> t -> unit [@@ocaml.toplevel_printer]
end
module Form : sig
module Multipart : sig
type t = private
{ name : string
; filename : string option
; content_type : string
; body : Body.t
}
val stream :
?max_chunk_size:int
-> Request.t
-> (t Stream.t, [> `Msg of string ]) result
val assoc :
?max_chunk_size:int
-> Request.t
-> ((string * t) list, [> `Msg of string ]) result
end
end
(** {2 Client -- Issuing requests} *)
(** There are two options for issuing requests with Piaf:
+ client: useful if multiple requests are going to be sent to the remote
endpoint, avoids setting up a TCP connection for each request. Or if
HTTP/1.0, you can think of this as effectively a connection manager.
+ oneshot: issues a single request and tears down the underlying connection
once the request is done. Useful for isolated requests. *)
module Client : sig
type t
val create :
?config:Config.t
-> sw:Eio.Switch.t
-> Eio_unix.Stdenv.base
-> Uri.t
-> (t, [> Error.client ]) result
(** [create ?config uri] opens a connection to [uri] (initially) that can be
used to issue multiple requests to the remote endpoint.
A client instance represents a connection to a single remote endpoint, and
the remaining functions in this module will issue requests to that
endpoint only. *)
val head :
t
-> ?headers:(string * string) list
-> string
-> (Response.t, [> Error.t ]) result
val get :
t
-> ?headers:(string * string) list
-> string
-> (Response.t, [> Error.t ]) result
val post :
t
-> ?headers:(string * string) list
-> ?body:Body.t
-> string
-> (Response.t, [> Error.t ]) result
val put :
t
-> ?headers:(string * string) list
-> ?body:Body.t
-> string
-> (Response.t, [> Error.t ]) result
val patch :
t
-> ?headers:(string * string) list
-> ?body:Body.t
-> string
-> (Response.t, [> Error.t ]) result
val delete :
t
-> ?headers:(string * string) list
-> ?body:Body.t
-> string
-> (Response.t, [> Error.t ]) result
val request :
t
-> ?headers:(string * string) list
-> ?body:Body.t
-> meth:Method.t
-> string
-> (Response.t, [> Error.t ]) result
val send : t -> Request.t -> (Response.t, [> Error.t ]) result
val ws_upgrade :
t
-> ?headers:(string * string) list
-> string
-> (Ws.Descriptor.t, [> Error.t ]) result
val shutdown : t -> unit
(** [shutdown t] tears down the connection [t] and frees up all the resources
associated with it. *)
module Oneshot : sig
val head :
?config:Config.t
-> ?headers:(string * string) list
-> sw:Eio.Switch.t
-> Eio_unix.Stdenv.base
-> Uri.t
-> (Response.t, [> Error.t ]) result
val get :
?config:Config.t
-> ?headers:(string * string) list
-> sw:Eio.Switch.t
-> Eio_unix.Stdenv.base
-> Uri.t
-> (Response.t, [> Error.t ]) result
val post :
?config:Config.t
-> ?headers:(string * string) list
-> ?body:Body.t
-> sw:Eio.Switch.t
-> Eio_unix.Stdenv.base
-> Uri.t
-> (Response.t, [> Error.t ]) result
val put :
?config:Config.t
-> ?headers:(string * string) list
-> ?body:Body.t
-> sw:Eio.Switch.t
-> Eio_unix.Stdenv.base
-> Uri.t
-> (Response.t, [> Error.t ]) result
val patch :
?config:Config.t
-> ?headers:(string * string) list
-> ?body:Body.t
-> sw:Eio.Switch.t
-> Eio_unix.Stdenv.base
-> Uri.t
-> (Response.t, [> Error.t ]) result
val delete :
?config:Config.t
-> ?headers:(string * string) list
-> ?body:Body.t
-> sw:Eio.Switch.t
-> Eio_unix.Stdenv.base
-> Uri.t
-> (Response.t, [> Error.t ]) result
val request :
?config:Config.t
-> ?headers:(string * string) list
-> ?body:Body.t
-> sw:Eio.Switch.t
-> Eio_unix.Stdenv.base
-> meth:Method.t
-> Uri.t
-> (Response.t, [> Error.t ]) result
(** Use another request method. *)
end
end
module Request_info : sig
type t =
{ scheme : Scheme.t
; version : Versions.HTTP.t
; client_address : Eio.Net.Sockaddr.stream
; sw : Eio.Switch.t
}
end
module Server : sig
module Config : sig
module HTTPS : sig
type t =
{ address : Eio.Net.Sockaddr.stream
; certificate : Cert.t * Cert.t (* Server certificate and private key *)
; cacert : Cert.t option
(** Either the certificates string or path to a file with certificates
to verify peer. Both should be in PEM format *)
; capath : string option
(** The path to a directory which contains CA certificates in PEM format *)
; min_tls_version : Versions.TLS.t
; max_tls_version : Versions.TLS.t
; allow_insecure : bool
(** Wether to allow insecure server connections *)
; enforce_client_cert : bool
}
val create :
?cacert:Cert.t
-> ?capath:string
-> ?min_tls_version:Versions.TLS.t
-> ?max_tls_version:Versions.TLS.t
-> ?allow_insecure:bool
-> ?enforce_client_cert:bool
-> address:Eio.Net.Sockaddr.stream
-> Cert.t * Cert.t
-> t
end
type t =
{ max_http_version : Versions.HTTP.t
(** Use this as:
- the highest HTTP version that ALPN will negotiate with the remote
peer
- the version to listen on the insecure server:
- max_http_version == HTTP/2 && h2c_upgrade => HTTP/1.1 + H2c upgrade
- max_http_version == HTTP/2 => HTTP/2 server *)
; https : HTTPS.t option
; h2c_upgrade : bool
(** Send an upgrade to `h2c` (HTTP/2 over TCP) request to the server.
`http2_prior_knowledge` below ignores this option. *)
; tcp_nodelay : bool
; accept_timeout : float (* seconds *)
; shutdown_timeout : float
(** seconds. How long to wait until connections terminate before shutting
down the server. *)
; buffer_size : int
(** Buffer size used for requests and responses. Defaults to 16384 bytes *)
; body_buffer_size : int
(** Buffer size used for request and response bodies. *)
; enable_http2_server_push : bool
(* ; max_concurrent_streams : int ; initial_window_size : int *)
(** TODO(anmonteiro): these are HTTP/2 specific and we're probably OK with
the defaults *)
; flush_headers_immediately : bool
(** Specifies whether to flush message headers to the transport
immediately, or if Piaf should wait for the first body bytes to be
written. Defaults to [false]. *)
; backlog : int
(** The maximum length of the queue of pending connections. *)
; address : Eio.Net.Sockaddr.stream (** The address to listen on. *)
; domains : int (** The number of domains to use. *)
; reuse_addr : bool
; reuse_port : bool
}
val create :
?max_http_version:Versions.HTTP.t
-> ?https:HTTPS.t
-> ?h2c_upgrade:bool
-> ?tcp_nodelay:bool
-> ?accept_timeout:float
-> ?shutdown_timeout:float
-> ?buffer_size:int
-> ?body_buffer_size:int
-> ?flush_headers_immediately:bool
-> ?backlog:int
-> ?reuse_addr:bool
-> ?reuse_port:bool
-> ?domains:int
-> Eio.Net.Sockaddr.stream
-> t
end
module Service : sig
type ('req, 'resp) t = 'req -> 'resp
end
module Middleware : sig
type ('req, 'resp, 'req', 'resp') t =
('req, 'resp) Service.t -> ('req', 'resp') Service.t
type ('req, 'resp) simple = ('req, 'resp, 'req, 'resp) t
end
module Handler : sig
type 'ctx ctx =
{ ctx : 'ctx
; request : Request.t
}
type 'ctx t = ('ctx ctx, Response.t) Service.t
val not_found : 'a -> Response.t
end
type 'ctx ctx = 'ctx Handler.ctx =
{ ctx : 'ctx
; request : Request.t
}
module Error_response : sig
type t
end
type error_handler =
Eio.Net.Sockaddr.stream
-> ?request:Request.t
-> respond:(headers:Headers.t -> Body.t -> Error_response.t)
-> Error.server
-> Error_response.t
type t
val create :
?error_handler:error_handler
-> config:Config.t
-> Request_info.t Handler.t
-> t
module Command : sig
type connection_handler =
sw:Eio.Switch.t
-> Eio_unix.Net.stream_socket_ty Eio.Net.stream_socket
-> Eio.Net.Sockaddr.stream
-> unit
type server := t
type t
val start : sw:Eio.Switch.t -> Eio_unix.Stdenv.base -> server -> t
val shutdown : t -> unit
val listen :
sw:Eio.Switch.t
-> address:Eio.Net.Sockaddr.stream
-> backlog:int
-> reuse_addr:bool
-> reuse_port:bool
-> domains:int
-> shutdown_timeout:float
-> Eio_unix.Stdenv.base
-> connection_handler
-> t
(** [listen ~sw ?bind_to_address ~network ~port connection_handler] starts a
server for [connection_handler]. It is preferred to use [start] instead,
which starts a server for a Piaf handler. *)
end
val http_connection_handler : t -> Command.connection_handler
(** [connection_handler server] returns an HTTP/1.1 connection handler
suitable to be passed to e.g. [Eio.Net.accept_fork]. It is generally
recommended to use the [Command] module instead. *)
(* val https_connection_handler : t -> Command.connection_handler *)
(** [connection_handler server] returns an HTTPS connection handler suitable
to be passed to e.g. [Eio.Net.accept_fork], which can speak both HTTP/1
and HTTP/2, according to its configuration. It is generally recommended to
use the [Command] module instead. *)
end
module Cookies : sig
type expiration =
[ `Session
| `Max_age of int64
]
type same_site =
[ `None
| `Lax
| `Strict
]
type cookie = string * string
module Set_cookie : sig
type t
val make :
?expiration:expiration
-> ?path:string
-> ?domain:string
-> ?secure:bool
-> ?http_only:bool
-> ?same_site:same_site
-> cookie
-> t
val with_expiration : t -> expiration -> t
val with_path : t -> string -> t
val with_domain : t -> string -> t
val with_secure : t -> bool -> t
val with_http_only : t -> bool -> t
val with_same_site : t -> same_site -> t
val serialize : t -> cookie
val parse : Headers.t -> (string * t) list
val key : t -> string
val value : t -> string
end
module Cookie : sig
val parse : Headers.t -> (string * string) list
val serialize : (string * string) list -> cookie
end
end