// // Search.swift // mas-cli // // Created by Michael Schneider on 4/14/16. // Copyright © 2016 Andrew Naylor. All rights reserved. // import Commandant import Result struct ResultKeys { static let ResultCount = "resultCount" static let Results = "results" static let TrackName = "trackName" static let TrackId = "trackId" static let Version = "version" static let Price = "price" } public struct SearchCommand: CommandProtocol { public typealias Options = SearchOptions public let verb = "search" public let function = "Search for apps from the Mac App Store" public init() {} public func run(_ options: Options) -> Result<(), MASError> { guard let searchURLString = searchURLString(options.appName), let searchJson = URLSession.requestSynchronousJSONWithURLString(searchURLString) as? [String: Any] else { return .failure(.searchFailed) } guard let resultCount = searchJson[ResultKeys.ResultCount] as? Int, resultCount > 0, let results = searchJson[ResultKeys.Results] as? [[String: Any]] else { print("No results found") return .failure(.noSearchResultsFound) } // find out longest appName for formatting var appNameMaxLength = 0 for result in results { if let appName = result[ResultKeys.TrackName] as? String { if appName.count > appNameMaxLength { appNameMaxLength = appName.count } } } if appNameMaxLength > 50 { appNameMaxLength = 50 } for result in results { if let appName = result[ResultKeys.TrackName] as? String, let appVersion = result[ResultKeys.Version] as? String, let appId = result[ResultKeys.TrackId] as? Int, let appPrice = result[ResultKeys.Price] as? Double { // add empty spaces to app name that every app name has the same length let countedAppName = String((appName + String(repeating: " ", count: appNameMaxLength)).prefix(appNameMaxLength)) if options.price { print(String(format:"%12d %@ $%5.2f (%@)", appId, countedAppName, appPrice, appVersion)) } else { print(String(format:"%12d %@ (%@)", appId, countedAppName, appVersion)) } } } return .success(()) } func searchURLString(_ appName: String) -> String? { if let urlEncodedAppName = appName.URLEncodedString { return "https://itunes.apple.com/search?entity=macSoftware&term=\(urlEncodedAppName)&attribute=allTrackTerm" } return nil } } public struct SearchOptions: OptionsProtocol { let appName: String let price: Bool public static func create(_ appName: String) -> (_ price: Bool) -> SearchOptions { return { price in SearchOptions(appName: appName, price: price) } } public static func evaluate(_ m: CommandMode) -> Result> { return create <*> m <| Argument(usage: "the app name to search") <*> m <| Option(key: "price", defaultValue: false, usage: "Show price of found apps") } }