mas/mas-cli/Commands/Install.swift
2015-08-21 21:02:36 +08:00

36 lines
No EOL
1 KiB
Swift

//
// Install.swift
// mas-cli
//
// Created by Andrew Naylor on 21/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
struct InstallCommand: CommandType {
let verb = "install"
let function = "Install from the Mac App Store"
func run(mode: CommandMode) -> Result<(), CommandantError<MASError>> {
return InstallOptions.evaluate(mode).map { options in
download(options.appId) { (purchase, completed, error, response) in
print(purchase)
print(completed)
print(error)
print(response)
}
}
}
}
struct InstallOptions: OptionsType {
let appId: UInt64
static func create(appId: Int) -> InstallOptions {
return InstallOptions(appId: UInt64(appId))
}
static func evaluate(m: CommandMode) -> Result<InstallOptions, CommandantError<MASError>> {
return create
<*> m <| Option(key: nil, defaultValue: nil, usage: "the app ID to install")
}
}