Created
May 10, 2019 13:03
-
-
Save chriseidhof/bed84f040c37af503b7b67c444193d34 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
struct Resource<A> { | |
var request: URLRequest | |
var parse: (Data) throws -> A | |
} | |
extension Resource where A: Decodable { | |
init(get url: URL) { | |
self.init(request: URLRequest(url: url)) { data in | |
try JSONDecoder().decode(A.self, from: data) | |
} | |
} | |
} | |
extension URLSession { | |
func load<A>(_ r: Resource<A>, callback: @escaping (Result<A, Error>) -> ()) { | |
dataTask(with: r.request) { data, response, err in | |
callback(Result { | |
if let e = err { throw e } | |
guard let d = data else { fatalError() } | |
return try r.parse(d) | |
}) | |
}.resume() | |
} | |
} | |
struct Country: Codable { | |
var alpha2Code: String | |
var name: String | |
var population: Int | |
} | |
let sample = Resource<[Country]>(get: URL(string: "https://restcountries.eu/rest/v2/all")!) | |
URLSession.shared.load(sample) { res in print(res) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment