2015-08-21 13:02:36 +00:00
|
|
|
//
|
2015-09-13 22:14:14 +00:00
|
|
|
// List.swift
|
2015-08-21 13:02:36 +00:00
|
|
|
// 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-12-28 22:08:31 +00:00
|
|
|
/// Command which lists all installed apps.
|
2018-10-14 21:35:48 +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"
|
|
|
|
|
2018-12-28 22:08:31 +00:00
|
|
|
private let appLibrary: AppLibrary
|
|
|
|
|
|
|
|
/// Designated initializer.
|
|
|
|
///
|
|
|
|
/// - Parameter appLibrary: AppLibrary manager.
|
|
|
|
public init(appLibrary: AppLibrary = MasAppLibrary()) {
|
|
|
|
self.appLibrary = appLibrary
|
|
|
|
}
|
2018-10-14 21:35:48 +00:00
|
|
|
|
2019-01-12 01:28:03 +00:00
|
|
|
/// Runs the command.
|
2019-01-30 06:15:24 +00:00
|
|
|
public func run(_: Options) -> Result<(), MASError> {
|
2018-12-28 22:08:31 +00:00
|
|
|
let products = appLibrary.installedApps
|
|
|
|
if products.isEmpty {
|
2016-04-17 00:18:14 +00:00
|
|
|
print("No installed apps found")
|
2016-09-17 12:58:38 +00:00
|
|
|
return .success(())
|
2016-04-17 00:18:14 +00:00
|
|
|
}
|
2015-12-30 21:20:25 +00:00
|
|
|
for product in products {
|
2016-09-17 16:49:34 +00:00
|
|
|
print("\(product.itemIdentifier) \(product.appName) (\(product.bundleVersion))")
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
2016-09-17 12:58:38 +00:00
|
|
|
return .success(())
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
2016-09-17 12:58:38 +00:00
|
|
|
}
|