mas/App/AppStore/ISStoreAccount.swift
Ben Chatelain 0039e52329 Update private headers
from macOS High Sierra 10.13.3 (17D2047)
2018-08-10 18:44:20 -06:00

78 lines
2.5 KiB
Swift

//
// ISStoreAccount.swift
// mas-cli
//
// Created by Andrew Naylor on 22/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
extension ISStoreAccount {
static var primaryAccountIsPresentAndSignedIn: Bool {
return CKAccountStore.shared().primaryAccountIsPresentAndSignedIn
}
static var primaryAccount: ISStoreAccount? {
return CKAccountStore.shared().primaryAccount
}
static func signIn(username: String? = nil, password: String? = nil, systemDialog: Bool = false) throws -> ISStoreAccount {
var account: ISStoreAccount? = nil
var error: MASError? = nil
let accountService = ISServiceProxy.genericShared().accountService
let client = ISStoreClient(storeClientType: 0)
accountService.setStoreClient(client)
// let context = ISAuthenticationContext(accountID: 0)!
// context.appleIDOverride = username
//
// if systemDialog {
// context.appleIDOverride = username
// } else {
// context.demoMode = true
// context.demoAccountName = username
// context.demoAccountPassword = password
// context.demoAutologinMode = true
// }
let group = DispatchGroup()
group.enter()
accountService.account(withAppleID: username) { (storeAccount: ISStoreAccount?) in
if let _account = storeAccount {
_account.password = password
// accountService.add(_account)
accountService.addAccount(authenticationResponse: ISAuthenticationResponse, makePrimary: true) { (storeAccount: ISStoreAccount?)
if let _account = storeAccount {
account = _account
}
}
account = _account
} else {
// TODO: Handle failed AppleID lookup
}
group.leave()
}
// accountService.signIn(with: context) { success, _account, _error in
// if success {
// account = _account
// } else {
// error = .signInFailed(error: _error as NSError?)
// }
// group.leave()
// }
if systemDialog {
group.wait()
} else {
let _ = group.wait(timeout: .now() + 30)
}
if let account = account {
return account
}
throw error ?? MASError.signInFailed(error: nil)
}
}