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 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2017-2018 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import NIO
let crlf: StaticString = "\r\n"
let headerSeparator: StaticString = ": "
extension HTTPHeaders {
internal enum ConnectionHeaderValue {
case keepAlive
case close
case unspecified
}
}
// Keep track of keep alive state.
internal enum KeepAliveState {
// We know keep alive should be used.
case keepAlive
// We know we should close the connection.
case close
// We need to scan the headers to find out if keep alive is used or not
case unknown
}
/// A representation of the request line and header fields of a HTTP request.
public struct HTTPRequestHead: Equatable {
private final class _Storage {
var method: HTTPMethod
var uri: String
var version: HTTPVersion
init(method: HTTPMethod, uri: String, version: HTTPVersion) {
self.method = method
self.uri = uri
self.version = version
}
func copy() -> _Storage {
return .init(method: self.method, uri: self.uri, version: self.version)
}
}
private var _storage: _Storage
/// The header fields for this HTTP request.
// warning: do not put this in `_Storage` as it'd trigger a CoW on every mutation
public var headers: HTTPHeaders
/// The HTTP method for this request.
public var method: HTTPMethod {
get {
return self._storage.method
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.method = newValue
}
}
// This request's URI.
public var uri: String {
get {
return self._storage.uri
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.uri = newValue
}
}
/// The version for this HTTP request.
public var version: HTTPVersion {
get {
return self._storage.version
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.version = newValue
}
}
/// Create a `HTTPRequestHead`
///
/// - parameters:
/// - version: The version for this HTTP request.
/// - method: The HTTP method for this request.
/// - uri: The URI used on this request.
/// - headers: This request's HTTP headers.
public init(version: HTTPVersion, method: HTTPMethod, uri: String, headers: HTTPHeaders) {
self._storage = .init(method: method, uri: uri, version: version)
self.headers = headers
}
/// Create a `HTTPRequestHead`
///
/// - Parameter version: The version for this HTTP request.
/// - Parameter method: The HTTP method for this request.
/// - Parameter uri: The URI used on this request.
public init(version: HTTPVersion, method: HTTPMethod, uri: String) {
self.init(version: version, method: method, uri: uri, headers: HTTPHeaders())
}
public static func ==(lhs: HTTPRequestHead, rhs: HTTPRequestHead) -> Bool {
return lhs.method == rhs.method && lhs.uri == rhs.uri && lhs.version == rhs.version && lhs.headers == rhs.headers
}
private mutating func copyStorageIfNotUniquelyReferenced () {
if !isKnownUniquelyReferenced(&self._storage) {
self._storage = self._storage.copy()
}
}
}
/// The parts of a complete HTTP message, either request or response.
///
/// A HTTP message is made up of a request or status line with several headers,
/// encoded by `.head`, zero or more body parts, and optionally some trailers. To
/// indicate that a complete HTTP message has been sent or received, we use `.end`,
/// which may also contain any trailers that make up the mssage.
public enum HTTPPart<HeadT: Equatable, BodyT: Equatable> {
case head(HeadT)
case body(BodyT)
case end(HTTPHeaders?)
}
extension HTTPPart: Equatable {}
/// The components of a HTTP request from the view of a HTTP client.
public typealias HTTPClientRequestPart = HTTPPart<HTTPRequestHead, IOData>
/// The components of a HTTP request from the view of a HTTP server.
public typealias HTTPServerRequestPart = HTTPPart<HTTPRequestHead, ByteBuffer>
/// The components of a HTTP response from the view of a HTTP client.
public typealias HTTPClientResponsePart = HTTPPart<HTTPResponseHead, ByteBuffer>
/// The components of a HTTP response from the view of a HTTP server.
public typealias HTTPServerResponsePart = HTTPPart<HTTPResponseHead, IOData>
extension HTTPRequestHead {
/// Whether this HTTP request is a keep-alive request: that is, whether the
/// connection should remain open after the request is complete.
public var isKeepAlive: Bool {
return headers.isKeepAlive(version: version)
}
}
extension HTTPResponseHead {
/// Whether this HTTP response is a keep-alive request: that is, whether the
/// connection should remain open after the request is complete.
public var isKeepAlive: Bool {
return self.headers.isKeepAlive(version: self.version)
}
}
/// A representation of the status line and header fields of a HTTP response.
public struct HTTPResponseHead: Equatable {
private final class _Storage {
var status: HTTPResponseStatus
var version: HTTPVersion
init(status: HTTPResponseStatus, version: HTTPVersion) {
self.status = status
self.version = version
}
func copy() -> _Storage {
return .init(status: self.status, version: self.version)
}
}
private var _storage: _Storage
/// The HTTP headers on this response.
// warning: do not put this in `_Storage` as it'd trigger a CoW on every mutation
public var headers: HTTPHeaders
/// The HTTP response status.
public var status: HTTPResponseStatus {
get {
return self._storage.status
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.status = newValue
}
}
/// The HTTP version that corresponds to this response.
public var version: HTTPVersion {
get {
return self._storage.version
}
set {
self.copyStorageIfNotUniquelyReferenced()
self._storage.version = newValue
}
}
/// Create a `HTTPResponseHead`
///
/// - Parameter version: The version for this HTTP response.
/// - Parameter status: The status for this HTTP response.
/// - Parameter headers: The headers for this HTTP response.
public init(version: HTTPVersion, status: HTTPResponseStatus, headers: HTTPHeaders = HTTPHeaders()) {
self.headers = headers
self._storage = _Storage(status: status, version: version)
}
public static func ==(lhs: HTTPResponseHead, rhs: HTTPResponseHead) -> Bool {
return lhs.status == rhs.status && lhs.version == rhs.version && lhs.headers == rhs.headers
}
private mutating func copyStorageIfNotUniquelyReferenced () {
if !isKnownUniquelyReferenced(&self._storage) {
self._storage = self._storage.copy()
}
}
}
private extension UInt8 {
var isASCII: Bool {
return self <= 127
}
}
extension HTTPHeaders {
func isKeepAlive(version: HTTPVersion) -> Bool {
switch self.keepAliveState {
case .close:
return false
case .keepAlive:
return true
case .unknown:
var state = KeepAliveState.unknown
for word in self[canonicalForm: "connection"] {
if word.utf8.compareCaseInsensitiveASCIIBytes(to: "close".utf8) {
// if we see multiple values, that's clearly bad and we default to 'close'
state = state != .unknown ? .close : .close
} else if word.utf8.compareCaseInsensitiveASCIIBytes(to: "keep-alive".utf8) {
// if we see multiple values, that's clearly bad and we default to 'close'
state = state != .unknown ? .close : .keepAlive
}
}
switch state {
case .close:
return false
case .keepAlive:
return true
case .unknown:
// HTTP 1.1 use keep-alive by default if not otherwise told.
return version.major == 1 && version.minor >= 1
}
}
}
}
/// A representation of a block of HTTP header fields.
///
/// HTTP header fields are a complex data structure. The most natural representation
/// for these is a sequence of two-tuples of field name and field value, both as
/// strings. This structure preserves that representation, but provides a number of
/// convenience features in addition to it.
///
/// For example, this structure enables access to header fields based on the
/// case-insensitive form of the field name, but preserves the original case of the
/// field when needed. It also supports recomposing headers to a maximally joined
/// or split representation, such that header fields that are able to be repeated
/// can be represented appropriately.
public struct HTTPHeaders: CustomStringConvertible, ExpressibleByDictionaryLiteral {
@usableFromInline
internal var headers: [(String, String)]
internal var keepAliveState: KeepAliveState = .unknown
public var description: String {
return self.headers.description
}
internal var names: [String] {
return self.headers.map { $0.0 }
}
internal init(_ headers: [(String, String)], keepAliveState: KeepAliveState) {
self.headers = headers
self.keepAliveState = keepAliveState
}
internal func isConnectionHeader(_ name: String) -> Bool {
return name.utf8.compareCaseInsensitiveASCIIBytes(to: "connection".utf8)
}
/// Construct a `HTTPHeaders` structure.
///
/// - parameters
/// - headers: An initial set of headers to use to populate the header block.
/// - allocator: The allocator to use to allocate the underlying storage.
public init(_ headers: [(String, String)] = []) {
// Note: this initializer exists because of https://bugs.swift.org/browse/SR-7415.
// Otherwise we'd only have the one below with a default argument for `allocator`.
self.init(headers, keepAliveState: .unknown)
}
/// Construct a `HTTPHeaders` structure.
///
/// - parameters
/// - elements: name, value pairs provided by a dictionary literal.
public init(dictionaryLiteral elements: (String, String)...) {
self.init(elements)
}
/// Add a header name/value pair to the block.
///
/// This method is strictly additive: if there are other values for the given header name
/// already in the block, this will add a new entry.
///
/// - Parameter name: The header field name. For maximum compatibility this should be an
/// ASCII string. For future-proofing with HTTP/2 lowercase header names are strongly
/// recommended.
/// - Parameter value: The header field value to add for the given name.
public mutating func add(name: String, value: String) {
precondition(!name.utf8.contains(where: { !$0.isASCII }), "name must be ASCII")
self.headers.append((name, value))
if self.isConnectionHeader(name) {
self.keepAliveState = .unknown
}
}
/// Add a sequence of header name/value pairs to the block.
///
/// This method is strictly additive: if there are other entries with the same header
/// name already in the block, this will add new entries.
///
/// - Parameter contentsOf: The sequence of header name/value pairs. For maximum compatibility
/// the header should be an ASCII string. For future-proofing with HTTP/2 lowercase header
/// names are strongly recommended.
@inlinable
public mutating func add<S: Sequence>(contentsOf other: S) where S.Element == (String, String) {
self.headers.reserveCapacity(self.headers.count + other.underestimatedCount)
for (name, value) in other {
self.add(name: name, value: value)
}
}
/// Add another block of headers to the block.
///
/// - Parameter contentsOf: The block of headers to add to these headers.
public mutating func add(contentsOf other: HTTPHeaders) {
self.headers.append(contentsOf: other.headers)
if other.keepAliveState == .unknown {
self.keepAliveState = .unknown
}
}
/// Add a header name/value pair to the block, replacing any previous values for the
/// same header name that are already in the block.
///
/// This is a supplemental method to `add` that essentially combines `remove` and `add`
/// in a single function. It can be used to ensure that a header block is in a
/// well-defined form without having to check whether the value was previously there.
/// Like `add`, this method performs case-insensitive comparisons of the header field
/// names.
///
/// - Parameter name: The header field name. For maximum compatibility this should be an
/// ASCII string. For future-proofing with HTTP/2 lowercase header names are strongly
// recommended.
/// - Parameter value: The header field value to add for the given name.
public mutating func replaceOrAdd(name: String, value: String) {
if self.isConnectionHeader(name) {
self.keepAliveState = .unknown
}
self.remove(name: name)
self.add(name: name, value: value)
}
/// Remove all values for a given header name from the block.
///
/// This method uses case-insensitive comparisons for the header field name.
///
/// - Parameter name: The name of the header field to remove from the block.
public mutating func remove(name nameToRemove: String) {
if self.isConnectionHeader(nameToRemove) {
self.keepAliveState = .unknown
}
self.headers.removeAll { (name, _) in
if nameToRemove.utf8.count != name.utf8.count {
return false
}
return nameToRemove.utf8.compareCaseInsensitiveASCIIBytes(to: name.utf8)
}
}
/// Retrieve all of the values for a give header field name from the block.
///
/// This method uses case-insensitive comparisons for the header field name. It
/// does not return a maximally-decomposed list of the header fields, but instead
/// returns them in their original representation: that means that a comma-separated
/// header field list may contain more than one entry, some of which contain commas
/// and some do not. If you want a representation of the header fields suitable for
/// performing computation on, consider `subscript(canonicalForm:)`.
///
/// - Parameter name: The header field name whose values are to be retrieved.
/// - Returns: A list of the values for that header field name.
public subscript(name: String) -> [String] {
return self.headers.reduce(into: []) { target, lr in
let (key, value) = lr
if key.utf8.compareCaseInsensitiveASCIIBytes(to: name.utf8) {
target.append(value)
}
}
}
/// Retrieves the first value for a given header field name from the block.
///
/// This method uses case-insensitive comparisons for the header field name. It
/// does not return the first value from a maximally-decomposed list of the header fields,
/// but instead returns the first value from the original representation: that means
/// that a comma-separated header field list may contain more than one entry, some of
/// which contain commas and some do not. If you want a representation of the header fields
/// suitable for performing computation on, consider `subscript(canonicalForm:)`.
///
/// - Parameter name: The header field name whose first value should be retrieved.
/// - Returns: The first value for the header field name.
public func first(name: String) -> String? {
guard !self.headers.isEmpty else {
return nil
}
return self.headers.first { header in header.0.isEqualCaseInsensitiveASCIIBytes(to: name) }?.1
}
/// Checks if a header is present
///
/// - parameters:
/// - name: The name of the header
// - returns: `true` if a header with the name (and value) exists, `false` otherwise.
public func contains(name: String) -> Bool {
for kv in self.headers {
if kv.0.utf8.compareCaseInsensitiveASCIIBytes(to: name.utf8) {
return true
}
}
return false
}
/// Retrieves the header values for the given header field in "canonical form": that is,
/// splitting them on commas as extensively as possible such that multiple values received on the
/// one line are returned as separate entries. Also respects the fact that Set-Cookie should not
/// be split in this way.
///
/// - Parameter name: The header field name whose values are to be retrieved.
/// - Returns: A list of the values for that header field name.
public subscript(canonicalForm name: String) -> [Substring] {
let result = self[name]
guard result.count > 0 else {
return []
}
// It's not safe to split Set-Cookie on comma.
guard name.lowercased() != "set-cookie" else {
return result.map { $0[...] }
}
return result.flatMap { $0.split(separator: ",").map { $0.trimWhitespace() } }
}
}
extension HTTPHeaders {
/// The total number of headers that can be contained without allocating new storage.
public var capacity: Int {
return self.headers.capacity
}
/// Reserves enough space to store the specified number of headers.
///
/// - Parameter minimumCapacity: The requested number of headers to store.
public mutating func reserveCapacity(_ minimumCapacity: Int) {
self.headers.reserveCapacity(minimumCapacity)
}
}
extension ByteBuffer {
/// Serializes this HTTP header block to bytes suitable for writing to the wire.
///
/// - Parameter buffer: A buffer to write the serialized bytes into. Will increment
/// the writer index of this buffer.
mutating func write(headers: HTTPHeaders) {
for header in headers.headers {
self.writeString(header.0)
self.writeStaticString(": ")
self.writeString(header.1)
self.writeStaticString("\r\n")
}
self.writeStaticString(crlf)
}
}
extension HTTPHeaders: RandomAccessCollection {
public typealias Element = (name: String, value: String)
public struct Index: Comparable {
fileprivate let base: Array<(String, String)>.Index
public static func < (lhs: Index, rhs: Index) -> Bool {
return lhs.base < rhs.base
}
}
public var startIndex: HTTPHeaders.Index {
return .init(base: self.headers.startIndex)
}
public var endIndex: HTTPHeaders.Index {
return .init(base: self.headers.endIndex)
}
public func index(before i: HTTPHeaders.Index) -> HTTPHeaders.Index {
return .init(base: self.headers.index(before: i.base))
}
public func index(after i: HTTPHeaders.Index) -> HTTPHeaders.Index {
return .init(base: self.headers.index(after: i.base))
}
public subscript(position: HTTPHeaders.Index) -> Element {
return self.headers[position.base]
}
}
extension Character {
var isASCIIWhitespace: Bool {
return self == " " || self == "\t" || self == "\r" || self == "\n" || self == "\r\n"
}
}
extension String {
func trimASCIIWhitespace() -> Substring {
return self.dropFirst(0).trimWhitespace()
}
}
private extension Substring {
func trimWhitespace() -> Substring {
var me = self
while me.first?.isASCIIWhitespace == .some(true) {
me = me.dropFirst()
}
while me.last?.isASCIIWhitespace == .some(true) {
me = me.dropLast()
}
return me
}
}
extension HTTPHeaders: Equatable {
public static func ==(lhs: HTTPHeaders, rhs: HTTPHeaders) -> Bool {
guard lhs.headers.count == rhs.headers.count else {
return false
}
let lhsNames = Set(lhs.names.map { $0.lowercased() })
let rhsNames = Set(rhs.names.map { $0.lowercased() })
guard lhsNames == rhsNames else {
return false
}
for name in lhsNames {
guard lhs[name].sorted() == rhs[name].sorted() else {
return false
}
}
return true
}
}
public enum HTTPMethod: Equatable {
internal enum HasBody {
case yes
case no
case unlikely
}
case GET
case PUT
case ACL
case HEAD
case POST
case COPY
case LOCK
case MOVE
case BIND
case LINK
case PATCH
case TRACE
case MKCOL
case MERGE
case PURGE
case NOTIFY
case SEARCH
case UNLOCK
case REBIND
case UNBIND
case REPORT
case DELETE
case UNLINK
case CONNECT
case MSEARCH
case OPTIONS
case PROPFIND
case CHECKOUT
case PROPPATCH
case SUBSCRIBE
case MKCALENDAR
case MKACTIVITY
case UNSUBSCRIBE
case SOURCE
case RAW(value: String)
/// Whether requests with this verb may have a request body.
internal var hasRequestBody: HasBody {
switch self {
case .TRACE:
return .no
case .POST, .PUT, .PATCH:
return .yes
case .GET, .CONNECT, .OPTIONS, .HEAD, .DELETE:
fallthrough
default:
return .unlikely
}
}
}
/// A structure representing a HTTP version.
public struct HTTPVersion: Equatable {
/// Create a HTTP version.
///
/// - Parameter major: The major version number.
/// - Parameter minor: The minor version number.
public init(major: Int, minor: Int) {
self._major = UInt16(major)
self._minor = UInt16(minor)
}
private var _minor: UInt16
private var _major: UInt16
/// The major version number.
public var major: Int {
get {
return Int(self._major)
}
set {
self._major = UInt16(newValue)
}
}
/// The minor version number.
public var minor: Int {
get {
return Int(self._minor)
}
set {
self._minor = UInt16(newValue)
}
}
/// HTTP/3
public static let http3 = HTTPVersion(major: 3, minor: 0)
/// HTTP/2
public static let http2 = HTTPVersion(major: 2, minor: 0)
/// HTTP/1.1
public static let http1_1 = HTTPVersion(major: 1, minor: 1)
/// HTTP/1.0
public static let http1_0 = HTTPVersion(major: 1, minor: 0)
/// HTTP/0.9 (not supported by SwiftNIO)
public static let http0_9 = HTTPVersion(major: 0, minor: 9)
}
extension HTTPParserError: CustomDebugStringConvertible {
public var debugDescription: String {
switch self {
case .invalidCharactersUsed:
return "illegal characters used in URL/headers"
case .trailingGarbage:
return "trailing garbage bytes"
case .invalidEOFState:
return "stream ended at an unexpected time"
case .headerOverflow:
return "too many header bytes seen; overflow detected"
case .closedConnection:
return "data received after completed connection: close message"
case .invalidVersion:
return "invalid HTTP version"
case .invalidStatus:
return "invalid HTTP status code"
case .invalidMethod:
return "invalid HTTP method"
case .invalidURL:
return "invalid URL"
case .invalidHost:
return "invalid host"
case .invalidPort:
return "invalid port"
case .invalidPath:
return "invalid path"
case .invalidQueryString:
return "invalid query string"
case .invalidFragment:
return "invalid fragment"
case .lfExpected:
return "LF character expected"
case .invalidHeaderToken:
return "invalid character in header"
case .invalidContentLength:
return "invalid character in content-length header"
case .unexpectedContentLength:
return "unexpected content-length header"
case .invalidChunkSize:
return "invalid character in chunk size header"
case .invalidConstant:
return "invalid constant string"
case .invalidInternalState:
return "invalid internal state (swift-http-parser error)"
case .strictModeAssertion:
return "strict mode assertion"
case .paused:
return "paused (swift-http-parser error)"
case .unknown:
return "unknown (http_parser error)"
}
}
}
/// Errors that can be raised while parsing HTTP/1.1.
public enum HTTPParserError: Error {
case invalidCharactersUsed
case trailingGarbage
/* from CHTTPParser */
case invalidEOFState
case headerOverflow
case closedConnection
case invalidVersion
case invalidStatus
case invalidMethod
case invalidURL
case invalidHost
case invalidPort
case invalidPath
case invalidQueryString
case invalidFragment
case lfExpected
case invalidHeaderToken
case invalidContentLength
case unexpectedContentLength
case invalidChunkSize
case invalidConstant
case invalidInternalState
case strictModeAssertion
case paused
case unknown
}
extension HTTPResponseStatus {
/// The numerical status code for a given HTTP response status.
public var code: UInt {
get {
switch self {
case .continue:
return 100
case .switchingProtocols:
return 101
case .processing:
return 102
case .ok:
return 200
case .created:
return 201
case .accepted:
return 202
case .nonAuthoritativeInformation:
return 203
case .noContent:
return 204
case .resetContent:
return 205
case .partialContent:
return 206
case .multiStatus:
return 207
case .alreadyReported:
return 208
case .imUsed:
return 226
case .multipleChoices:
return 300
case .movedPermanently:
return 301
case .found:
return 302
case .seeOther:
return 303
case .notModified:
return 304
case .useProxy:
return 305
case .temporaryRedirect:
return 307
case .permanentRedirect:
return 308
case .badRequest:
return 400
case .unauthorized:
return 401
case .paymentRequired:
return 402
case .forbidden:
return 403
case .notFound:
return 404
case .methodNotAllowed:
return 405
case .notAcceptable:
return 406
case .proxyAuthenticationRequired:
return 407
case .requestTimeout:
return 408
case .conflict:
return 409
case .gone:
return 410
case .lengthRequired:
return 411
case .preconditionFailed:
return 412
case .payloadTooLarge:
return 413
case .uriTooLong:
return 414
case .unsupportedMediaType:
return 415
case .rangeNotSatisfiable:
return 416
case .expectationFailed:
return 417
case .imATeapot:
return 418
case .misdirectedRequest:
return 421
case .unprocessableEntity:
return 422
case .locked:
return 423
case .failedDependency:
return 424
case .upgradeRequired:
return 426
case .preconditionRequired:
return 428
case .tooManyRequests:
return 429
case .requestHeaderFieldsTooLarge:
return 431
case .unavailableForLegalReasons:
return 451
case .internalServerError:
return 500
case .notImplemented:
return 501
case .badGateway:
return 502
case .serviceUnavailable:
return 503
case .gatewayTimeout:
return 504
case .httpVersionNotSupported:
return 505
case .variantAlsoNegotiates:
return 506
case .insufficientStorage:
return 507
case .loopDetected:
return 508
case .notExtended:
return 510
case .networkAuthenticationRequired:
return 511
case .custom(code: let code, reasonPhrase: _):
return code
}
}
}
/// The string reason phrase for a given HTTP response status.
public var reasonPhrase: String {
get {
switch self {
case .continue:
return "Continue"
case .switchingProtocols:
return "Switching Protocols"
case .processing:
return "Processing"
case .ok:
return "OK"
case .created:
return "Created"
case .accepted:
return "Accepted"
case .nonAuthoritativeInformation:
return "Non-Authoritative Information"
case .noContent:
return "No Content"
case .resetContent:
return "Reset Content"
case .partialContent:
return "Partial Content"
case .multiStatus:
return "Multi-Status"
case .alreadyReported:
return "Already Reported"
case .imUsed:
return "IM Used"
case .multipleChoices:
return "Multiple Choices"
case .movedPermanently:
return "Moved Permanently"
case .found:
return "Found"
case .seeOther:
return "See Other"
case .notModified:
return "Not Modified"
case .useProxy:
return "Use Proxy"
case .temporaryRedirect:
return "Temporary Redirect"
case .permanentRedirect:
return "Permanent Redirect"
case .badRequest:
return "Bad Request"
case .unauthorized:
return "Unauthorized"
case .paymentRequired:
return "Payment Required"
case .forbidden:
return "Forbidden"
case .notFound:
return "Not Found"
case .methodNotAllowed:
return "Method Not Allowed"
case .notAcceptable:
return "Not Acceptable"
case .proxyAuthenticationRequired:
return "Proxy Authentication Required"
case .requestTimeout:
return "Request Timeout"
case .conflict:
return "Conflict"
case .gone:
return "Gone"
case .lengthRequired:
return "Length Required"
case .preconditionFailed:
return "Precondition Failed"
case .payloadTooLarge:
return "Payload Too Large"
case .uriTooLong:
return "URI Too Long"
case .unsupportedMediaType:
return "Unsupported Media Type"
case .rangeNotSatisfiable:
return "Range Not Satisfiable"
case .expectationFailed:
return "Expectation Failed"
case .imATeapot:
return "I'm a teapot"
case .misdirectedRequest:
return "Misdirected Request"
case .unprocessableEntity:
return "Unprocessable Entity"
case .locked:
return "Locked"
case .failedDependency:
return "Failed Dependency"
case .upgradeRequired:
return "Upgrade Required"
case .preconditionRequired:
return "Precondition Required"
case .tooManyRequests:
return "Too Many Requests"
case .requestHeaderFieldsTooLarge:
return "Request Header Fields Too Large"
case .unavailableForLegalReasons:
return "Unavailable For Legal Reasons"
case .internalServerError:
return "Internal Server Error"
case .notImplemented:
return "Not Implemented"
case .badGateway:
return "Bad Gateway"
case .serviceUnavailable:
return "Service Unavailable"
case .gatewayTimeout:
return "Gateway Timeout"
case .httpVersionNotSupported:
return "HTTP Version Not Supported"
case .variantAlsoNegotiates:
return "Variant Also Negotiates"
case .insufficientStorage:
return "Insufficient Storage"
case .loopDetected:
return "Loop Detected"
case .notExtended:
return "Not Extended"
case .networkAuthenticationRequired:
return "Network Authentication Required"
case .custom(code: _, reasonPhrase: let phrase):
return phrase
}
}
}
}
/// A HTTP response status code.
public enum HTTPResponseStatus {
/* use custom if you want to use a non-standard response code or
have it available in a (UInt, String) pair from a higher-level web framework. */
case custom(code: UInt, reasonPhrase: String)
/* all the codes from http://www.iana.org/assignments/http-status-codes */
// 1xx
case `continue`
case switchingProtocols
case processing
// TODO: add '103: Early Hints' (requires bumping SemVer major).
// 2xx
case ok
case created
case accepted
case nonAuthoritativeInformation
case noContent
case resetContent
case partialContent
case multiStatus
case alreadyReported
case imUsed
// 3xx
case multipleChoices
case movedPermanently
case found
case seeOther
case notModified
case useProxy
case temporaryRedirect
case permanentRedirect
// 4xx
case badRequest
case unauthorized
case paymentRequired
case forbidden
case notFound
case methodNotAllowed
case notAcceptable
case proxyAuthenticationRequired
case requestTimeout
case conflict
case gone
case lengthRequired
case preconditionFailed
case payloadTooLarge
case uriTooLong
case unsupportedMediaType
case rangeNotSatisfiable
case expectationFailed
case imATeapot
case misdirectedRequest
case unprocessableEntity
case locked
case failedDependency
case upgradeRequired
case preconditionRequired
case tooManyRequests
case requestHeaderFieldsTooLarge
case unavailableForLegalReasons
// 5xx
case internalServerError
case notImplemented
case badGateway
case serviceUnavailable
case gatewayTimeout
case httpVersionNotSupported
case variantAlsoNegotiates
case insufficientStorage
case loopDetected
case notExtended
case networkAuthenticationRequired
/// Whether responses with this status code may have a response body.
public var mayHaveResponseBody: Bool {
switch self {
case .`continue`,
.switchingProtocols,
.processing,
.noContent,
.custom where (code < 200) && (code >= 100):
return false
default:
return true
}
}
/// Initialize a `HTTPResponseStatus` from a given status and reason.
///
/// - Parameter statusCode: The integer value of the HTTP response status code
/// - Parameter reasonPhrase: The textual reason phrase from the response. This will be
/// discarded in favor of the default if the `statusCode` matches one that we know.
public init(statusCode: Int, reasonPhrase: String = "") {
switch statusCode {
case 100:
self = .`continue`
case 101:
self = .switchingProtocols
case 102:
self = .processing
case 200:
self = .ok
case 201:
self = .created
case 202:
self = .accepted
case 203:
self = .nonAuthoritativeInformation
case 204:
self = .noContent
case 205:
self = .resetContent
case 206:
self = .partialContent
case 207:
self = .multiStatus
case 208:
self = .alreadyReported
case 226:
self = .imUsed
case 300:
self = .multipleChoices
case 301:
self = .movedPermanently
case 302:
self = .found
case 303:
self = .seeOther
case 304:
self = .notModified
case 305:
self = .useProxy
case 307:
self = .temporaryRedirect
case 308:
self = .permanentRedirect
case 400:
self = .badRequest
case 401:
self = .unauthorized
case 402:
self = .paymentRequired
case 403:
self = .forbidden
case 404:
self = .notFound
case 405:
self = .methodNotAllowed
case 406:
self = .notAcceptable
case 407:
self = .proxyAuthenticationRequired
case 408:
self = .requestTimeout
case 409:
self = .conflict
case 410:
self = .gone
case 411:
self = .lengthRequired
case 412:
self = .preconditionFailed
case 413:
self = .payloadTooLarge
case 414:
self = .uriTooLong
case 415:
self = .unsupportedMediaType
case 416:
self = .rangeNotSatisfiable
case 417:
self = .expectationFailed
case 418:
self = .imATeapot
case 421:
self = .misdirectedRequest
case 422:
self = .unprocessableEntity
case 423:
self = .locked
case 424:
self = .failedDependency
case 426:
self = .upgradeRequired
case 428:
self = .preconditionRequired
case 429:
self = .tooManyRequests
case 431:
self = .requestHeaderFieldsTooLarge
case 451:
self = .unavailableForLegalReasons
case 500:
self = .internalServerError
case 501:
self = .notImplemented
case 502:
self = .badGateway
case 503:
self = .serviceUnavailable
case 504:
self = .gatewayTimeout
case 505:
self = .httpVersionNotSupported
case 506:
self = .variantAlsoNegotiates
case 507:
self = .insufficientStorage
case 508:
self = .loopDetected
case 510:
self = .notExtended
case 511:
self = .networkAuthenticationRequired
default:
self = .custom(code: UInt(statusCode), reasonPhrase: reasonPhrase)
}
}
}
extension HTTPResponseStatus: Equatable {
public static func ==(lhs: HTTPResponseStatus, rhs: HTTPResponseStatus) -> Bool {
switch (lhs, rhs) {
case (.custom(let lcode, let lreason), .custom(let rcode, let rreason)):
return lcode == rcode && lreason == rreason
case (.custom, _), (_, .custom):
return false
default:
return lhs.code == rhs.code
}
}
}
extension HTTPRequestHead: CustomStringConvertible {
public var description: String {
return "HTTPRequestHead { method: \(self.method), uri: \"\(self.uri)\", version: \(self.version), headers: \(self.headers) }"
}
}
extension HTTPResponseHead: CustomStringConvertible {
public var description: String {
return "HTTPResponseHead { version: \(self.version), status: \(self.status), headers: \(self.headers) }"
}
}
extension HTTPVersion: CustomStringConvertible {
public var description: String {
return "HTTP/\(self.major).\(self.minor)"
}
}
extension HTTPMethod: RawRepresentable {
public var rawValue: String {
switch self {
case .GET:
return "GET"
case .PUT:
return "PUT"
case .ACL:
return "ACL"
case .HEAD:
return "HEAD"
case .POST:
return "POST"
case .COPY:
return "COPY"
case .LOCK:
return "LOCK"
case .MOVE:
return "MOVE"
case .BIND:
return "BIND"
case .LINK:
return "LINK"
case .PATCH:
return "PATCH"
case .TRACE:
return "TRACE"
case .MKCOL:
return "MKCOL"
case .MERGE:
return "MERGE"
case .PURGE:
return "PURGE"
case .NOTIFY:
return "NOTIFY"
case .SEARCH:
return "SEARCH"
case .UNLOCK:
return "UNLOCK"
case .REBIND:
return "REBIND"
case .UNBIND:
return "UNBIND"
case .REPORT:
return "REPORT"
case .DELETE:
return "DELETE"
case .UNLINK:
return "UNLINK"
case .CONNECT:
return "CONNECT"
case .MSEARCH:
return "MSEARCH"
case .OPTIONS:
return "OPTIONS"
case .PROPFIND:
return "PROPFIND"
case .CHECKOUT:
return "CHECKOUT"
case .PROPPATCH:
return "PROPPATCH"
case .SUBSCRIBE:
return "SUBSCRIBE"
case .MKCALENDAR:
return "MKCALENDAR"
case .MKACTIVITY:
return "MKACTIVITY"
case .UNSUBSCRIBE:
return "UNSUBSCRIBE"
case .SOURCE:
return "SOURCE"
case let .RAW(value):
return value
}
}
public init(rawValue: String) {
switch rawValue {
case "GET":
self = .GET
case "PUT":
self = .PUT
case "ACL":
self = .ACL
case "HEAD":
self = .HEAD
case "POST":
self = .POST
case "COPY":
self = .COPY
case "LOCK":
self = .LOCK
case "MOVE":
self = .MOVE
case "BIND":
self = .BIND
case "LINK":
self = .LINK
case "PATCH":
self = .PATCH
case "TRACE":
self = .TRACE
case "MKCOL":
self = .MKCOL
case "MERGE":
self = .MERGE
case "PURGE":
self = .PURGE
case "NOTIFY":
self = .NOTIFY
case "SEARCH":
self = .SEARCH
case "UNLOCK":
self = .UNLOCK
case "REBIND":
self = .REBIND
case "UNBIND":
self = .UNBIND
case "REPORT":
self = .REPORT
case "DELETE":
self = .DELETE
case "UNLINK":
self = .UNLINK
case "CONNECT":
self = .CONNECT
case "MSEARCH":
self = .MSEARCH
case "OPTIONS":
self = .OPTIONS
case "PROPFIND":
self = .PROPFIND
case "CHECKOUT":
self = .CHECKOUT
case "PROPPATCH":
self = .PROPPATCH
case "SUBSCRIBE":
self = .SUBSCRIBE
case "MKCALENDAR":
self = .MKCALENDAR
case "MKACTIVITY":
self = .MKACTIVITY
case "UNSUBSCRIBE":
self = .UNSUBSCRIBE
case "SOURCE":
self = .SOURCE
default:
self = .RAW(value: rawValue)
}
}
}
extension HTTPResponseHead {
internal var contentLength: Int? {
return headers.contentLength
}
}
extension HTTPRequestHead {
internal var contentLength: Int? {
return headers.contentLength
}
}
extension HTTPHeaders {
internal var contentLength: Int? {
return self.first(name: "content-length").flatMap { Int($0) }
}
}
|