2015-12-30 21:03:45 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2018-12-28 22:08:31 +00:00
|
|
|
/// Command which upgrades apps with new versions available in the Mac App Store.
|
2018-10-14 21:35:48 +00:00
|
|
|
public struct UpgradeCommand: CommandProtocol {
|
|
|
|
public typealias Options = UpgradeOptions
|
|
|
|
public let verb = "upgrade"
|
|
|
|
public let function = "Upgrade outdated apps from the Mac App Store"
|
|
|
|
|
2018-12-28 22:08:31 +00:00
|
|
|
private let appLibrary: AppLibrary
|
2021-01-17 10:52:00 +00:00
|
|
|
private let storeSearch: StoreSearch
|
2018-12-28 22:08:31 +00:00
|
|
|
|
2020-03-29 03:15:07 +00:00
|
|
|
/// Public initializer.
|
|
|
|
public init() {
|
|
|
|
self.init(appLibrary: MasAppLibrary())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Internal initializer.
|
|
|
|
/// - Parameter appLibrary: AppLibrary manager.
|
2021-01-17 10:52:00 +00:00
|
|
|
/// - Parameter storeSearch: StoreSearch manager.
|
|
|
|
init(appLibrary: AppLibrary = MasAppLibrary(), storeSearch: StoreSearch = MasStoreSearch()) {
|
2018-12-28 22:08:31 +00:00
|
|
|
self.appLibrary = appLibrary
|
2021-01-17 10:52:00 +00:00
|
|
|
self.storeSearch = storeSearch
|
2018-12-28 22:08:31 +00:00
|
|
|
}
|
2018-10-14 21:35:48 +00:00
|
|
|
|
2019-01-12 01:28:03 +00:00
|
|
|
/// Runs the command.
|
2021-03-22 05:46:17 +00:00
|
|
|
public func run(_ options: Options) -> Result<Void, MASError> {
|
2021-01-17 10:52:00 +00:00
|
|
|
do {
|
|
|
|
let apps =
|
2021-03-22 05:25:18 +00:00
|
|
|
try
|
|
|
|
(options.apps.count == 0
|
|
|
|
? appLibrary.installedApps
|
|
|
|
: options.apps.compactMap {
|
|
|
|
if let appId = UInt64($0) {
|
|
|
|
// if argument a UInt64, lookup app by id using argument
|
|
|
|
return appLibrary.installedApp(forId: appId)
|
|
|
|
} else {
|
|
|
|
// if argument not a UInt64, lookup app by name using argument
|
|
|
|
return appLibrary.installedApp(named: $0)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.compactMap { (installedApp: SoftwareProduct) -> SoftwareProduct? in
|
2021-01-17 10:52:00 +00:00
|
|
|
// only upgrade apps whose local version differs from the store version
|
|
|
|
if let storeApp = try storeSearch.lookup(app: installedApp.itemIdentifier.intValue) {
|
2021-04-16 23:47:13 +00:00
|
|
|
return installedApp.isOutdatedWhenComparedTo(storeApp)
|
2021-01-17 10:52:00 +00:00
|
|
|
? installedApp
|
|
|
|
: nil
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
2017-08-19 15:50:35 +00:00
|
|
|
}
|
|
|
|
|
2021-01-17 10:52:00 +00:00
|
|
|
guard apps.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:58:46 +00:00
|
|
|
}
|
2019-01-12 01:06:02 +00:00
|
|
|
|
2021-01-17 10:52:00 +00:00
|
|
|
print("Upgrading \(apps.count) outdated application\(apps.count > 1 ? "s" : ""):")
|
2021-03-22 05:25:18 +00:00
|
|
|
print(apps.map { "\($0.appName) (\($0.bundleVersion))" }.joined(separator: ", "))
|
2019-01-12 01:06:02 +00:00
|
|
|
|
2021-01-17 10:52:00 +00:00
|
|
|
var updatedAppCount = 0
|
|
|
|
var failedUpgradeResults = [MASError]()
|
|
|
|
for app in apps {
|
|
|
|
if let upgradeResult = download(app.itemIdentifier.uint64Value) {
|
|
|
|
failedUpgradeResults.append(upgradeResult)
|
|
|
|
} else {
|
|
|
|
updatedAppCount += 1
|
|
|
|
}
|
|
|
|
}
|
2016-09-14 21:55:04 +00:00
|
|
|
|
2021-01-17 10:52:00 +00:00
|
|
|
switch failedUpgradeResults.count {
|
|
|
|
case 0:
|
|
|
|
if updatedAppCount == 0 {
|
|
|
|
print("Everything is up-to-date")
|
|
|
|
}
|
|
|
|
return .success(())
|
|
|
|
case 1:
|
|
|
|
return .failure(failedUpgradeResults[0])
|
|
|
|
default:
|
|
|
|
return .failure(.downloadFailed(error: nil))
|
|
|
|
}
|
|
|
|
} catch {
|
|
|
|
// Bubble up MASErrors
|
2021-03-22 22:13:48 +00:00
|
|
|
return .failure(error as? MASError ?? .searchFailed)
|
2015-12-30 21:03:45 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-30 21:20:25 +00:00
|
|
|
}
|
2016-09-14 21:55:04 +00:00
|
|
|
|
2018-10-14 21:35:48 +00:00
|
|
|
public struct UpgradeOptions: OptionsProtocol {
|
2017-08-19 15:50:35 +00:00
|
|
|
let apps: [String]
|
2019-01-12 01:06:02 +00:00
|
|
|
|
2017-08-19 15:50:35 +00:00
|
|
|
static func create(_ apps: [String]) -> UpgradeOptions {
|
2021-03-22 05:46:17 +00:00
|
|
|
UpgradeOptions(apps: apps)
|
2016-09-14 21:55:04 +00:00
|
|
|
}
|
2019-01-12 01:06:02 +00:00
|
|
|
|
|
|
|
public static func evaluate(_ mode: CommandMode) -> Result<UpgradeOptions, CommandantError<MASError>> {
|
2021-03-22 05:46:17 +00:00
|
|
|
create
|
2019-01-12 01:06:02 +00:00
|
|
|
<*> mode <| Argument(defaultValue: [], usage: "app(s) to upgrade")
|
2016-09-14 21:55:04 +00:00
|
|
|
}
|
2016-09-17 12:58:38 +00:00
|
|
|
}
|