-
Notifications
You must be signed in to change notification settings - Fork 183
/
Messages.jl
675 lines (511 loc) · 17.5 KB
/
Messages.jl
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
"""
The `Messages` module defines structs that represent [`HTTP.Request`](@ref)
and [`HTTP.Response`](@ref) Messages.
The `Response` struct has a `request` field that points to the corresponding
`Request`; and the `Request` struct has a `response` field.
The `Request` struct also has a `parent` field that points to a `Response`
in the case of HTTP Redirect.
The Messages module defines `IO` `read` and `write` methods for Messages
but it does not deal with URIs, creating connections, or executing requests.
The `read` methods throw `EOFError` exceptions if input data is incomplete.
and call parser functions that may throw `HTTP.ParsingError` exceptions.
The `read` and `write` methods may also result in low level `IO` exceptions.
### Sending Messages
Messages are formatted and written to an `IO` stream by
[`Base.write(::IO,::HTTP.Messages.Message)`](@ref) and or
[`HTTP.Messages.writeheaders`](@ref).
### Receiving Messages
Messages are parsed from `IO` stream data by
[`HTTP.Messages.readheaders`](@ref).
This function calls [`HTTP.Messages.appendheader`](@ref) and
[`HTTP.Messages.readstartline!`](@ref).
The `read` methods rely on [`HTTP.IOExtras.unread!`](@ref) to push excess
data back to the input stream.
### Headers
Headers are represented by `Vector{Pair{String,String}}`. As compared to
`Dict{String,String}` this allows [repeated header fields and preservation of
order](https://tools.ietf.org/html/rfc7230#section-3.2.2).
Header values can be accessed by name using
[`HTTP.Messages.header`](@ref) and
[`HTTP.Messages.setheader`](@ref) (case-insensitive).
The [`HTTP.Messages.appendheader`](@ref) function handles combining
multi-line values, repeated header fields and special handling of
multiple `Set-Cookie` headers.
### Bodies
The `HTTP.Message` structs represent the Message Body as `Vector{UInt8}`.
Streaming of request and response bodies is handled by the
[`HTTP.StreamLayer`](@ref) and the [`HTTP.Stream`](@ref) `<: IO` stream.
"""
module Messages
export Message, Request, Response, HeaderSizeError,
reset!,
iserror, isredirect, ischunked, issafe, isidempotent,
header, hasheader, setheader, defaultheader, appendheader,
mkheaders, readheaders, headerscomplete, readtrailers, writeheaders,
readstartline!, writestartline,
bodylength, unknown_length,
load
import ..HTTP
using ..Pairs
using ..IOExtras
using ..Parsers
import ..Parsers: headerscomplete, reset!
const unknown_length = typemax(Int)
abstract type Message end
"""
Response <: Message
Represents a HTTP Response Message.
- `version::VersionNumber`
[RFC7230 2.6](https://tools.ietf.org/html/rfc7230#section-2.6)
- `status::Int16`
[RFC7230 3.1.2](https://tools.ietf.org/html/rfc7230#section-3.1.2)
[RFC7231 6](https://tools.ietf.org/html/rfc7231#section-6)
- `headers::Vector{Pair{String,String}}`
[RFC7230 3.2](https://tools.ietf.org/html/rfc7230#section-3.2)
- `body::Vector{UInt8}`
[RFC7230 3.3](https://tools.ietf.org/html/rfc7230#section-3.3)
- `request`, the `Request` that yielded this `Response`.
"""
mutable struct Response <: Message
version::VersionNumber
status::Int16
headers::Headers
body::Vector{UInt8}
request::Message
function Response(status::Int=0, headers=[]; body=UInt8[], request=nothing)
r = new()
r.version = v"1.1"
r.status = status
r.headers = mkheaders(headers)
r.body = body
if request != nothing
r.request = request
end
return r
end
end
Response(bytes) = parse(Response, bytes)
function reset!(r::Response)
r.version = v"1.1"
r.status = 0
if !isempty(r.headers)
empty!(r.headers)
end
if !isempty(r.body)
empty!(r.body)
end
end
"""
Request <: Message
Represents a HTTP Request Message.
- `method::String`
[RFC7230 3.1.1](https://tools.ietf.org/html/rfc7230#section-3.1.1)
- `target::String`
[RFC7230 5.3](https://tools.ietf.org/html/rfc7230#section-5.3)
- `version::VersionNumber`
[RFC7230 2.6](https://tools.ietf.org/html/rfc7230#section-2.6)
- `headers::Vector{Pair{String,String}}`
[RFC7230 3.2](https://tools.ietf.org/html/rfc7230#section-3.2)
- `body::Vector{UInt8}`
[RFC7230 3.3](https://tools.ietf.org/html/rfc7230#section-3.3)
- `response`, the `Response` to this `Request`
- `parent`, the `Response` (if any) that led to this request
(e.g. in the case of a redirect).
[RFC7230 6.4](https://tools.ietf.org/html/rfc7231#section-6.4)
"""
mutable struct Request <: Message
method::String
target::String
version::VersionNumber
headers::Headers
body::Vector{UInt8}
response::Response
parent
end
Request() = Request("", "")
function Request(method::String, target, headers=[], body=UInt8[];
version=v"1.1", parent=nothing)
r = Request(method,
target == "" ? "/" : target,
version,
mkheaders(headers),
body,
Response(),
parent)
r.response.request = r
return r
end
Request(bytes) = parse(Request, bytes)
mkheaders(h::Headers) = h
mkheaders(h)::Headers = Header[string(k) => string(v) for (k,v) in h]
"""
issafe(::Request)
https://tools.ietf.org/html/rfc7231#section-4.2.1
"""
issafe(r::Request) = r.method in ["GET", "HEAD", "OPTIONS", "TRACE"]
"""
isidempotent(::Request)
https://tools.ietf.org/html/rfc7231#section-4.2.2
"""
isidempotent(r::Request) = issafe(r) || r.method in ["PUT", "DELETE"]
"""
iserror(::Response)
Does this `Response` have an error status?
"""
iserror(r::Response) = r.status != 0 && r.status != 100 && r.status != 101 &&
(r.status < 200 || r.status >= 300) && !isredirect(r)
"""
isredirect(::Response)
Does this `Response` have a redirect status?
"""
isredirect(r::Response) = r.status in (301, 302, 307, 308)
"""
statustext(::Response) -> String
`String` representation of a HTTP status code. e.g. `200 => "OK"`.
"""
statustext(r::Response) = Base.get(STATUS_MESSAGES, r.status, "Unknown Code")
"""
header(::Message, key [, default=""]) -> String
Get header value for `key` (case-insensitive).
"""
header(m::Message, k, d="") = header(m.headers, k, d)
header(h::Headers, k::String, d::String="") = getbyfirst(h, k, k => d, lceq)[2]
lceq(a,b) = lowercase(a) == lowercase(b)
"""
hasheader(::Message, key) -> Bool
Does header value for `key` exist (case-insensitive)?
"""
hasheader(m, k::String) = header(m, k) != ""
"""
hasheader(::Message, key, value) -> Bool
Does header for `key` match `value` (both case-insensitive)?
"""
hasheader(m, k::String, v::String) = lowercase(header(m, k)) == lowercase(v)
"""
setheader(::Message, key => value)
Set header `value` for `key` (case-insensitive).
"""
setheader(m::Message, v) = setheader(m.headers, v)
setheader(h::Headers, v::Pair) = setbyfirst(h, Pair{String,String}(v), lceq)
"""
defaultheader(::Message, key => value)
Set header `value` for `key` if it is not already set.
"""
function defaultheader(m, v::Pair)
if header(m, first(v)) == ""
setheader(m, v)
end
return
end
"""
ischunked(::Message)
Does the `Message` have a "Transfer-Encoding: chunked" header?
"""
ischunked(m) = hasheader(m, "Transfer-Encoding", "chunked")
"""
appendheader(::Message, key => value)
Append a header value to `message.headers`.
If `key` is `""` the `value` is appended to the value of the previous header.
If `key` is the same as the previous header, the `value` is [appended to the
value of the previous header with a comma
delimiter](https://stackoverflow.com/a/24502264)
`Set-Cookie` headers are not comma-combined because [cookies often contain
internal commas](https://tools.ietf.org/html/rfc6265#section-3).
"""
function appendheader(m::Message, header::Pair{String,String})
c = m.headers
k,v = header
if k == ""
c[end] = c[end][1] => string(c[end][2], v)
elseif k != "Set-Cookie" && length(c) > 0 && k == c[end][1]
c[end] = c[end][1] => string(c[end][2], ", ", v)
else
push!(m.headers, header)
end
return
end
"""
httpversion(::Message)
e.g. `"HTTP/1.1"`
"""
httpversion(m::Message) = "HTTP/$(m.version.major).$(m.version.minor)"
"""
writestartline(::IO, ::Message)
e.g. `"GET /path HTTP/1.1\\r\\n"` or `"HTTP/1.1 200 OK\\r\\n"`
"""
function writestartline(io::IO, r::Request)
write(io, "$(r.method) $(r.target) $(httpversion(r))\r\n")
return
end
function writestartline(io::IO, r::Response)
write(io, "$(httpversion(r)) $(r.status) $(statustext(r))\r\n")
return
end
"""
writeheaders(::IO, ::Message)
Write `Message` start line and
a line for each "name: value" pair and a trailing blank line.
"""
function writeheaders(io::IO, m::Message)
writestartline(io, m) # FIXME To avoid fragmentation, maybe
for (name, value) in m.headers # buffer header before sending to `io`
write(io, "$name: $value\r\n")
end
write(io, "\r\n")
return
end
"""
write(::IO, ::Message)
Write start line, headers and body of HTTP Message.
"""
function Base.write(io::IO, m::Message)
writeheaders(io, m)
write(io, m.body)
return
end
function Base.String(m::Message)
io = IOBuffer()
write(io, m)
String(take!(io))
end
#Like https://github.com/JuliaIO/FileIO.jl/blob/v0.6.1/src/FileIO.jl#L19 ?
function load(m::Message)
if hasheader(m, "Content-Type", "ISO-8859-1")
return iso8859_1_to_utf8(m.body)
else
String(m.body)
end
end
"""
readstartline!(::Parsers.Message, ::Message)
Read the start-line metadata from Parser into a `::Message` struct.
"""
function readstartline!(m::Parsers.Message, r::Response)
r.version = VersionNumber(m.major, m.minor)
r.status = m.status
return
end
function readstartline!(m::Parsers.Message, r::Request)
r.version = VersionNumber(m.major, m.minor)
r.method = m.method
r.target = m.target
return
end
"""
Arbitrary limit to protect against denial of service attacks.
"""
const header_size_limit = 0x10000
struct HeaderSizeError <: Exception end
"""
readheaders(::IO, ::Parser, ::Message)
Read headers (and startline) from an `IO` stream into a `Message` struct.
Throw `EOFError` if input is incomplete.
"""
function readheaders(io::IO, parser::Parser, message::Message)
n = 0
while !headerscomplete(parser) && !eof(io)
bytes = readavailable(io)
n += length(bytes)
excess = parseheaders(parser, bytes) do h
appendheader(message, h)
end
unread!(io, excess)
n -= length(excess)
if n > header_size_limit
throw(HeaderSizeError())
end
end
if !headerscomplete(parser)
throw(EOFError())
end
readstartline!(parser.message, message)
return message
end
"""
headerscomplete(::Message)
Have the headers been read into this `Message`?
"""
headerscomplete(r::Response) = r.status != 0 && r.status != 100
headerscomplete(r::Request) = r.method != ""
"""
readtrailers(::IO, ::Parser, ::Message)
Read trailers from an `IO` stream into a `Message` struct.
"""
function readtrailers(io::IO, parser::Parser, message::Message)
if messagehastrailing(parser)
readheaders(io, parser, message)
end
return message
end
"""
"The presence of a message body in a response depends on both the
request method to which it is responding and the response status code.
Responses to the HEAD request method never include a message body [].
2xx (Successful) responses to a CONNECT request method (Section 4.3.6 of
[RFC7231]) switch to tunnel mode instead of having a message body.
All 1xx (Informational), 204 (No Content), and 304 (Not Modified)
responses do not include a message body. All other responses do
include a message body, although the body might be of zero length."
[RFC7230 3.3](https://tools.ietf.org/html/rfc7230#section-3.3)
"""
bodylength(r::Response)::Int =
r.request.method == "HEAD" ? 0 :
r.status in [204, 304] ? 0 :
(l = header(r, "Content-Length")) != "" ? parse(Int, l) :
unknown_length
"""
"The presence of a message body in a request is signaled by a
Content-Length or Transfer-Encoding header field. Request message
framing is independent of method semantics, even if the method does
not define any use for a message body."
[RFC7230 3.3](https://tools.ietf.org/html/rfc7230#section-3.3)
"""
bodylength(r::Request)::Int =
ischunked(r) ? unknown_length :
parse(Int, header(r, "Content-Length", "0"))
"""
readbody(::IO, ::Parser) -> Vector{UInt8}
Read message body from an `IO` stream.
"""
function readbody(io::IO, parser::Parser, m::Message)
if ischunked(m)
body = IOBuffer()
while !bodycomplete(parser) && !eof(io)
data, excess = parsebody(parser, readavailable(io))
write(body, data)
unread!(io, excess)
end
m.body = take!(body)
else
l = bodylength(m)
m.body = read(io, l)
if l != unknown_length && length(m.body) < l
throw(EOFError())
end
end
end
function Base.parse(::Type{T}, str::AbstractString) where T <: Message
bytes = IOBuffer(str)
p = Parser()
r = Request()
m::T = T == Request ? r : r.response
readheaders(bytes, p, m)
readbody(bytes, p, m)
readtrailers(bytes, p, m)
if ischunked(m) && !messagecomplete(p)
throw(EOFError())
end
return m
end
"""
set_show_max(x)
Set the maximum number of body bytes to be displayed by `show(::IO, ::Message)`
"""
set_show_max(x) = global body_show_max = x
body_show_max = 1000
"""
bodysummary(bytes)
The first chunk of the Message Body (for display purposes).
"""
bodysummary(bytes) = view(bytes, 1:min(length(bytes), body_show_max))
function compactstartline(m::Message)
b = IOBuffer()
writestartline(b, m)
strip(String(take!(b)))
end
function Base.show(io::IO, m::Message)
if get(io, :compact, false)
print(io, compactstartline(m))
if m isa Response
print(io, " <= (", compactstartline(m.request::Request), ")")
end
return
end
println(io, typeof(m), ":")
println(io, "\"\"\"")
writeheaders(io, m)
summary = bodysummary(m.body)
write(io, summary)
if length(m.body) > length(summary)
println(io, "\n⋮\n$(length(m.body))-byte body")
end
print(io, "\"\"\"")
return
end
const STATUS_MESSAGES = (()->begin
@assert ccall(:jl_generating_output, Cint, ()) == 1
v = fill("Unknown Code", 530)
v[100] = "Continue"
v[101] = "Switching Protocols"
v[102] = "Processing" # RFC 2518 => obsoleted by RFC 4918
v[200] = "OK"
v[201] = "Created"
v[202] = "Accepted"
v[203] = "Non-Authoritative Information"
v[204] = "No Content"
v[205] = "Reset Content"
v[206] = "Partial Content"
v[207] = "Multi-Status" # RFC 4918
v[300] = "Multiple Choices"
v[301] = "Moved Permanently"
v[302] = "Moved Temporarily"
v[303] = "See Other"
v[304] = "Not Modified"
v[305] = "Use Proxy"
v[307] = "Temporary Redirect"
v[400] = "Bad Request"
v[401] = "Unauthorized"
v[402] = "Payment Required"
v[403] = "Forbidden"
v[404] = "Not Found"
v[405] = "Method Not Allowed"
v[406] = "Not Acceptable"
v[407] = "Proxy Authentication Required"
v[408] = "Request Time-out"
v[409] = "Conflict"
v[410] = "Gone"
v[411] = "Length Required"
v[412] = "Precondition Failed"
v[413] = "Request Entity Too Large"
v[414] = "Request-URI Too Large"
v[415] = "Unsupported Media Type"
v[416] = "Requested Range Not Satisfiable"
v[417] = "Expectation Failed"
v[418] = "I'm a teapot" # RFC 2324
v[422] = "Unprocessable Entity" # RFC 4918
v[423] = "Locked" # RFC 4918
v[424] = "Failed Dependency" # RFC 4918
v[425] = "Unordered Collection" # RFC 4918
v[426] = "Upgrade Required" # RFC 2817
v[428] = "Precondition Required" # RFC 6585
v[429] = "Too Many Requests" # RFC 6585
v[431] = "Request Header Fields Too Large" # RFC 6585
v[440] = "Login Timeout"
v[444] = "nginx error: No Response"
v[495] = "nginx error: SSL Certificate Error"
v[496] = "nginx error: SSL Certificate Required"
v[497] = "nginx error: HTTP -> HTTPS"
v[499] = "nginx error or Antivirus intercepted request or ArcGIS error"
v[500] = "Internal Server Error"
v[501] = "Not Implemented"
v[502] = "Bad Gateway"
v[503] = "Service Unavailable"
v[504] = "Gateway Time-out"
v[505] = "HTTP Version Not Supported"
v[506] = "Variant Also Negotiates" # RFC 2295
v[507] = "Insufficient Storage" # RFC 4918
v[509] = "Bandwidth Limit Exceeded"
v[510] = "Not Extended" # RFC 2774
v[511] = "Network Authentication Required" # RFC 6585
v[520] = "CloudFlare Server Error: Unknown"
v[521] = "CloudFlare Server Error: Connection Refused"
v[522] = "CloudFlare Server Error: Connection Timeout"
v[523] = "CloudFlare Server Error: Origin Server Unreachable"
v[524] = "CloudFlare Server Error: Connection Timeout"
v[525] = "CloudFlare Server Error: Connection Failed"
v[526] = "CloudFlare Server Error: Invalid SSL Ceritificate"
v[527] = "CloudFlare Server Error: Railgun Error"
v[530] = "Site Frozen"
return v
end)()
end # module Messages