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.
|
|
|
|
//
|
|
|
|
|
2016-09-24 14:53:50 +00:00
|
|
|
struct AccountCommand: CommandProtocol {
|
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"
|
|
|
|
|
2016-09-17 12:58:38 +00:00
|
|
|
func run(_ options: Options) -> Result<(), MASError> {
|
2015-12-30 21:20:25 +00:00
|
|
|
if let account = ISStoreAccount.primaryAccount {
|
|
|
|
print(account.identifier)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print("Not signed in")
|
2016-09-17 12:58:38 +00:00
|
|
|
return .failure(MASError(code: .notSignedIn))
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
2016-09-17 12:58:38 +00:00
|
|
|
return .success(())
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
2015-08-21 18:22:06 +00:00
|
|
|
}
|