mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 03:53:09 +00:00
35 lines
971 B
Swift
35 lines
971 B
Swift
//
|
|
// Account.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Andrew Naylor on 21/08/2015.
|
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
import Commandant
|
|
import StoreFoundation
|
|
|
|
public struct AccountCommand: CommandProtocol {
|
|
public typealias Options = NoOptions<MASError>
|
|
public let verb = "account"
|
|
public let function = "Prints the primary account Apple ID"
|
|
|
|
public init() {}
|
|
|
|
/// Runs the command.
|
|
public func run(_: Options) -> Result<Void, MASError> {
|
|
if #available(macOS 12, *) {
|
|
// Account information is no longer available as of Monterey.
|
|
// https://github.com/mas-cli/mas/issues/417
|
|
return .failure(.notSupported)
|
|
}
|
|
|
|
if let account = ISStoreAccount.primaryAccount {
|
|
print(String(describing: account.identifier))
|
|
} else {
|
|
printError("Not signed in")
|
|
return .failure(.notSignedIn)
|
|
}
|
|
return .success(())
|
|
}
|
|
}
|