2015-08-21 21:02:36 +08:00
|
|
|
//
|
2015-09-13 23:14:14 +01:00
|
|
|
// Outdated.swift
|
2015-08-21 21:02:36 +08:00
|
|
|
// mas-cli
|
|
|
|
//
|
|
|
|
// Created by Andrew Naylor on 21/08/2015.
|
|
|
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2018-07-04 14:56:10 -06:00
|
|
|
import Commandant
|
|
|
|
import Result
|
|
|
|
|
2016-09-24 15:53:50 +01:00
|
|
|
struct OutdatedCommand: CommandProtocol {
|
2015-12-30 21:20:25 +00:00
|
|
|
typealias Options = NoOptions<MASError>
|
2015-09-13 23:14:14 +01:00
|
|
|
let verb = "outdated"
|
2015-08-21 21:02:36 +08:00
|
|
|
let function = "Lists pending updates from the Mac App Store"
|
|
|
|
|
2016-09-17 13:58:38 +01:00
|
|
|
func run(_ options: Options) -> Result<(), MASError> {
|
|
|
|
let updateController = CKUpdateController.shared()
|
|
|
|
let updates = updateController?.availableUpdates()
|
2016-09-17 18:40:05 +01:00
|
|
|
let softwareMap = CKSoftwareMap.shared()
|
2016-09-17 13:58:38 +01:00
|
|
|
for update in updates! {
|
2016-09-17 18:40:05 +01:00
|
|
|
if let installed = softwareMap.product(forBundleIdentifier: update.bundleID) {
|
2016-09-17 23:57:15 +07:00
|
|
|
print("\(update.itemIdentifier) \(update.title) (\(installed.bundleVersion) -> \(update.bundleVersion))")
|
|
|
|
} else {
|
2016-09-18 00:14:20 +07:00
|
|
|
print("\(update.itemIdentifier) \(update.title) (unknown -> \(update.bundleVersion))")
|
2016-09-17 23:57:15 +07:00
|
|
|
}
|
2015-08-21 21:02:36 +08:00
|
|
|
}
|
2016-09-17 13:58:38 +01:00
|
|
|
return .success(())
|
2015-08-21 21:02:36 +08:00
|
|
|
}
|
2016-09-17 13:58:38 +01:00
|
|
|
}
|