// // 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 public let verb = "account" public let function = "Prints the primary account Apple ID" public init() {} /// Runs the command. public func run(_: Options) -> Result { 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(()) } }