mas/MasKit/Commands/Outdated.swift

50 lines
1.6 KiB
Swift
Raw Normal View History

//
// Outdated.swift
// mas-cli
//
// Created by Andrew Naylor on 21/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
2018-07-04 20:56:10 +00:00
import Commandant
2018-10-14 19:41:19 +00:00
import CommerceKit
2018-07-04 20:56:10 +00:00
/// Command which displays a list of installed apps which have available updates
/// ready to be installed from the Mac App Store.
public struct OutdatedCommand: CommandProtocol {
public typealias Options = NoOptions<MASError>
public let verb = "outdated"
public let function = "Lists pending updates from the Mac App Store"
private let appLibrary: AppLibrary
2020-03-29 03:15:07 +00:00
/// Public initializer.
/// - Parameter appLibrary: AppLibrary manager.
2020-03-29 03:15:07 +00:00
public init() {
self.init(appLibrary: MasAppLibrary())
}
/// Internal initializer.
/// - Parameter appLibrary: AppLibrary manager.
init(appLibrary: AppLibrary = MasAppLibrary()) {
self.appLibrary = appLibrary
}
2019-01-12 01:28:03 +00:00
/// Runs the command.
2019-01-30 06:15:24 +00:00
public func run(_: Options) -> Result<(), MASError> {
2016-09-17 12:58:38 +00:00
let updateController = CKUpdateController.shared()
let updates = updateController?.availableUpdates()
for update in updates! {
if let installed = appLibrary.installedApp(forBundleId: update.bundleID) {
// Display version of installed app compared to available update.
2019-01-12 01:06:02 +00:00
print("""
2020-05-15 03:32:51 +00:00
\(update.itemIdentifier) \(update.title) (\(installed.bundleVersion) -> \(update.bundleVersion))
""")
} else {
print("\(update.itemIdentifier) \(update.title) (unknown -> \(update.bundleVersion))")
}
}
2016-09-17 12:58:38 +00:00
return .success(())
}
2016-09-17 12:58:38 +00:00
}