mas/MasKit/Commands/Outdated.swift
Ben Chatelain 2c2eaa2821 🚚 Move files under MasKit group
🔥 Remove empty mas bridging header
2018-12-27 14:47:11 -07:00

33 lines
1.1 KiB
Swift

//
// Outdated.swift
// mas-cli
//
// Created by Andrew Naylor on 21/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
import Commandant
import Result
import CommerceKit
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() {}
public func run(_ options: Options) -> Result<(), MASError> {
let updateController = CKUpdateController.shared()
let updates = updateController?.availableUpdates()
let softwareMap = CKSoftwareMap.shared()
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))")
}
}
return .success(())
}
}