//
|
// URLRequestExtensions.swift
|
// SwifterSwift
|
//
|
// Created by Omar Albeik on 9/5/17.
|
// Copyright © 2017 SwifterSwift
|
//
|
|
#if canImport(Foundation)
|
import Foundation
|
|
#if canImport(FoundationNetworking)
|
import FoundationNetworking
|
#endif
|
|
// MARK: - Initializers
|
public extension URLRequest {
|
|
/// SwifterSwift: Create URLRequest from URL string.
|
///
|
/// - Parameter urlString: URL string to initialize URL request from
|
init?(urlString: String) {
|
guard let url = URL(string: urlString) else { return nil }
|
self.init(url: url)
|
}
|
|
/// SwifterSwift: cURL command representation of this URL request.
|
var curlString: String {
|
|
guard let url = url else { return "" }
|
|
var baseCommand = "curl \(url.absoluteString)"
|
if httpMethod == "HEAD" {
|
baseCommand += " --head"
|
}
|
|
var command = [baseCommand]
|
if let method = httpMethod, method != "GET" && method != "HEAD" {
|
command.append("-X \(method)")
|
}
|
|
if let headers = allHTTPHeaderFields {
|
for (key, value) in headers where key != "Cookie" {
|
command.append("-H '\(key): \(value)'")
|
}
|
}
|
|
if let data = httpBody,
|
let body = String(data: data, encoding: .utf8) {
|
command.append("-d '\(body)'")
|
}
|
|
return command.joined(separator: " \\\n\t")
|
}
|
}
|
|
#endif
|