mirror of
https://github.com/mas-cli/mas
synced 2024-11-26 21:40:19 +00:00
27 lines
No EOL
669 B
Swift
27 lines
No EOL
669 B
Swift
//
|
|
// Account.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Andrew Naylor on 21/08/2015.
|
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
struct AccountCommand: CommandType {
|
|
let verb = "account"
|
|
let function = "Prints the primary account Apple ID"
|
|
|
|
func run(mode: CommandMode) -> Result<(), CommandantError<MASError>> {
|
|
switch mode {
|
|
case .Arguments:
|
|
print(primaryAccount().identifier)
|
|
default:
|
|
break
|
|
}
|
|
return .success(())
|
|
}
|
|
}
|
|
|
|
func primaryAccount() -> ISStoreAccount {
|
|
let accountController = CKAccountStore.sharedAccountStore()
|
|
return accountController.primaryAccount
|
|
} |