mas/App/Commands/Upgrade.swift

86 lines
2.5 KiB
Swift
Raw Normal View History

//
// Upgrade.swift
// mas-cli
//
// Created by Andrew Naylor on 30/12/2015.
// Copyright © 2015 Andrew Naylor. All rights reserved.
//
2016-09-24 14:53:50 +00:00
struct UpgradeCommand: CommandProtocol {
2016-09-14 21:55:04 +00:00
typealias Options = UpgradeOptions
let verb = "upgrade"
2016-09-14 21:55:04 +00:00
let function = "Upgrade outdated apps from the Mac App Store"
2016-09-17 12:58:38 +00:00
func run(_ options: Options) -> Result<(), MASError> {
let updateController = CKUpdateController.shared()
2015-12-30 21:20:25 +00:00
2016-09-14 21:55:04 +00:00
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 {
2016-09-25 21:13:23 +00:00
printWarning("Nothing found to upgrade")
2016-09-17 12:58:38 +00:00
return .success(())
}
2016-09-14 21:55:04 +00:00
} else {
updates = updateController?.availableUpdates() ?? []
2016-09-14 21:55:04 +00:00
// Upgrade everything
guard updates.count > 0 else {
2016-09-14 21:55:04 +00:00
print("Everything is up-to-date")
2016-09-17 12:58:38 +00:00
return .success(())
2016-09-14 21:55:04 +00:00
}
2015-12-30 21:20:25 +00:00
}
print("Upgrading \(updates.count) outdated application\(updates.count > 1 ? "s" : ""):")
2016-09-17 12:58:38 +00:00
print(updates.map({ "\($0.title) (\($0.bundleVersion))" }).joined(separator: ", "))
2016-09-14 21:55:04 +00:00
let updateResults = updates.compactMap {
2016-09-17 12:58:38 +00:00
download($0.itemIdentifier.uint64Value)
2016-09-14 21:55:04 +00:00
}
switch updateResults.count {
case 0:
return .success(())
2016-09-14 21:55:04 +00:00
case 1:
2016-09-17 12:58:38 +00:00
return .failure(updateResults[0])
2016-09-14 21:55:04 +00:00
default:
2016-09-25 21:13:23 +00:00
return .failure(.downloadFailed(error: nil))
}
}
2015-12-30 21:20:25 +00:00
}
2016-09-14 21:55:04 +00:00
2016-09-24 14:53:50 +00:00
struct UpgradeOptions: OptionsProtocol {
let apps: [String]
2016-09-14 21:55:04 +00:00
static func create(_ apps: [String]) -> UpgradeOptions {
return UpgradeOptions(apps: apps)
2016-09-14 21:55:04 +00:00
}
2016-09-17 12:58:38 +00:00
static func evaluate(_ m: CommandMode) -> Result<UpgradeOptions, CommandantError<MASError>> {
2016-09-14 21:55:04 +00:00
return create
<*> m <| Argument(defaultValue: [], usage: "app(s) to upgrade")
2016-09-14 21:55:04 +00:00
}
2016-09-17 12:58:38 +00:00
}