2021-01-27 06:14:17 +00:00
|
|
|
#
|
|
|
|
# Chronos HTTP/S common types
|
2021-02-02 22:33:14 +00:00
|
|
|
# (c) Copyright 2021-Present
|
2021-01-27 06:14:17 +00:00
|
|
|
# Status Research & Development GmbH
|
|
|
|
#
|
|
|
|
# Licensed under either of
|
|
|
|
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
|
|
# MIT license (LICENSE-MIT)
|
2021-04-26 11:05:37 +00:00
|
|
|
import std/[strutils, uri]
|
2021-05-10 07:26:36 +00:00
|
|
|
import stew/[results, endians2], httputils
|
2021-02-10 08:43:05 +00:00
|
|
|
import ../../asyncloop, ../../asyncsync
|
|
|
|
import ../../streams/[asyncstream, boundstream]
|
2021-08-26 11:22:29 +00:00
|
|
|
export asyncloop, asyncsync, results, httputils, strutils
|
2021-01-27 06:14:17 +00:00
|
|
|
|
|
|
|
const
|
2021-05-10 07:26:36 +00:00
|
|
|
HeadersMark* = @[0x0d'u8, 0x0a'u8, 0x0d'u8, 0x0a'u8]
|
2021-01-30 18:18:06 +00:00
|
|
|
PostMethods* = {MethodPost, MethodPatch, MethodPut, MethodDelete}
|
2021-01-27 06:14:17 +00:00
|
|
|
|
2021-04-26 11:05:37 +00:00
|
|
|
MaximumBodySizeError* = "Maximum size of request's body reached"
|
|
|
|
|
2021-05-10 07:26:36 +00:00
|
|
|
UserAgentHeader* = "user-agent"
|
|
|
|
DateHeader* = "date"
|
|
|
|
HostHeader* = "host"
|
|
|
|
ConnectionHeader* = "connection"
|
2021-07-28 14:08:38 +00:00
|
|
|
AcceptHeaderName* = "accept"
|
2021-05-10 07:26:36 +00:00
|
|
|
ContentLengthHeader* = "content-length"
|
|
|
|
TransferEncodingHeader* = "transfer-encoding"
|
|
|
|
ContentEncodingHeader* = "content-encoding"
|
|
|
|
ContentTypeHeader* = "content-type"
|
|
|
|
ExpectHeader* = "expect"
|
|
|
|
ServerHeader* = "server"
|
|
|
|
LocationHeader* = "location"
|
2021-06-28 23:38:08 +00:00
|
|
|
AuthorizationHeader* = "authorization"
|
2021-05-10 07:26:36 +00:00
|
|
|
|
|
|
|
UrlEncodedContentType* = "application/x-www-form-urlencoded"
|
|
|
|
MultipartContentType* = "multipart/form-data"
|
|
|
|
|
2021-01-27 06:14:17 +00:00
|
|
|
type
|
|
|
|
HttpResult*[T] = Result[T, string]
|
|
|
|
HttpResultCode*[T] = Result[T, HttpCode]
|
|
|
|
|
2021-02-03 10:47:03 +00:00
|
|
|
HttpDefect* = object of Defect
|
2021-01-27 06:14:17 +00:00
|
|
|
HttpError* = object of CatchableError
|
2021-01-27 19:39:14 +00:00
|
|
|
HttpCriticalError* = object of HttpError
|
2021-02-03 10:47:03 +00:00
|
|
|
code*: HttpCode
|
2021-01-27 19:39:14 +00:00
|
|
|
HttpRecoverableError* = object of HttpError
|
2021-02-03 10:47:03 +00:00
|
|
|
code*: HttpCode
|
2021-02-11 06:32:25 +00:00
|
|
|
HttpDisconnectError* = object of HttpError
|
2021-05-10 07:26:36 +00:00
|
|
|
HttpConnectionError* = object of HttpError
|
|
|
|
HttpInterruptError* = object of HttpError
|
|
|
|
HttpReadError* = object of HttpError
|
|
|
|
HttpWriteError* = object of HttpError
|
|
|
|
HttpProtocolError* = object of HttpError
|
|
|
|
HttpRedirectError* = object of HttpError
|
|
|
|
HttpAddressError* = object of HttpError
|
2021-01-27 19:39:14 +00:00
|
|
|
|
2021-05-17 19:39:24 +00:00
|
|
|
KeyValueTuple* = tuple
|
|
|
|
key: string
|
|
|
|
value: string
|
|
|
|
|
2021-01-27 19:39:14 +00:00
|
|
|
TransferEncodingFlags* {.pure.} = enum
|
|
|
|
Identity, Chunked, Compress, Deflate, Gzip
|
|
|
|
|
|
|
|
ContentEncodingFlags* {.pure.} = enum
|
|
|
|
Identity, Br, Compress, Deflate, Gzip
|
2021-01-27 06:14:17 +00:00
|
|
|
|
2021-05-17 19:39:24 +00:00
|
|
|
QueryParamsFlag* {.pure.} = enum
|
|
|
|
CommaSeparatedArray ## Enable usage of comma symbol as separator of array
|
|
|
|
## items
|
|
|
|
|
2021-08-06 10:13:55 +00:00
|
|
|
HttpState* {.pure.} = enum
|
|
|
|
Alive, Closing, Closed
|
|
|
|
|
2021-02-17 00:03:12 +00:00
|
|
|
proc raiseHttpCriticalError*(msg: string,
|
|
|
|
code = Http400) {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpCriticalError)(code: code, msg: msg)
|
2021-01-27 19:39:14 +00:00
|
|
|
|
2021-02-17 00:03:12 +00:00
|
|
|
proc raiseHttpDisconnectError*() {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpDisconnectError)(msg: "Remote peer disconnected")
|
2021-01-27 19:39:14 +00:00
|
|
|
|
2021-02-17 00:03:12 +00:00
|
|
|
proc raiseHttpDefect*(msg: string) {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpDefect)(msg: msg)
|
2021-02-11 06:32:25 +00:00
|
|
|
|
2021-05-10 07:26:36 +00:00
|
|
|
proc raiseHttpConnectionError*(msg: string) {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpConnectionError)(msg: msg)
|
|
|
|
|
|
|
|
proc raiseHttpInterruptError*() {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpInterruptError)(msg: "Connection was interrupted")
|
|
|
|
|
|
|
|
proc raiseHttpReadError*(msg: string) {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpReadError)(msg: msg)
|
|
|
|
|
|
|
|
proc raiseHttpProtocolError*(msg: string) {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpProtocolError)(msg: msg)
|
|
|
|
|
|
|
|
proc raiseHttpWriteError*(msg: string) {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpWriteError)(msg: msg)
|
|
|
|
|
|
|
|
proc raiseHttpRedirectError*(msg: string) {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpRedirectError)(msg: msg)
|
|
|
|
|
|
|
|
proc raiseHttpAddressError*(msg: string) {.noinline, noreturn.} =
|
|
|
|
raise (ref HttpAddressError)(msg: msg)
|
|
|
|
|
|
|
|
template newHttpInterruptError*(): ref HttpInterruptError =
|
|
|
|
newException(HttpInterruptError, "Connection was interrupted")
|
|
|
|
|
|
|
|
template newHttpReadError*(message: string): ref HttpReadError =
|
|
|
|
newException(HttpReadError, message)
|
|
|
|
|
|
|
|
template newHttpWriteError*(message: string): ref HttpWriteError =
|
|
|
|
newException(HttpWriteError, message)
|
|
|
|
|
2021-05-17 19:39:24 +00:00
|
|
|
iterator queryParams*(query: string,
|
|
|
|
flags: set[QueryParamsFlag] = {}): KeyValueTuple {.
|
2021-02-10 13:13:36 +00:00
|
|
|
raises: [Defect].} =
|
2021-01-27 19:39:14 +00:00
|
|
|
## Iterate over url-encoded query string.
|
|
|
|
for pair in query.split('&'):
|
|
|
|
let items = pair.split('=', maxsplit = 1)
|
|
|
|
let k = items[0]
|
2021-02-02 10:48:04 +00:00
|
|
|
if len(k) > 0:
|
|
|
|
let v = if len(items) > 1: items[1] else: ""
|
2021-05-17 19:39:24 +00:00
|
|
|
if CommaSeparatedArray in flags:
|
|
|
|
let key = decodeUrl(k)
|
|
|
|
for av in decodeUrl(v).split(','):
|
|
|
|
yield (k, av)
|
|
|
|
else:
|
|
|
|
yield (decodeUrl(k), decodeUrl(v))
|
2021-01-27 19:39:14 +00:00
|
|
|
|
2021-12-10 09:55:25 +00:00
|
|
|
func getTransferEncoding*(ch: openArray[string]): HttpResult[
|
2021-02-10 13:13:36 +00:00
|
|
|
set[TransferEncodingFlags]] {.
|
|
|
|
raises: [Defect].} =
|
2021-01-27 19:39:14 +00:00
|
|
|
## Parse value of multiple HTTP headers ``Transfer-Encoding`` and return
|
|
|
|
## it as set of ``TransferEncodingFlags``.
|
|
|
|
var res: set[TransferEncodingFlags] = {}
|
|
|
|
if len(ch) == 0:
|
|
|
|
res.incl(TransferEncodingFlags.Identity)
|
|
|
|
ok(res)
|
|
|
|
else:
|
|
|
|
for header in ch:
|
|
|
|
for item in header.split(","):
|
|
|
|
case strip(item.toLowerAscii())
|
|
|
|
of "identity":
|
|
|
|
res.incl(TransferEncodingFlags.Identity)
|
|
|
|
of "chunked":
|
|
|
|
res.incl(TransferEncodingFlags.Chunked)
|
|
|
|
of "compress":
|
|
|
|
res.incl(TransferEncodingFlags.Compress)
|
|
|
|
of "deflate":
|
|
|
|
res.incl(TransferEncodingFlags.Deflate)
|
|
|
|
of "gzip":
|
|
|
|
res.incl(TransferEncodingFlags.Gzip)
|
2021-02-10 13:13:36 +00:00
|
|
|
of "x-gzip":
|
|
|
|
res.incl(TransferEncodingFlags.Gzip)
|
2021-01-27 19:39:14 +00:00
|
|
|
of "":
|
|
|
|
res.incl(TransferEncodingFlags.Identity)
|
|
|
|
else:
|
|
|
|
return err("Incorrect Transfer-Encoding value")
|
|
|
|
ok(res)
|
|
|
|
|
2021-12-10 09:55:25 +00:00
|
|
|
func getContentEncoding*(ch: openArray[string]): HttpResult[
|
2021-02-10 13:13:36 +00:00
|
|
|
set[ContentEncodingFlags]] {.
|
|
|
|
raises: [Defect].} =
|
2021-01-27 19:39:14 +00:00
|
|
|
## Parse value of multiple HTTP headers ``Content-Encoding`` and return
|
|
|
|
## it as set of ``ContentEncodingFlags``.
|
|
|
|
var res: set[ContentEncodingFlags] = {}
|
|
|
|
if len(ch) == 0:
|
|
|
|
res.incl(ContentEncodingFlags.Identity)
|
|
|
|
ok(res)
|
|
|
|
else:
|
|
|
|
for header in ch:
|
|
|
|
for item in header.split(","):
|
|
|
|
case strip(item.toLowerAscii()):
|
|
|
|
of "identity":
|
|
|
|
res.incl(ContentEncodingFlags.Identity)
|
|
|
|
of "br":
|
|
|
|
res.incl(ContentEncodingFlags.Br)
|
|
|
|
of "compress":
|
|
|
|
res.incl(ContentEncodingFlags.Compress)
|
|
|
|
of "deflate":
|
|
|
|
res.incl(ContentEncodingFlags.Deflate)
|
|
|
|
of "gzip":
|
|
|
|
res.incl(ContentEncodingFlags.Gzip)
|
2021-02-10 13:13:36 +00:00
|
|
|
of "x-gzip":
|
|
|
|
res.incl(ContentEncodingFlags.Gzip)
|
2021-01-27 19:39:14 +00:00
|
|
|
of "":
|
|
|
|
res.incl(ContentEncodingFlags.Identity)
|
|
|
|
else:
|
|
|
|
return err("Incorrect Content-Encoding value")
|
|
|
|
ok(res)
|
|
|
|
|
2021-12-10 09:55:25 +00:00
|
|
|
func getContentType*(ch: openArray[string]): HttpResult[string] {.
|
2021-02-10 13:13:36 +00:00
|
|
|
raises: [Defect].} =
|
2021-01-27 19:39:14 +00:00
|
|
|
## Check and prepare value of ``Content-Type`` header.
|
2021-03-02 13:26:07 +00:00
|
|
|
if len(ch) == 0:
|
|
|
|
err("No Content-Type values found")
|
|
|
|
elif len(ch) > 1:
|
2021-01-27 19:39:14 +00:00
|
|
|
err("Multiple Content-Type values found")
|
|
|
|
else:
|
|
|
|
let mparts = ch[0].split(";")
|
|
|
|
ok(strip(mparts[0]).toLowerAscii())
|
2021-02-18 12:08:21 +00:00
|
|
|
|
2021-12-10 09:55:25 +00:00
|
|
|
proc bytesToString*(src: openArray[byte], dst: var openArray[char]) =
|
2021-02-18 12:08:21 +00:00
|
|
|
## Convert array of bytes to array of characters.
|
|
|
|
##
|
|
|
|
## Note, that this procedure assume that `sizeof(byte) == sizeof(char) == 1`.
|
|
|
|
## If this equation is not correct this procedures MUST not be used.
|
|
|
|
doAssert(len(src) == len(dst))
|
|
|
|
if len(src) > 0:
|
|
|
|
copyMem(addr dst[0], unsafeAddr src[0], len(src))
|
|
|
|
|
2021-12-10 09:55:25 +00:00
|
|
|
proc stringToBytes*(src: openArray[char], dst: var openArray[byte]) =
|
2021-02-18 12:08:21 +00:00
|
|
|
## Convert array of characters to array of bytes.
|
|
|
|
##
|
|
|
|
## Note, that this procedure assume that `sizeof(byte) == sizeof(char) == 1`.
|
|
|
|
## If this equation is not correct this procedures MUST not be used.
|
|
|
|
doAssert(len(src) == len(dst))
|
|
|
|
if len(src) > 0:
|
|
|
|
copyMem(addr dst[0], unsafeAddr src[0], len(src))
|
|
|
|
|
2021-12-10 09:55:25 +00:00
|
|
|
func bytesToString*(src: openArray[byte]): string =
|
2021-02-18 12:08:21 +00:00
|
|
|
## Convert array of bytes to a string.
|
|
|
|
##
|
|
|
|
## Note, that this procedure assume that `sizeof(byte) == sizeof(char) == 1`.
|
|
|
|
## If this equation is not correct this procedures MUST not be used.
|
|
|
|
var default: string
|
|
|
|
if len(src) > 0:
|
|
|
|
var dst = newString(len(src))
|
|
|
|
bytesToString(src, dst)
|
|
|
|
dst
|
|
|
|
else:
|
|
|
|
default
|
|
|
|
|
2021-12-10 09:55:25 +00:00
|
|
|
func stringToBytes*(src: openArray[char]): seq[byte] =
|
2021-02-18 12:08:21 +00:00
|
|
|
## Convert string to sequence of bytes.
|
|
|
|
##
|
|
|
|
## Note, that this procedure assume that `sizeof(byte) == sizeof(char) == 1`.
|
|
|
|
## If this equation is not correct this procedures MUST not be used.
|
|
|
|
var default: seq[byte]
|
|
|
|
if len(src) > 0:
|
|
|
|
var dst = newSeq[byte](len(src))
|
|
|
|
stringToBytes(src, dst)
|
|
|
|
dst
|
|
|
|
else:
|
|
|
|
default
|
2021-05-10 07:26:36 +00:00
|
|
|
|
2021-12-10 09:55:25 +00:00
|
|
|
proc dumpHex*(pbytes: openArray[byte], groupBy = 1, ascii = true): string =
|
2021-05-10 07:26:36 +00:00
|
|
|
## Get hexadecimal dump of memory for array ``pbytes``.
|
|
|
|
var res = ""
|
|
|
|
var offset = 0
|
|
|
|
var ascii = ""
|
|
|
|
|
|
|
|
while offset < len(pbytes):
|
|
|
|
if (offset mod 16) == 0:
|
|
|
|
res = res & toHex(uint64(offset)) & ": "
|
|
|
|
|
|
|
|
for k in 0 ..< groupBy:
|
|
|
|
let ch = pbytes[offset + k]
|
|
|
|
ascii.add(if ord(ch) > 31 and ord(ch) < 127: char(ch) else: '.')
|
|
|
|
|
|
|
|
let item =
|
|
|
|
case groupBy:
|
|
|
|
of 1:
|
|
|
|
toHex(pbytes[offset])
|
|
|
|
of 2:
|
|
|
|
toHex(uint16.fromBytes(pbytes.toOpenArray(offset, len(pbytes) - 1)))
|
|
|
|
of 4:
|
|
|
|
toHex(uint32.fromBytes(pbytes.toOpenArray(offset, len(pbytes) - 1)))
|
|
|
|
of 8:
|
|
|
|
toHex(uint64.fromBytes(pbytes.toOpenArray(offset, len(pbytes) - 1)))
|
|
|
|
else:
|
|
|
|
""
|
|
|
|
res.add(item)
|
|
|
|
res.add(" ")
|
|
|
|
offset = offset + groupBy
|
|
|
|
|
|
|
|
if (offset mod 16) == 0:
|
|
|
|
res.add(" ")
|
|
|
|
res.add(ascii)
|
|
|
|
ascii.setLen(0)
|
|
|
|
res.add("\p")
|
|
|
|
|
|
|
|
if (offset mod 16) != 0:
|
|
|
|
let spacesCount = ((16 - (offset mod 16)) div groupBy) *
|
|
|
|
(groupBy * 2 + 1) + 1
|
|
|
|
res = res & repeat(' ', spacesCount)
|
|
|
|
res = res & ascii
|
|
|
|
|
|
|
|
res.add("\p")
|
|
|
|
res
|