mas/App/Commands/Account.swift

28 lines
650 B
Swift
Raw Normal View History

//
// Account.swift
// mas-cli
//
// Created by Andrew Naylor on 21/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
2018-07-04 20:56:10 +00:00
import Commandant
import Result
2016-09-24 14:53:50 +00:00
struct AccountCommand: CommandProtocol {
2015-12-30 21:20:25 +00:00
typealias Options = NoOptions<MASError>
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-25 21:13:23 +00:00
return .failure(.notSignedIn)
}
2016-09-17 12:58:38 +00:00
return .success(())
}
2015-08-21 18:22:06 +00:00
}