72 lines
2.5 KiB
Swift
72 lines
2.5 KiB
Swift
//
|
|
// SWAPIStarshipProvider.swift
|
|
// Dip
|
|
//
|
|
// Created by Olivier Halligon on 10/10/2015.
|
|
// Copyright © 2015 AliSoftware. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
///Provides Starship entities fetching them using web service
|
|
struct SWAPIStarshipProvider : StarshipProviderAPI {
|
|
let ws: NetworkLayer
|
|
|
|
//Here we inject dependency using _constructor injection_ pattern.
|
|
//The alternative way is a _property injection_
|
|
//but it should be used only for optional dependencies
|
|
//where there is a good local default implementation
|
|
init(webService: NetworkLayer) {
|
|
self.ws = webService
|
|
}
|
|
|
|
func fetchIDs(completion: @escaping ([Int]) -> Void) {
|
|
ws.request(path: "starships") { response in
|
|
do {
|
|
let dict = try response.json() as NSDictionary
|
|
guard let results = dict["results"] as? [NSDictionary] else { throw SWAPIError.InvalidJSON }
|
|
|
|
// Extract URLs (flatten to ignore invalid ones)
|
|
let urlStrings = results.compactMap({ $0["url"] as? String })
|
|
let ids = urlStrings.compactMap(idFromURLString)
|
|
|
|
completion(ids)
|
|
}
|
|
catch {
|
|
completion([])
|
|
}
|
|
}
|
|
}
|
|
|
|
func fetch(id: Int, completion: @escaping (Starship?) -> Void) {
|
|
ws.request(path: "starships/\(id)") { response in
|
|
do {
|
|
let json = try response.json() as NSDictionary
|
|
guard
|
|
let name = json["name"] as? String,
|
|
let model = json["model"] as? String,
|
|
let manufacturer = json["manufacturer"] as? String,
|
|
let crewStr = json["crew"] as? String, let crew = Int(crewStr),
|
|
let passengersStr = json["passengers"] as? String, let passengers = Int(passengersStr),
|
|
let pilotIDStrings = json["pilots"] as? [String]
|
|
else {
|
|
throw SWAPIError.InvalidJSON
|
|
}
|
|
|
|
let ship = Starship(
|
|
name: name,
|
|
model: model,
|
|
manufacturer: manufacturer,
|
|
crew: crew,
|
|
passengers: passengers,
|
|
pilotIDs: pilotIDStrings.compactMap(idFromURLString)
|
|
)
|
|
completion(ship)
|
|
}
|
|
catch {
|
|
completion(nil)
|
|
}
|
|
}
|
|
}
|
|
}
|