X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/956837326555259ef33d1bab42a3981b4082b20a..25f5a0342dbd064790637fc5c05d8058d4da25f2:/src/nimcoon.nim diff --git a/src/nimcoon.nim b/src/nimcoon.nim index 56e6867..3844d40 100644 --- a/src/nimcoon.nim +++ b/src/nimcoon.nim @@ -1,7 +1,5 @@ import - os, parseopt, - std/[terminal], strformat, strutils, tables @@ -27,18 +25,17 @@ proc parseArguments(): CommandLineOptions = of "d", "download": options["download"] = true of cmdEnd: discard - return (searchQuery, options) + (searchQuery, options) proc isValidOptions*(options: Options): bool = # Check for invalid combinations of options var invalidCombinations = [("musicOnly", "fullScreen"), ("download", "fullScreen")] + result = true for combination in invalidCombinations: if options[combination[0]] and options[combination[1]]: stderr.writeLine fmt"Incompatible options provided: {combination[0]} and {combination[1]}" - return false - return true - + result = false proc main() = let @@ -48,55 +45,16 @@ proc main() = if(not isValidOptions(options)): quit(1) - if searchQuery.startswith("https:") or searchQuery.startswith("magnet:"): + if searchQuery.startswith("http") or searchQuery.startswith("magnet"): if options["download"]: directDownload(sanitizeURL(searchQuery), options["musicOnly"]) else: - directPlay(sanitizeURL(searchQuery), player, options["musicOnly"]) + directPlay(sanitizeURL(searchQuery), player, options) quit(0) let searchResults = extractTitlesAndUrls(getYoutubePage(searchQuery)) - proc getUserInput(): string = - if options["feelingLucky"]: "0" - else: - presentVideoOptions(searchResults[..(limit-1)]) - stdout.styledWrite(fgYellow, "Choose video number: ") - readLine(stdin) - - # This is a pure function with no side effects - func buildPlayerArgs(number: int): seq[string] = - var args = @[searchResults[number].url] - if options["musicOnly"]: args.add("--no-video") - if options["fullScreen"]: args.add("--fullscreen") - return args - - proc handleUserInput(number: int) = - if options["download"]: - if options["musicOnly"]: - download(buildMusicDownloadArgs(searchResults[number].url), searchResults[number].title) - else: - download(buildVideoDownloadArgs(searchResults[number].url), searchResults[number].title) - else: - play(player, buildPlayerArgs(number), searchResults[number].title) - - - while(true): - let userInput = getUserInput() - - if userInput == "all": - for number in 0..(len(searchResults)): - # TODO `spawn` this? - handleUserInput(number) - - if userInput == "q": - break - - # Play the video using the preferred/available media player - let videoNumber = parseInt(userInput) - handleUserInput(videoNumber) - if options["feelingLucky"]: - break + present(searchResults, options, (0, limit-1), player) when isMainModule: