mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 03:53:09 +00:00
36 lines
No EOL
1 KiB
Swift
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")
|
|
}
|
|
} |