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.
|
|
|
|
//
|
|
|
|
|
2018-07-04 20:56:10 +00:00
|
|
|
import Commandant
|
|
|
|
import Result
|
2018-10-14 19:41:19 +00:00
|
|
|
import StoreFoundation
|
2018-07-04 20:56:10 +00:00
|
|
|
|
2018-10-14 21:35:48 +00:00
|
|
|
public struct AccountCommand: CommandProtocol {
|
|
|
|
public typealias Options = NoOptions<MASError>
|
|
|
|
public let verb = "account"
|
|
|
|
public let function = "Prints the primary account Apple ID"
|
|
|
|
|
|
|
|
public init() {}
|
2015-08-21 13:02:36 +00:00
|
|
|
|
2018-10-14 21:35:48 +00:00
|
|
|
public func run(_ options: Options) -> Result<(), MASError> {
|
2015-12-30 21:20:25 +00:00
|
|
|
if let account = ISStoreAccount.primaryAccount {
|
2018-04-04 03:04:56 +00:00
|
|
|
print(String(describing: account.identifier))
|
2015-12-30 21:20:25 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
print("Not signed in")
|
2016-09-25 21:13:23 +00:00
|
|
|
return .failure(.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
|
|
|
}
|