X-Git-Url: http://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/e08e5cbe091074b7cd05bfe131edb2af70b26bc9..a2d28598f44142969997ae56f6bd684c54d95e0b:/src/nimcoon.nim diff --git a/src/nimcoon.nim b/src/nimcoon.nim index f3b29c6..45fca17 100644 --- a/src/nimcoon.nim +++ b/src/nimcoon.nim @@ -12,9 +12,16 @@ import proc parseArguments(): CommandLineOptions = + var searchQuery = "" - options = to_table({"musicOnly": false, "feelingLucky": false, "fullScreen": false, "download": false}) + options = to_table({ + "musicOnly": false, + "feelingLucky": false, + "fullScreen": false, + "download": false, + "non-interactive": false + }) for kind, key, value in getopt(): case kind @@ -26,8 +33,13 @@ proc parseArguments(): CommandLineOptions = of "l", "lucky": options["feelingLucky"] = true of "f", "full-screen": options["fullScreen"] = true of "d", "download": options["download"] = true + of "n", "non-interactive": options["non-interactive"] = true of cmdEnd: discard + if searchQuery == "": + stderr.writeLine "NimCoon doesn't permit browsing. You must provide a search query." + quit(1) + (searchQuery, options) @@ -40,6 +52,7 @@ proc isValidOptions*(options: Options): bool = stderr.writeLine fmt"Incompatible options provided: {combination[0]} and {combination[1]}" result = false + proc main() = let player = selectMediaPlayer() @@ -56,6 +69,13 @@ proc main() = quit(0) let searchResults = getSearchResults(searchQuery) + if options["non-interactive"]: + for index, (title, url) in searchResults: + echo title + echo url + echo "" + quit(0) + let numResults = min(limit, len(searchResults)) present(searchResults, options, (0, numResults-1), player)