forked from gleam-lang/http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp.gleam
588 lines (524 loc) · 16.6 KB
/
http.gleam
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
//// Functions for working with HTTP data structures in Gleam.
////
//// This module makes it easy to create and modify Requests and Responses, data types.
//// A general HTTP message type is defined that enables functions to work on both requests and responses.
////
//// This module does not implement a HTTP client or HTTP server, but it can be used as a base for them.
import gleam/bit_array
import gleam/bool
import gleam/list
import gleam/result
import gleam/string
/// HTTP standard method as defined by [RFC 2616](https://tools.ietf.org/html/rfc2616),
/// and PATCH which is defined by [RFC 5789](https://tools.ietf.org/html/rfc5789).
pub type Method {
Get
Post
Head
Put
Delete
Trace
Connect
Options
Patch
/// Non-standard but valid HTTP methods.
Other(String)
}
// A token is defined as:
//
// token = 1*tchar
//
// tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*"
// / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~"
// / DIGIT / ALPHA
// ; any VCHAR, except delimiters
//
// (From https://www.rfc-editor.org/rfc/rfc9110.html#name-tokens)
//
// Where DIGIT = %x30-39
// ALPHA = %x41-5A / %x61-7A
// (%xXX is a hexadecimal ASCII value)
//
// (From https://www.rfc-editor.org/rfc/rfc5234#appendix-B.1)
//
fn is_valid_token(s: String) -> Bool {
bit_array.from_string(s)
|> do_is_valid_token(True)
}
fn do_is_valid_token(bytes: BitArray, acc: Bool) {
case bytes, acc {
<<char, rest:bytes>>, True -> do_is_valid_token(rest, is_valid_tchar(char))
_, _ -> acc
}
}
@external(erlang, "gleam_http_native", "is_valid_tchar")
@external(javascript, "../gleam_http_native.mjs", "is_valid_tchar")
fn is_valid_tchar(ch: Int) -> Bool
// TODO: check if the a is a valid HTTP method (i.e. it is a token, as per the
// spec) and return Ok(Other(s)) if so.
pub fn parse_method(s) -> Result(Method, Nil) {
case s {
"CONNECT" -> Ok(Connect)
"DELETE" -> Ok(Delete)
"GET" -> Ok(Get)
"HEAD" -> Ok(Head)
"OPTIONS" -> Ok(Options)
"PATCH" -> Ok(Patch)
"POST" -> Ok(Post)
"PUT" -> Ok(Put)
"TRACE" -> Ok(Trace)
s ->
case is_valid_token(s) {
True -> Ok(Other(s))
False -> Error(Nil)
}
}
}
pub fn method_to_string(method: Method) -> String {
case method {
Connect -> "CONNECT"
Delete -> "DELETE"
Get -> "GET"
Head -> "HEAD"
Options -> "OPTIONS"
Patch -> "PATCH"
Post -> "POST"
Put -> "PUT"
Trace -> "TRACE"
Other(s) -> s
}
}
/// The two URI schemes for HTTP
///
pub type Scheme {
Http
Https
}
/// Convert a scheme into a string.
///
/// # Examples
///
/// > scheme_to_string(Http)
/// "http"
///
/// > scheme_to_string(Https)
/// "https"
///
pub fn scheme_to_string(scheme: Scheme) -> String {
case scheme {
Http -> "http"
Https -> "https"
}
}
/// Parse a HTTP scheme from a string
///
/// # Examples
///
/// > scheme_from_string("http")
/// Ok(Http)
///
/// > scheme_from_string("ftp")
/// Error(Nil)
///
pub fn scheme_from_string(scheme: String) -> Result(Scheme, Nil) {
case string.lowercase(scheme) {
"http" -> Ok(Http)
"https" -> Ok(Https)
_ -> Error(Nil)
}
}
pub type MultipartHeaders {
/// The headers for the part have been fully parsed.
/// Header keys are all lowercase.
MultipartHeaders(
headers: List(Header),
/// The remaining content that has not yet been parsed. This will contain
/// the body for this part, if any, and can be parsed with the
/// `parse_multipart_body` function.
remaining: BitArray,
)
/// More input is required to parse the headers for this part.
MoreRequiredForHeaders(
/// Call this function to continue parsing the headers for this part.
continuation: fn(BitArray) -> Result(MultipartHeaders, Nil),
)
}
pub type MultipartBody {
/// The body for the part has been fully parsed.
MultipartBody(
// The rest of the body for this part. The full body of the part is this
// concatenated onto the end of each chunk returned by any previous
// `MoreRequiredForBody` returns.
chunk: BitArray,
/// This is `True` if this was the last part in the multipart message,
/// otherwise there are more parts to parse.
done: Bool,
/// The remaining content that has not yet been parsed. This will contain
/// the next part if `done` is `False`, otherwise it will contain the
/// epilogue, if any.
remaining: BitArray,
)
MoreRequiredForBody(
// The body that has been parsed so far. The full body of the part is this
// concatenated with the chunk returned by each `MoreRequiredForBody` return
// value, and the final `MultipartBody` return value.
chunk: BitArray,
/// Call this function to continue parsing the body for this part.
continuation: fn(BitArray) -> Result(MultipartBody, Nil),
)
}
/// Parse the headers for part of a multipart message, as defined in RFC 2045.
///
/// This function skips any preamble before the boundary. The preamble may be
/// retrieved using `parse_multipart_body`.
///
/// This function will accept input of any size, it is up to the caller to limit
/// it if needed.
///
/// To enable streaming parsing of multipart messages, this function will return
/// a continuation if there is not enough data to fully parse the headers.
/// Further information is available in the documentation for `MultipartBody`.
///
pub fn parse_multipart_headers(
data: BitArray,
boundary: String,
) -> Result(MultipartHeaders, Nil) {
let boundary = bit_array.from_string(boundary)
// TODO: rewrite this to use a bit pattern once JavaScript supports
// the `b:binary-size(bsize)` pattern.
let prefix = <<45, 45, boundary:bits>>
case bit_array.slice(data, 0, bit_array.byte_size(prefix)) == Ok(prefix) {
// There is no preamble, parse the headers.
True -> parse_headers_after_prelude(data, boundary)
// There is a preamble, skip it before parsing.
False -> skip_preamble(data, boundary)
}
}
/// Parse the body for part of a multipart message, as defined in RFC 2045. The
/// body is everything until the next boundary. This function is generally to be
/// called after calling `parse_multipart_headers` for a given part.
///
/// This function will accept input of any size, it is up to the caller to limit
/// it if needed.
///
/// To enable streaming parsing of multipart messages, this function will return
/// a continuation if there is not enough data to fully parse the body, along
/// with the data that has been parsed so far. Further information is available
/// in the documentation for `MultipartBody`.
///
pub fn parse_multipart_body(
data: BitArray,
boundary: String,
) -> Result(MultipartBody, Nil) {
boundary
|> bit_array.from_string
|> parse_body_with_bit_array(data, _)
}
fn parse_body_with_bit_array(
data: BitArray,
boundary: BitArray,
) -> Result(MultipartBody, Nil) {
let bsize = bit_array.byte_size(boundary)
let prefix = bit_array.slice(data, 0, 2 + bsize)
case prefix == Ok(<<45, 45, boundary:bits>>) {
True -> Ok(MultipartBody(<<>>, done: False, remaining: data))
False -> parse_body_loop(data, boundary, <<>>)
}
}
fn parse_body_loop(
data: BitArray,
boundary: BitArray,
body: BitArray,
) -> Result(MultipartBody, Nil) {
let dsize = bit_array.byte_size(data)
let bsize = bit_array.byte_size(boundary)
let required = 6 + bsize
case data {
_ if dsize < required -> {
more_please_body(parse_body_loop(_, boundary, <<>>), body, data)
}
// TODO: flatten this into a single case expression once JavaScript supports
// the `b:binary-size(bsize)` pattern.
//
// \r\n
<<13, 10, data:bytes>> -> {
let desired = <<45, 45, boundary:bits>>
let size = bit_array.byte_size(desired)
let dsize = bit_array.byte_size(data)
let prefix = bit_array.slice(data, 0, size)
let rest = bit_array.slice(data, size, dsize - size)
case prefix == Ok(desired), rest {
// --boundary\r\n
True, Ok(<<13, 10, _:bytes>>) ->
Ok(MultipartBody(body, done: False, remaining: data))
// --boundary--
True, Ok(<<45, 45, data:bytes>>) ->
Ok(MultipartBody(body, done: True, remaining: data))
False, _ -> parse_body_loop(data, boundary, <<body:bits, 13, 10>>)
_, _ -> Error(Nil)
}
}
<<char, data:bytes>> -> {
parse_body_loop(data, boundary, <<body:bits, char>>)
}
_ -> panic as "unreachable"
}
}
fn parse_headers_after_prelude(
data: BitArray,
boundary: BitArray,
) -> Result(MultipartHeaders, Nil) {
let dsize = bit_array.byte_size(data)
let bsize = bit_array.byte_size(boundary)
let required_size = bsize + 4
// TODO: this could be written as a single case expression if JavaScript had
// support for the `b:binary-size(bsize)` pattern. Rewrite this once the
// compiler support this.
use <- bool.guard(
when: dsize < required_size,
return: more_please_headers(parse_headers_after_prelude(_, boundary), data),
)
use prefix <- result.try(bit_array.slice(data, 0, required_size - 2))
use second <- result.try(bit_array.slice(data, 2 + bsize, 2))
let desired = <<45, 45, boundary:bits>>
use <- bool.guard(prefix != desired, return: Error(Nil))
case second == <<45, 45>> {
// --boundary--
// The last boundary. Return the epilogue.
True -> {
let rest_size = dsize - required_size
use data <- result.map(bit_array.slice(data, required_size, rest_size))
MultipartHeaders([], remaining: data)
}
// --boundary
False -> {
let start = required_size - 2
let rest_size = dsize - required_size + 2
use data <- result.try(bit_array.slice(data, start, rest_size))
do_parse_headers(data)
}
}
}
fn skip_preamble(
data: BitArray,
boundary: BitArray,
) -> Result(MultipartHeaders, Nil) {
let data_size = bit_array.byte_size(data)
let boundary_size = bit_array.byte_size(boundary)
let required = boundary_size + 4
case data {
_ if data_size < required ->
more_please_headers(skip_preamble(_, boundary), data)
// TODO: change this to use one non-nested case expression once the compiler
// supports the `b:binary-size(bsize)` pattern on JS.
// \r\n--
<<13, 10, 45, 45, data:bytes>> -> {
case bit_array.slice(data, 0, boundary_size) {
// --boundary
Ok(prefix) if prefix == boundary -> {
let start = boundary_size
let length = bit_array.byte_size(data) - boundary_size
use rest <- result.try(bit_array.slice(data, start, length))
do_parse_headers(rest)
}
Ok(_) -> skip_preamble(data, boundary)
Error(_) -> Error(Nil)
}
}
<<_, data:bytes>> -> skip_preamble(data, boundary)
_ -> panic as "unreachable"
}
}
fn skip_whitespace(data: BitArray) -> BitArray {
case data {
// Space or tab.
<<32, data:bytes>> | <<9, data:bytes>> -> skip_whitespace(data)
_ -> data
}
}
fn do_parse_headers(data: BitArray) -> Result(MultipartHeaders, Nil) {
case data {
// \r\n\r\n
// We've reached the end, there are no headers.
<<13, 10, 13, 10, data:bytes>> -> Ok(MultipartHeaders([], remaining: data))
// \r\n
// Skip the line break after the boundary.
<<13, 10, data:bytes>> -> parse_header_name(data, [], <<>>)
<<13>> | <<>> -> more_please_headers(do_parse_headers, data)
_ -> Error(Nil)
}
}
fn parse_header_name(
data: BitArray,
headers: List(Header),
name: BitArray,
) -> Result(MultipartHeaders, Nil) {
case skip_whitespace(data) {
// :
<<58, data:bytes>> ->
data
|> skip_whitespace
|> parse_header_value(headers, name, <<>>)
<<char, data:bytes>> ->
parse_header_name(data, headers, <<name:bits, char>>)
_ -> more_please_headers(parse_header_name(_, headers, name), data)
}
}
fn parse_header_value(
data: BitArray,
headers: List(Header),
name: BitArray,
value: BitArray,
) -> Result(MultipartHeaders, Nil) {
let size = bit_array.byte_size(data)
case data {
// We need at least 4 bytes to check for the end of the headers.
_ if size < 4 ->
fn(data) {
data
|> skip_whitespace
|> parse_header_value(headers, name, value)
}
|> more_please_headers(data)
// \r\n\r\n
<<13, 10, 13, 10, data:bytes>> -> {
use name <- result.try(bit_array.to_string(name))
use value <- result.map(bit_array.to_string(value))
let headers = list.reverse([#(string.lowercase(name), value), ..headers])
MultipartHeaders(headers, data)
}
// \r\n\s
// \r\n\t
<<13, 10, 32, data:bytes>> | <<13, 10, 9, data:bytes>> ->
parse_header_value(data, headers, name, value)
// \r\n
<<13, 10, data:bytes>> -> {
use name <- result.try(bit_array.to_string(name))
use value <- result.try(bit_array.to_string(value))
let headers = [#(string.lowercase(name), value), ..headers]
parse_header_name(data, headers, <<>>)
}
<<char, rest:bytes>> -> {
let value = <<value:bits, char>>
parse_header_value(rest, headers, name, value)
}
_ -> Error(Nil)
}
}
fn more_please_headers(
continuation: fn(BitArray) -> Result(MultipartHeaders, Nil),
existing: BitArray,
) -> Result(MultipartHeaders, Nil) {
Ok(
MoreRequiredForHeaders(fn(more) {
use <- bool.guard(more == <<>>, return: Error(Nil))
continuation(<<existing:bits, more:bits>>)
}),
)
}
pub type ContentDisposition {
ContentDisposition(String, parameters: List(#(String, String)))
}
pub fn parse_content_disposition(
header: String,
) -> Result(ContentDisposition, Nil) {
parse_content_disposition_type(header, "")
}
fn parse_content_disposition_type(
header: String,
name: String,
) -> Result(ContentDisposition, Nil) {
case string.pop_grapheme(header) {
Error(Nil) -> Ok(ContentDisposition(name, []))
Ok(#(" ", rest)) | Ok(#("\t", rest)) | Ok(#(";", rest)) -> {
let result = parse_rfc_2045_parameters(rest, [])
use parameters <- result.map(result)
ContentDisposition(name, parameters)
}
Ok(#(grapheme, rest)) ->
parse_content_disposition_type(rest, name <> string.lowercase(grapheme))
}
}
fn parse_rfc_2045_parameters(
header: String,
parameters: List(#(String, String)),
) -> Result(List(#(String, String)), Nil) {
case string.pop_grapheme(header) {
Error(Nil) -> Ok(list.reverse(parameters))
Ok(#(";", rest)) | Ok(#(" ", rest)) | Ok(#("\t", rest)) ->
parse_rfc_2045_parameters(rest, parameters)
Ok(#(grapheme, rest)) -> {
let acc = string.lowercase(grapheme)
use #(parameter, rest) <- result.try(parse_rfc_2045_parameter(rest, acc))
parse_rfc_2045_parameters(rest, [parameter, ..parameters])
}
}
}
fn parse_rfc_2045_parameter(
header: String,
name: String,
) -> Result(#(#(String, String), String), Nil) {
use #(grapheme, rest) <- result.try(string.pop_grapheme(header))
case grapheme {
"=" -> parse_rfc_2045_parameter_value(rest, name)
_ -> parse_rfc_2045_parameter(rest, name <> string.lowercase(grapheme))
}
}
fn parse_rfc_2045_parameter_value(
header: String,
name: String,
) -> Result(#(#(String, String), String), Nil) {
case string.pop_grapheme(header) {
Error(Nil) -> Error(Nil)
Ok(#("\"", rest)) -> parse_rfc_2045_parameter_quoted_value(rest, name, "")
Ok(#(grapheme, rest)) ->
Ok(parse_rfc_2045_parameter_unquoted_value(rest, name, grapheme))
}
}
fn parse_rfc_2045_parameter_quoted_value(
header: String,
name: String,
value: String,
) -> Result(#(#(String, String), String), Nil) {
case string.pop_grapheme(header) {
Error(Nil) -> Error(Nil)
Ok(#("\"", rest)) -> Ok(#(#(name, value), rest))
Ok(#("\\", rest)) -> {
use #(grapheme, rest) <- result.try(string.pop_grapheme(rest))
parse_rfc_2045_parameter_quoted_value(rest, name, value <> grapheme)
}
Ok(#(grapheme, rest)) ->
parse_rfc_2045_parameter_quoted_value(rest, name, value <> grapheme)
}
}
fn parse_rfc_2045_parameter_unquoted_value(
header: String,
name: String,
value: String,
) -> #(#(String, String), String) {
case string.pop_grapheme(header) {
Error(Nil) -> #(#(name, value), header)
Ok(#(";", rest)) | Ok(#(" ", rest)) | Ok(#("\t", rest)) -> #(
#(name, value),
rest,
)
Ok(#(grapheme, rest)) ->
parse_rfc_2045_parameter_unquoted_value(rest, name, value <> grapheme)
}
}
fn more_please_body(
continuation: fn(BitArray) -> Result(MultipartBody, Nil),
chunk: BitArray,
existing: BitArray,
) -> Result(MultipartBody, Nil) {
fn(more) {
use <- bool.guard(more == <<>>, return: Error(Nil))
continuation(<<existing:bits, more:bits>>)
}
|> MoreRequiredForBody(chunk, _)
|> Ok
}
/// A HTTP header is a key-value pair. Header keys must be all lowercase
/// characters.
pub type Header =
#(String, String)