2015-08-21 13:02:36 +00:00
|
|
|
//
|
|
|
|
// Account.swift
|
|
|
|
// mas-cli
|
|
|
|
//
|
|
|
|
// Created by Andrew Naylor on 21/08/2015.
|
|
|
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
struct AccountCommand: CommandType {
|
2015-12-30 21:20:25 +00:00
|
|
|
typealias Options = NoOptions<MASError>
|
2015-08-21 13:02:36 +00:00
|
|
|
let verb = "account"
|
|
|
|
let function = "Prints the primary account Apple ID"
|
|
|
|
|
2015-12-30 21:20:25 +00:00
|
|
|
func run(options: Options) -> Result<(), MASError> {
|
|
|
|
if let account = ISStoreAccount.primaryAccount {
|
|
|
|
print(account.identifier)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print("Not signed in")
|
2016-02-21 20:39:34 +00:00
|
|
|
return .Failure(MASError(code: .NotSignedIn))
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
2015-09-14 08:51:09 +00:00
|
|
|
return .Success(())
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
2015-08-21 18:22:06 +00:00
|
|
|
}
|