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-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"
|
|
|
|
|
|
|
|
public init() {}
|
2015-08-21 13:02:36 +00:00
|
|
|
|
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()
|
2016-09-17 17:40:05 +00:00
|
|
|
let softwareMap = CKSoftwareMap.shared()
|
2016-09-17 12:58:38 +00:00
|
|
|
for update in updates! {
|
2016-09-17 17:40:05 +00:00
|
|
|
if let installed = softwareMap.product(forBundleIdentifier: update.bundleID) {
|
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
|
|
|
}
|