mas/MasKit/Commands/Upgrade.swift

95 lines
2.8 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.
//
2018-07-04 20:56:10 +00:00
import Commandant
import Result
2018-10-14 19:41:19 +00:00
import CommerceKit
2018-07-04 20:56:10 +00:00
/// Command which upgrades apps with new versions available in the Mac App Store.
public struct UpgradeCommand: CommandProtocol {
public typealias Options = UpgradeOptions
public let verb = "upgrade"
public let function = "Upgrade outdated apps from the Mac App Store"
private let appLibrary: AppLibrary
/// Designated initializer.
///
/// - Parameter appLibrary: <#appLibrary description#>
public init(appLibrary: AppLibrary = MasAppLibrary()) {
self.appLibrary = appLibrary
}
public func run(_ options: Options) -> Result<(), MASError> {
2016-09-17 12:58:38 +00:00
let updateController = CKUpdateController.shared()
2016-09-14 21:55:04 +00:00
let updates: [CKUpdate]
let apps = options.apps
if apps.count > 0 {
// convert input into a list of appId's
let appIds: [UInt64]
appIds = apps.compactMap {
if let appId = UInt64($0) {
return appId
}
if let appId = appLibrary.appIdsByName[$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
public 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
}
public 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
}