mas/App/Commands/List.swift

32 lines
869 B
Swift
Raw Normal View History

//
// List.swift
// 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
public struct ListCommand: CommandProtocol {
public typealias Options = NoOptions<MASError>
public let verb = "list"
public let function = "Lists apps from the Mac App Store which are currently installed"
public init() {}
public func run(_ options: Options) -> Result<(), MASError> {
2016-09-17 12:58:38 +00:00
let softwareMap = CKSoftwareMap.shared()
guard let products = softwareMap.allProducts() else {
print("No installed apps found")
2016-09-17 12:58:38 +00:00
return .success(())
}
2015-12-30 21:20:25 +00:00
for product in products {
print("\(product.itemIdentifier) \(product.appName) (\(product.bundleVersion))")
}
2016-09-17 12:58:38 +00:00
return .success(())
}
2016-09-17 12:58:38 +00:00
}