У меня есть модель с множеством свойств, которые я хочу закодировать в этой модели в параметрах URL-запроса.
public typealias Parameters = [String : Any]
enum ProductWriteApi {
case addOFFProduct(product: OFFProduct)
}
extension ProductWriteApi: EndPointType {
var parameters: Parameters {
switch self {
case .addOFFProduct(let product):
var parameters: Parameters!
do {
//Need to encode the product model to be like the Example parameters down there.
let data = try JSONEncoder().encode(product)
//This data wont be sent in the body. It will be sent in the URL.
} catch {
}
//Example parameters needed
parameters = [
"name": "Cereal",
"categorie": "Milks"
]
return parameters
}
}
}
Так как же мне изменить / кодировать модель моей продукции на [String : Any]
, чтобы иметь возможностьперебрать их и добавить в мою строку URL.Или мне нужно пройти мимо каждого свойства продукта одно за другим и проверить, не является ли оно nil
ни пустым, и добавить его в переменную типа [String : Any]
?
Или есть другое более простое решение, которое у меня естьпонятия не имеете?
Это статическая функция, которая добавляет параметры в мой URL, просматривая параметры и добавляя их в элементы запроса.
public struct URLParameterEncoder: ParameterEncoder {
public static 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) {
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")
}
}
}