package vif

  1. Overview
  2. Docs

Source file vif_response.ml

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
let src = Logs.Src.create "vif.response"

module Log = (val Logs.src_log src : Logs.LOG)

type empty = Empty
and filled = Filled
and sent = Sent

type 'a state =
  | Empty : empty state
  | Filled : string Flux.stream -> filled state
  | Sent : sent state

let _empty = Empty
let filled from = Filled from
let sent = Sent

type ('p, 'q, 'a) t =
  | Add_header : string * string -> ('p, 'p, unit) t
  | Add_unless_exists : string * string -> ('p, 'p, bool) t
  | Set_header : string * string -> ('p, 'p, unit) t
  | Rem_header : string -> ('p, 'p, unit) t
  | Return : 'a -> ('p, 'p, 'a) t
  | Bind : ('p, 'q, 'a) t * ('a -> ('q, 'r, 'b) t) -> ('p, 'r, 'b) t
  | Source : string Flux.source -> (empty, filled, unit) t
  | Stream : string Flux.stream -> (empty, filled, unit) t
  | String : string -> (empty, filled, unit) t
  | Websocket : (empty, sent, unit) t
  | Respond : Vif_status.t -> (filled, sent, unit) t

let bind x fn = Bind (x, fn)
let respond status = Respond status
let return x = Return x
let add ~field value = Add_header (field, value)
let add_unless_exists ~field value = Add_unless_exists (field, value)
let set ~field value = Set_header (field, value)
let rem ~field = Rem_header field
let ( let* ) = bind
let strf fmt = Format.asprintf fmt

let redirect_to ?(with_get = true) req uri =
  let fn rel =
    let* _ = add_unless_exists ~field:"location" rel in
    match (Vif_request.meth req, with_get) with
    | `GET, true (* GET-to-GET *) -> Respond `Found
    | _, true (* XXX-to-GET *) -> Respond `See_other
    | _, false (* XXX-to-XXX *) -> Respond `Temporary_redirect
  in
  Vif_uri.keval ~slash:true uri fn

module Hdrs = Vif_headers

let can_compress alg req =
  match Vif_request.reqd req with
  | `V1 reqd ->
      let req = H1.Reqd.request reqd in
      let hdrs = req.H1.Request.headers in
      begin match H1.Headers.get hdrs "accept-encoding" with
      | None -> false
      | Some str ->
          let algs = String.split_on_char ',' str in
          let algs = List.map String.trim algs in
          List.exists (( = ) alg) algs
      end
  | `V2 reqd ->
      let req = H2.Reqd.request reqd in
      let hdrs = req.H2.Request.headers in
      begin match H2.Headers.get hdrs "accept-encoding" with
      | None -> false
      | Some str ->
          let algs = String.split_on_char ',' str in
          let algs = List.map String.trim algs in
          List.exists (( = ) alg) algs
      end

let compression alg req =
  match alg with
  | `DEFLATE when can_compress "deflate" req ->
      let* () = set ~field:"content-encoding" "deflate" in
      let* () = rem ~field:"content-length" in
      return true
  | `Gzip when can_compress "gzip" req ->
      let* () = set ~field:"content-encoding" "gzip" in
      let* () = rem ~field:"content-length" in
      return true
  | _ -> return false

let with_source ?compression:alg req source =
  let none = return false in
  let* _ = Option.fold ~none ~some:(fun alg -> compression alg req) alg in
  let field = "transfer-encoding" in
  let v = "chunked" in
  let* _ = add_unless_exists ~field v in
  Source source

let with_stream ?compression:alg req stream =
  let none = return false in
  let* _ = Option.fold ~none ~some:(fun alg -> compression alg req) alg in
  let field = "transfer-encoding" in
  let v = "chunked" in
  let* _ = add_unless_exists ~field v in
  Stream stream

let connection_close req =
  match Vif_request.version req with
  | 1 -> add_unless_exists ~field:"connection" "close"
  | _ -> return false

let content_length len =
  add_unless_exists ~field:"content-length" (string_of_int len)

let with_string ?compression:alg req str =
  let* _ = content_length (String.length str) in
  let* _ = connection_close req in
  let none = return false in
  let* _ = Option.fold ~none ~some:(fun alg -> compression alg req) alg in
  String str

let with_text ?(utf_8 = true) ?compression req str =
  let field = "content-type" in
  let* () =
    if utf_8 then add ~field "text/plain; charset=utf-8"
    else add ~field "text/plain"
  in
  with_string ?compression req str

let with_tyxml ?compression:alg req tyxml =
  let none = return false in
  let* _ = Option.fold ~none ~some:(fun alg -> compression alg req) alg in
  let field = "transfer-encoding" in
  let v = "chunked" in
  let* _ = add_unless_exists ~field v in
  let field = "content-type" in
  let v = "text/html; charset=utf-8" in
  let* _ = add_unless_exists ~field v in
  let* _ = connection_close req in
  let source =
    Flux.Source.with_formatter ~size:0x7ff @@ fun ppf ->
    Fmt.pf ppf "%a" (Tyxml.Html.pp ()) tyxml
  in
  Source source

let with_json ?compression:alg req ?format ?number_format w v =
  let open Flux in
  let fn bqueue =
    let fn slice =
      if Bytesrw.Bytes.Slice.is_eod slice then Bqueue.close bqueue
      else Bqueue.put bqueue (Bytesrw.Bytes.Slice.to_string slice)
    in
    let writer = Bytesrw.Bytes.Writer.make fn in
    let res =
      Jsont_bytesrw.encode ?format ?number_format ~eod:true w v writer
    in
    match res with
    | Ok () -> ()
    | Error msg -> Fmt.failwith "Vif.Response.with_json: %s" msg
  in
  let src = Source.with_task ~size:0x7ff fn in
  let none = return false in
  let* _ = Option.fold ~none ~some:(fun alg -> compression alg req) alg in
  let field = "transfer-encoding" in
  let v = "chunked" in
  let* _ = add_unless_exists ~field v in
  let field = "content-type" in
  let v = "application/json; charset=utf-8" in
  let* _ = add_unless_exists ~field v in
  let* _ = connection_close req in
  Source src

let empty =
  let* _ = content_length 0 in
  String ""

let websocket = Websocket

let response ?headers:(hdrs = []) status req0 =
  let tags = Vif_request0.tags req0 in
  match Vif_request0.reqd req0 with
  | `V1 reqd ->
      let hdrs = H1.Headers.of_list hdrs in
      let status =
        match status with
        | #H1.Status.t as status -> status
        | _ -> invalid_arg "Sink.response: invalid status"
      in
      let resp = H1.Response.create ~headers:hdrs status in
      let init () = H1.Reqd.respond_with_streaming reqd resp in
      let fn body = function
        | `Written -> Miou.yield ()
        | `Closed -> H1.Body.Writer.close body
      in
      let push body str =
        H1.Body.Writer.write_string body str;
        H1.Body.Writer.flush_with_reason body (fn body);
        body
      in
      let full = H1.Body.Writer.is_closed in
      let stop body =
        Log.debug (fun m -> m ~tags "<- close the response body");
        H1.Body.Writer.close body
      in
      (Sink { init; push; full; stop } : (string, unit) Flux.sink)
  | `V2 reqd ->
      let hdrs = H2.Headers.of_list hdrs in
      let resp = H2.Response.create ~headers:hdrs status in
      let init () = H2.Reqd.respond_with_streaming reqd resp in
      let push body str =
        H2.Body.Writer.write_string body str;
        body
      in
      let full _ = false in
      let stop = H2.Body.Writer.close in
      (Sink { init; push; full; stop } : (string, unit) Flux.sink)

let upgrade ?headers:(hdrs = []) req0 =
  match Vif_request0.reqd req0 with
  | `V1 reqd ->
      let hdrs = H1.Headers.of_list hdrs in
      H1.Reqd.respond_with_upgrade reqd hdrs
  | `V2 _ -> assert false

let sha1 =
  let ( $ ) = Fun.compose in
  Digestif.(Base64.encode_string $ SHA1.to_raw_string $ SHA1.digest_string)

let get_nonce req =
  let hdrs = Vif_request0.headers req in
  Vif_headers.get hdrs "sec-websocket-key"

let run : type a p q.
       now:(unit -> int32)
    -> 'socket Vif_request0.t
    -> p state
    -> (p, q, a) t
    -> q state * a =
 fun ~now req s t ->
  let headers = ref [] in
  let tags = Vif_request0.tags req in
  let rec go : type a p q. p state -> (p, q, a) t -> q state * a =
   fun s t ->
    match (s, t) with
    | state, Bind (x, fn) ->
        let state, x = go state x in
        go state (fn x)
    | state, Return x -> (state, x)
    | state, Add_unless_exists (k, v) -> begin
        match Vif_headers.get !headers k with
        | Some _ -> (state, false)
        | None ->
            headers := (k, v) :: !headers;
            (state, true)
      end
    | state, Add_header (k, v) ->
        headers := (k, v) :: !headers;
        (state, ())
    | state, Rem_header k ->
        headers := Vif_headers.rem !headers k;
        (state, ())
    | state, Set_header (k, v) ->
        headers := (k, v) :: Vif_headers.rem !headers k;
        (state, ())
    | Empty, Source from -> (Filled (Flux.Stream.from from), ())
    | Empty, Stream stream -> (Filled stream, ())
    | Empty, String str ->
        if Vif_request0.version req = 1 then
          headers := Vif_headers.add_unless_exists !headers "connection" "close";
        (Filled (Flux.Source.list [ str ] |> Flux.Stream.from), ())
    | Empty, Websocket -> begin
        match get_nonce req with
        | None -> assert false (* TODO *)
        | Some nonce ->
            let hdrs1 = H1.Websocket.Handshake.server_headers ~sha1 ~nonce in
            let headers = H1.Headers.to_list hdrs1 in
            upgrade ~headers req; (Sent, ())
      end
    | Filled stream, Respond status ->
        let headers = !headers in
        let headers, via =
          match Vif_headers.get headers "content-encoding" with
          | Some "deflate" ->
              let headers = Vif_headers.rem headers "content-length" in
              let headers =
                Vif_headers.add_unless_exists headers "transfer-encoding"
                  "chunked"
              in
              let cfg = Flux_zl.config () in
              let to_bstr = Flux.Flow.bstr ~len:0x7ff in
              let flow = Flux.Flow.compose to_bstr (Flux_zl.deflate cfg) in
              (headers, flow)
          | Some "gzip" ->
              let headers = Vif_headers.rem headers "content-length" in
              let headers =
                Vif_headers.add_unless_exists headers "transfer-encoding"
                  "chunked"
              in
              let mtime = now () in
              let cfg = Flux_gz.config ~mtime () in
              let to_bstr = Flux.Flow.bstr ~len:0x7ff in
              let flow = Flux.Flow.compose to_bstr (Flux_gz.deflate cfg) in
              (headers, flow)
          | _ -> (headers, Flux.Flow.identity)
        in
        Log.debug (fun m ->
            m ~tags "new response with: @[<hov>%a@]" Vif_headers.pp headers);
        let into = response ~headers status req in
        Log.debug (fun m -> m ~tags "run our stream to send a response");
        let stream = Flux.Stream.via via stream in
        Flux.Stream.into into stream;
        (Sent, ())
  in
  go s t