mas/mas-cli/Commands/Account.swift
2015-09-14 09:51:09 +01:00

28 lines
715 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:
if let account = ISStoreAccount.primaryAccount {
print(account.identifier)
}
else {
print("Not signed in")
exit(MASErrorCode.NotSignedIn.exitCode)
}
default:
break
}
return .Success(())
}
}