2018-12-30 06:57:06 +00:00
|
|
|
//
|
|
|
|
// 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 {
|
2019-01-03 23:15:53 +00:00
|
|
|
public typealias Options = HomeOptions
|
|
|
|
|
2018-12-30 06:57:06 +00:00
|
|
|
public let verb = "home"
|
|
|
|
public let function = "Opens MAS Preview app page in a browser"
|
|
|
|
|
|
|
|
private let storeSearch: StoreSearch
|
2019-01-03 23:15:53 +00:00
|
|
|
private var openCommand: ExternalCommand
|
2018-12-30 06:57:06 +00:00
|
|
|
|
|
|
|
/// Designated initializer.
|
2019-01-03 23:15:53 +00:00
|
|
|
public init(storeSearch: StoreSearch = MasStoreSearch(),
|
|
|
|
openCommand: ExternalCommand = OpenCommand()) {
|
2018-12-30 06:57:06 +00:00
|
|
|
self.storeSearch = storeSearch
|
2019-01-03 23:15:53 +00:00
|
|
|
self.openCommand = openCommand
|
2018-12-30 06:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Runs the command.
|
2019-01-04 00:30:56 +00:00
|
|
|
public func run(_ options: HomeOptions) -> Result<(), MASError> {
|
2019-01-02 05:44:33 +00:00
|
|
|
do {
|
|
|
|
guard let result = try storeSearch.lookup(app: options.appId)
|
|
|
|
else {
|
|
|
|
print("No results found")
|
|
|
|
return .failure(.noSearchResultsFound)
|
|
|
|
}
|
|
|
|
|
2019-01-03 23:15:53 +00:00
|
|
|
do {
|
2019-01-04 00:30:56 +00:00
|
|
|
try openCommand.run(arguments: result.trackViewUrl)
|
2019-01-03 23:15:53 +00:00
|
|
|
} catch {
|
|
|
|
printError("Unable to launch open command")
|
|
|
|
return .failure(.searchFailed)
|
|
|
|
}
|
|
|
|
if openCommand.failed {
|
|
|
|
let reason = openCommand.process.terminationReason
|
|
|
|
printError("Open failed: (\(reason)) \(openCommand.stderr)")
|
|
|
|
return .failure(.searchFailed)
|
|
|
|
}
|
2018-12-30 06:57:06 +00:00
|
|
|
}
|
2019-01-02 05:44:33 +00:00
|
|
|
catch {
|
|
|
|
return .failure(.searchFailed)
|
2018-12-30 06:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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<HomeOptions, CommandantError<MASError>> {
|
|
|
|
return create
|
|
|
|
<*> m <| Argument(usage: "the app id to show Home")
|
|
|
|
}
|
|
|
|
}
|