2015-08-21 21:02:36 +08:00
|
|
|
//
|
2015-09-13 23:14:14 +01:00
|
|
|
// List.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.
|
|
|
|
//
|
|
|
|
|
2015-09-13 23:14:14 +01:00
|
|
|
struct ListCommand: CommandType {
|
2015-12-30 21:20:25 +00:00
|
|
|
typealias Options = NoOptions<MASError>
|
2015-09-13 23:14:14 +01:00
|
|
|
let verb = "list"
|
2015-08-21 21:02:36 +08:00
|
|
|
let function = "Lists apps from the Mac App Store which are currently installed"
|
|
|
|
|
2015-12-30 21:20:25 +00:00
|
|
|
func run(options: Options) -> Result<(), MASError> {
|
|
|
|
let softwareMap = CKSoftwareMap.sharedSoftwareMap()
|
|
|
|
let products = softwareMap.allProducts()
|
|
|
|
for product in products {
|
|
|
|
print("\(product.itemIdentifier) \(product.appName)")
|
2015-08-21 21:02:36 +08:00
|
|
|
}
|
2015-09-14 09:51:09 +01:00
|
|
|
return .Success(())
|
2015-08-21 21:02:36 +08:00
|
|
|
}
|
|
|
|
}
|