Skip to content

Commit ed2d45f

Browse files
committed
Further documentation
1 parent a9c747b commit ed2d45f

File tree

3 files changed

+48
-16
lines changed

3 files changed

+48
-16
lines changed

src/gleam/http.gleam

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
////
66
//// This module does not implement a HTTP client or HTTP server, but it can be used as a base for them.
77

8-
import gleam/dynamic.{type DecodeError, type Dynamic, DecodeError}
9-
import gleam/string
108
import gleam/bit_array
11-
import gleam/result
12-
import gleam/list
139
import gleam/bool
10+
import gleam/dynamic.{type DecodeError, type Dynamic, DecodeError}
11+
import gleam/list
12+
import gleam/result
13+
import gleam/string
1414

1515
/// HTTP standard method as defined by [RFC 2616](https://tools.ietf.org/html/rfc2616),
1616
/// and PATCH which is defined by [RFC 5789](https://tools.ietf.org/html/rfc5789).
@@ -112,6 +112,7 @@ pub fn method_from_dynamic(value: Dynamic) -> Result(Method, List(DecodeError))
112112

113113
pub type MultipartHeaders {
114114
/// The headers for the part have been fully parsed.
115+
/// Header keys are all lowercase.
115116
MultipartHeaders(
116117
headers: List(Header),
117118
/// The remaining content that has not yet been parsed. This will contain
@@ -270,8 +271,7 @@ fn parse_headers_after_prelude(
270271
// compiler support this.
271272

272273
use <- bool.guard(
273-
when: dsize
274-
< required_size,
274+
when: dsize < required_size,
275275
return: more_please_headers(parse_headers_after_prelude(_, boundary), data),
276276
)
277277

@@ -561,7 +561,7 @@ fn do_method_from_dynamic(a: Dynamic) -> Result(Method, nil)
561561
@external(javascript, "../gleam_http_native.mjs", "decode_method")
562562
fn do_method_from_dynamic(a: Dynamic) -> Result(Method, Nil)
563563

564-
/// A HTTP header is a key-value pair. Header keys should be all lowercase
564+
/// A HTTP header is a key-value pair. Header keys must be all lowercase
565565
/// characters.
566566
pub type Header =
567567
#(String, String)

src/gleam/http/request.gleam

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
1-
import gleam/result
2-
// TODO: validate_req
31
import gleam/http.{type Header, type Method, type Scheme, Get}
42
import gleam/http/cookie
5-
import gleam/option.{type Option}
6-
import gleam/uri.{type Uri, Uri}
73
import gleam/list
4+
import gleam/option.{type Option}
5+
import gleam/result
86
import gleam/string
97
import gleam/string_builder
8+
import gleam/uri.{type Uri, Uri}
109

11-
// TODO: document
10+
/// A HTTP request.
11+
///
12+
/// The body of the request is parameterised. The HTTP server or client you are
13+
/// using will have a particular set of types it supports for the body.
14+
///
1215
pub type Request(body) {
1316
Request(
1417
method: Method,
18+
/// The request headers. The keys must always be lowercase.
1519
headers: List(Header),
1620
body: body,
1721
scheme: Scheme,
@@ -66,13 +70,20 @@ pub fn from_uri(uri: Uri) -> Result(Request(String), Nil) {
6670
///
6771
/// If the request does not have that header then `Error(Nil)` is returned.
6872
///
73+
/// Header keys are always lowercase in `gleam_http`. To use any uppercase
74+
/// letter is invalid.
75+
///
6976
pub fn get_header(request: Request(body), key: String) -> Result(String, Nil) {
7077
list.key_find(request.headers, string.lowercase(key))
7178
}
7279

7380
/// Set the header with the given value under the given header key.
7481
///
7582
/// If already present, it is replaced.
83+
///
84+
/// Header keys are always lowercase in `gleam_http`. To use any uppercase
85+
/// letter is invalid.
86+
///
7687
pub fn set_header(
7788
request: Request(body),
7889
key: String,
@@ -86,6 +97,10 @@ pub fn set_header(
8697
///
8798
/// Similar to `set_header` except if the header already exists it prepends
8899
/// another header with the same key.
100+
///
101+
/// Header keys are always lowercase in `gleam_http`. To use any uppercase
102+
/// letter is invalid.
103+
///
89104
pub fn prepend_header(
90105
request: Request(body),
91106
key: String,

src/gleam/http/response.gleam

+21-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1-
import gleam/result
21
import gleam/http.{type Header}
32
import gleam/http/cookie
43
import gleam/list
5-
import gleam/string
64
import gleam/option
5+
import gleam/result
6+
import gleam/string
77

8-
// TODO: document
8+
/// A HTTP response.
9+
///
10+
/// The body of the request is parameterised. The HTTP server or client you are
11+
/// using will have a particular set of types it supports for the body.
12+
///
913
pub type Response(body) {
10-
Response(status: Int, headers: List(Header), body: body)
14+
Response(
15+
status: Int,
16+
/// The request headers. The keys must always be lowercase.
17+
headers: List(Header),
18+
body: body,
19+
)
1120
}
1221

1322
/// Update the body of a response using a given result returning function.
@@ -43,6 +52,10 @@ pub fn get_header(response: Response(body), key: String) -> Result(String, Nil)
4352
/// Set the header with the given value under the given header key.
4453
///
4554
/// If the response already has that key, it is replaced.
55+
///
56+
/// Header keys are always lowercase in `gleam_http`. To use any uppercase
57+
/// letter is invalid.
58+
///
4659
pub fn set_header(
4760
response: Response(body),
4861
key: String,
@@ -56,6 +69,10 @@ pub fn set_header(
5669
///
5770
/// Similar to `set_header` except if the header already exists it prepends
5871
/// another header with the same key.
72+
///
73+
/// Header keys are always lowercase in `gleam_http`. To use any uppercase
74+
/// letter is invalid.
75+
///
5976
pub fn prepend_header(
6077
response: Response(body),
6178
key: String,

0 commit comments

Comments
 (0)