2015-08-21 13:02:36 +00:00
|
|
|
//
|
2015-09-13 22:14:14 +00:00
|
|
|
// Outdated.swift
|
2015-08-21 13:02:36 +00:00
|
|
|
// 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
|
|
|
|
import Result
|
2018-10-14 19:41:19 +00:00
|
|
|
import CommerceKit
|
2018-07-04 20:56:10 +00:00
|
|
|
|
2018-12-28 22:08:31 +00:00
|
|
|
/// Command which displays a list of installed apps which have available updates
|
|
|
|
/// ready to be installed from the Mac App Store.
|
2018-10-14 21:35:48 +00:00
|
|
|
public struct OutdatedCommand: CommandProtocol {
|
|
|
|
public typealias Options = NoOptions<MASError>
|
|
|
|
public let verb = "outdated"
|
|
|
|
public let function = "Lists pending updates from the Mac App Store"
|
|
|
|
|
2018-12-28 22:08:31 +00:00
|
|
|
private let appLibrary: AppLibrary
|
|
|
|
|
|
|
|
/// Designated initializer.
|
|
|
|
///
|
|
|
|
/// - Parameter appLibrary: AppLibrary manager.
|
|
|
|
public init(appLibrary: AppLibrary = MasAppLibrary()) {
|
|
|
|
self.appLibrary = appLibrary
|
|
|
|
}
|
|
|
|
|
2018-10-14 21:35:48 +00:00
|
|
|
public func run(_ options: Options) -> Result<(), MASError> {
|
2016-09-17 12:58:38 +00:00
|
|
|
let updateController = CKUpdateController.shared()
|
|
|
|
let updates = updateController?.availableUpdates()
|
|
|
|
for update in updates! {
|
2018-12-28 22:08:31 +00:00
|
|
|
if let installed = appLibrary.installedApp(forBundleId: update.bundleID) {
|
|
|
|
// Display version of installed app compared to available update.
|
2016-09-17 16:57:15 +00:00
|
|
|
print("\(update.itemIdentifier) \(update.title) (\(installed.bundleVersion) -> \(update.bundleVersion))")
|
|
|
|
} else {
|
2016-09-17 17:14:20 +00:00
|
|
|
print("\(update.itemIdentifier) \(update.title) (unknown -> \(update.bundleVersion))")
|
2016-09-17 16:57:15 +00:00
|
|
|
}
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
2016-09-17 12:58:38 +00:00
|
|
|
return .success(())
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
2016-09-17 12:58:38 +00:00
|
|
|
}
|