mirror of
https://github.com/mas-cli/mas
synced 2024-11-26 21:40:19 +00:00
28 lines
No EOL
831 B
Swift
28 lines
No EOL
831 B
Swift
//
|
|
// ListInstalled.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Andrew Naylor on 21/08/2015.
|
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
struct ListInstalledCommand: CommandType {
|
|
let verb = "list-installed"
|
|
let function = "Lists apps from the Mac App Store which are currently installed"
|
|
|
|
func run(mode: CommandMode) -> Result<(), CommandantError<MASError>> {
|
|
switch mode {
|
|
case .Arguments:
|
|
let softwareMap = CKSoftwareMap.sharedSoftwareMap()
|
|
let products = softwareMap.allProducts() as! [CKSoftwareProduct]
|
|
products.map({ product -> Bool in
|
|
println("\(product.itemIdentifier) \(product.appName)")
|
|
return true
|
|
})
|
|
|
|
default:
|
|
break
|
|
}
|
|
return .success(())
|
|
}
|
|
} |