mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 12:03:12 +00:00
2c2eaa2821
🔥 Remove empty mas bridging header
91 lines
2.6 KiB
Swift
91 lines
2.6 KiB
Swift
//
|
|
// Upgrade.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Andrew Naylor on 30/12/2015.
|
|
// Copyright © 2015 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
import Commandant
|
|
import Result
|
|
import CommerceKit
|
|
|
|
public struct UpgradeCommand: CommandProtocol {
|
|
public typealias Options = UpgradeOptions
|
|
public let verb = "upgrade"
|
|
public let function = "Upgrade outdated apps from the Mac App Store"
|
|
|
|
public init() {}
|
|
|
|
public func run(_ options: Options) -> Result<(), MASError> {
|
|
let updateController = CKUpdateController.shared()
|
|
|
|
let updates: [CKUpdate]
|
|
let apps = options.apps
|
|
if apps.count > 0 {
|
|
let softwareMap = CKSoftwareMap.shared()
|
|
|
|
// convert input into a list of appId's
|
|
|
|
let appIds: [UInt64]
|
|
|
|
appIds = apps.compactMap {
|
|
if let appId = UInt64($0) {
|
|
return appId
|
|
}
|
|
if let appId = softwareMap.appIdWithProductName($0) {
|
|
return appId
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// check each of those for updates
|
|
|
|
updates = appIds.compactMap {
|
|
updateController?.availableUpdate(withItemIdentifier: $0)
|
|
}
|
|
|
|
guard updates.count > 0 else {
|
|
printWarning("Nothing found to upgrade")
|
|
return .success(())
|
|
}
|
|
} else {
|
|
updates = updateController?.availableUpdates() ?? []
|
|
|
|
// Upgrade everything
|
|
guard updates.count > 0 else {
|
|
print("Everything is up-to-date")
|
|
return .success(())
|
|
}
|
|
}
|
|
|
|
print("Upgrading \(updates.count) outdated application\(updates.count > 1 ? "s" : ""):")
|
|
print(updates.map({ "\($0.title) (\($0.bundleVersion))" }).joined(separator: ", "))
|
|
|
|
let updateResults = updates.compactMap {
|
|
download($0.itemIdentifier.uint64Value)
|
|
}
|
|
|
|
switch updateResults.count {
|
|
case 0:
|
|
return .success(())
|
|
case 1:
|
|
return .failure(updateResults[0])
|
|
default:
|
|
return .failure(.downloadFailed(error: nil))
|
|
}
|
|
}
|
|
}
|
|
|
|
public struct UpgradeOptions: OptionsProtocol {
|
|
let apps: [String]
|
|
|
|
static func create(_ apps: [String]) -> UpgradeOptions {
|
|
return UpgradeOptions(apps: apps)
|
|
}
|
|
|
|
public static func evaluate(_ m: CommandMode) -> Result<UpgradeOptions, CommandantError<MASError>> {
|
|
return create
|
|
<*> m <| Argument(defaultValue: [], usage: "app(s) to upgrade")
|
|
}
|
|
}
|