-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathURLParameterEncoding.swift
34 lines (26 loc) · 1.2 KB
/
URLParameterEncoding.swift
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
//
// URLEncoding.swift
// NetworkLayer
//
// Created by Malcolm Kumwenda on 2018/03/05.
// Copyright © 2018 Malcolm Kumwenda. All rights reserved.
//
import Foundation
struct URLParameterEncoder: ParameterEncoder {
func encode(urlRequest: inout URLRequest, with parameters: Parameters) throws {
guard let url = urlRequest.url else { throw NetworkError.missingURL }
if var urlComponents = URLComponents(url: url,
resolvingAgainstBaseURL: false), !parameters.isEmpty {
urlComponents.queryItems = [URLQueryItem]()
for (key,value) in parameters {
let queryItem = URLQueryItem(name: key,
value: "\(value)".addingPercentEncoding(withAllowedCharacters: .urlHostAllowed))
urlComponents.queryItems?.append(queryItem)
}
urlRequest.url = urlComponents.url
}
if urlRequest.value(forHTTPHeaderField: "Content-Type") == nil {
urlRequest.setValue("application/x-www-form-urlencoded; charset=utf-8", forHTTPHeaderField: "Content-Type")
}
}
}