2015-08-21 13:02:36 +00:00
|
|
|
//
|
|
|
|
// 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
|
2015-08-22 11:29:48 +00:00
|
|
|
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|