mirror of
https://github.com/swift-server/async-http-client.git
synced 2026-05-03 07:32:29 +00:00
130 lines
4.6 KiB
Swift
130 lines
4.6 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the AsyncHTTPClient open source project
|
|
//
|
|
// Copyright (c) 2018-2020 Apple Inc. and the AsyncHTTPClient project authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See CONTRIBUTORS.txt for the list of AsyncHTTPClient project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import NIOCore
|
|
import NIOHTTP1
|
|
|
|
extension HTTPHeaders {
|
|
mutating func validateAndSetTransportFraming(
|
|
method: HTTPMethod,
|
|
bodyLength: RequestBodyLength
|
|
) throws -> RequestFramingMetadata {
|
|
try self.validateFieldNames()
|
|
|
|
if case .TRACE = method {
|
|
switch bodyLength {
|
|
case .known(0):
|
|
break
|
|
case .unknown, .known:
|
|
// A client MUST NOT send a message body in a TRACE request.
|
|
// https://tools.ietf.org/html/rfc7230#section-4.3.8
|
|
throw HTTPClientError.traceRequestWithBody
|
|
}
|
|
}
|
|
|
|
self.setTransportFraming(method: method, bodyLength: bodyLength)
|
|
|
|
let connectionClose = self[canonicalForm: "connection"].lazy.map { $0.lowercased() }.contains("close")
|
|
switch bodyLength {
|
|
case .unknown:
|
|
return .init(connectionClose: connectionClose, body: .stream)
|
|
case .known(let length):
|
|
return .init(connectionClose: connectionClose, body: .fixedSize(length))
|
|
}
|
|
}
|
|
|
|
private func validateFieldNames() throws {
|
|
let invalidFieldNames = self.compactMap { name, _ -> String? in
|
|
let satisfy = name.utf8.allSatisfy { char -> Bool in
|
|
switch char {
|
|
case UInt8(ascii: "a")...UInt8(ascii: "z"),
|
|
UInt8(ascii: "A")...UInt8(ascii: "Z"),
|
|
UInt8(ascii: "0")...UInt8(ascii: "9"),
|
|
UInt8(ascii: "!"),
|
|
UInt8(ascii: "#"),
|
|
UInt8(ascii: "$"),
|
|
UInt8(ascii: "%"),
|
|
UInt8(ascii: "&"),
|
|
UInt8(ascii: "'"),
|
|
UInt8(ascii: "*"),
|
|
UInt8(ascii: "+"),
|
|
UInt8(ascii: "-"),
|
|
UInt8(ascii: "."),
|
|
UInt8(ascii: "^"),
|
|
UInt8(ascii: "_"),
|
|
UInt8(ascii: "`"),
|
|
UInt8(ascii: "|"),
|
|
UInt8(ascii: "~"):
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
return satisfy ? nil : name
|
|
}
|
|
|
|
guard invalidFieldNames.count == 0 else {
|
|
throw HTTPClientError.invalidHeaderFieldNames(invalidFieldNames)
|
|
}
|
|
}
|
|
|
|
private mutating func setTransportFraming(
|
|
method: HTTPMethod,
|
|
bodyLength: RequestBodyLength
|
|
) {
|
|
self.remove(name: "Content-Length")
|
|
self.remove(name: "Transfer-Encoding")
|
|
|
|
switch bodyLength {
|
|
case .known(0):
|
|
// if we don't have a body we might not need to send the Content-Length field
|
|
// https://tools.ietf.org/html/rfc7230#section-3.3.2
|
|
switch method {
|
|
case .GET, .HEAD, .DELETE, .CONNECT, .TRACE:
|
|
// A user agent SHOULD NOT send a Content-Length header field when the request
|
|
// message does not contain a payload body and the method semantics do not
|
|
// anticipate such a body.
|
|
break
|
|
default:
|
|
// A user agent SHOULD send a Content-Length in a request message when
|
|
// no Transfer-Encoding is sent and the request method defines a meaning
|
|
// for an enclosed payload body.
|
|
self.add(name: "Content-Length", value: "0")
|
|
}
|
|
case .known(let length):
|
|
self.add(name: "Content-Length", value: String(length))
|
|
case .unknown:
|
|
self.add(name: "Transfer-Encoding", value: "chunked")
|
|
}
|
|
}
|
|
}
|
|
|
|
extension HTTPHeaders {
|
|
mutating func addHostIfNeeded(for url: DeconstructedURL) {
|
|
// if no host header was set, let's use the url host
|
|
guard !self.contains(name: "host"),
|
|
var host = url.connectionTarget.host
|
|
else {
|
|
return
|
|
}
|
|
// if the request uses a non-default port, we need to add it after the host
|
|
if let port = url.connectionTarget.port,
|
|
port != url.scheme.defaultPort {
|
|
host += ":\(port)"
|
|
}
|
|
self.add(name: "host", value: host)
|
|
}
|
|
}
|