// // Home.swift // mas-cli // // Created by Ben Chatelain on 2018-12-29. // Copyright © 2016 mas-cli. All rights reserved. // import Commandant import Result import Foundation /// Opens app page on MAS Preview. Uses the iTunes Lookup API: /// https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/#lookup public struct HomeCommand: CommandProtocol { public let verb = "home" public let function = "Opens MAS Preview app page in a browser" private let storeSearch: StoreSearch private let urlSession: URLSession /// Designated initializer. public init(storeSearch: StoreSearch = MasStoreSearch(), urlSession: URLSession = URLSession.shared) { self.storeSearch = storeSearch self.urlSession = urlSession } /// Runs the command. public func run(_ options: HomeOptions) -> Result<(), MASError> { guard let homeURLString = storeSearch.lookupURLString(forApp: options.appId), let jsonData = urlSession.requestSynchronousDataWithURLString(homeURLString) else { return .failure(.searchFailed) } guard let results = try? JSONDecoder().decode(SearchResultList.self, from: jsonData), results.resultCount > 0 else { print("No results found") return .failure(.noSearchResultsFound) } dump(results.resultCount) let first = results.results.first! dump(first) return .success(()) } } public struct HomeOptions: OptionsProtocol { let appId: String static func create(_ appId: String) -> HomeOptions { return HomeOptions(appId: appId) } public static func evaluate(_ m: CommandMode) -> Result> { return create <*> m <| Argument(usage: "the app id to show Home") } }