mas/App/Commands/Outdated.swift

28 lines
983 B
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.
//
2016-09-24 14:53:50 +00:00
struct OutdatedCommand: CommandProtocol {
2015-12-30 21:20:25 +00:00
typealias Options = NoOptions<MASError>
let verb = "outdated"
let function = "Lists pending updates from the Mac App Store"
2016-09-17 12:58:38 +00:00
func run(_ options: Options) -> Result<(), MASError> {
let updateController = CKUpdateController.shared()
let updates = updateController?.availableUpdates()
let softwareMap = CKSoftwareMap.shared()
2016-09-17 12:58:38 +00:00
for update in updates! {
if let installed = softwareMap.product(forBundleIdentifier: update.bundleID) {
print("\(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
}