mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
33 lines
907 B
Swift
33 lines
907 B
Swift
//
|
|
// SignOut.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Andrew Naylor on 14/02/2016.
|
|
// Copyright © 2016 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
import Commandant
|
|
import CommerceKit
|
|
import Result
|
|
|
|
public struct SignOutCommand: CommandProtocol {
|
|
public typealias Options = NoOptions<MASError>
|
|
public let verb = "signout"
|
|
public let function = "Sign out of the Mac App Store"
|
|
|
|
public init() {}
|
|
|
|
/// Runs the command.
|
|
public func run(_: Options) -> Result<(), MASError> {
|
|
if #available(macOS 10.13, *) {
|
|
let accountService: ISAccountService = ISServiceProxy.genericShared().accountService
|
|
accountService.signOut()
|
|
} else {
|
|
// Using CKAccountStore to sign out does nothing on High Sierra
|
|
// https://github.com/mas-cli/mas/issues/129
|
|
CKAccountStore.shared().signOut()
|
|
}
|
|
|
|
return .success(())
|
|
}
|
|
}
|