// // Open.swift // mas-cli // // Created by Ben Chatelain on 2018-12-29. // Copyright © 2016 mas-cli. All rights reserved. // import Commandant import Result /// Opens app page in MAS app. Uses the iTunes Lookup API: /// https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/#lookup public struct OpenCommand: CommandProtocol { public typealias Options = OpenOptions public let verb = "open" public let function = "Opens app page in AppStore.app" private let storeSearch: StoreSearch private var systemOpen: ExternalCommand private let macappstore = "macappstore" /// Designated initializer. public init(storeSearch: StoreSearch = MasStoreSearch(), openCommand: ExternalCommand = OpenSystemCommand()) { self.storeSearch = storeSearch self.systemOpen = openCommand } /// Runs the command. public func run(_ options: OpenOptions) -> Result<(), MASError> { do { guard let appId = options.appId else { // If no app ID is given, just open the MAS GUI app try systemOpen.run(arguments: macappstore + "://") return .success(()) } guard let result = try storeSearch.lookup(app: appId) else { print("No results found") return .failure(.noSearchResultsFound) } guard var url = URLComponents(string: result.trackViewUrl) else { return .failure(.searchFailed) } url.scheme = macappstore do { try systemOpen.run(arguments: url.string!) } catch { printError("Unable to launch open command") return .failure(.searchFailed) } if systemOpen.failed { let reason = systemOpen.process.terminationReason printError("Open failed: (\(reason)) \(systemOpen.stderr)") return .failure(.searchFailed) } } catch { // Bubble up MASErrors if let error = error as? MASError { return .failure(error) } return .failure(.searchFailed) } return .success(()) } } public struct OpenOptions: OptionsProtocol { let appId: String? static func create(_ appId: String? = nil) -> OpenOptions { return OpenOptions(appId: appId) } public static func evaluate(_ mode: CommandMode) -> Result> { return create <*> mode <| Argument(defaultValue: nil, usage: "the app id") } }