X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/427e87f9d63a2514a8f31ba915e934fcab8399a2..25f5a0342dbd064790637fc5c05d8058d4da25f2:/src/nimcoon.nim diff --git a/src/nimcoon.nim b/src/nimcoon.nim index 8b1ba59..3844d40 100644 --- a/src/nimcoon.nim +++ b/src/nimcoon.nim @@ -1,17 +1,17 @@ import parseopt, - std/[terminal], - strutils + strformat, + strutils, + tables import config import lib -proc parseOptions(): CommandLineOptions = + +proc parseArguments(): CommandLineOptions = var searchQuery = "" - musicOnly = false - feelingLucky = false - fullScreen = false + options = to_table({"musicOnly": false, "feelingLucky": false, "fullScreen": false, "download": false}) for kind, key, value in getopt(): case kind @@ -19,55 +19,42 @@ proc parseOptions(): CommandLineOptions = searchQuery = key of cmdShortOption, cmdLongOption: case key - of "m", "music": musicOnly = true - of "l", "lucky": feelingLucky = true - of "f", "full-screen": fullScreen = true - of cmdEnd: - discard + of "m", "music": options["musicOnly"] = true + of "l", "lucky": options["feelingLucky"] = true + of "f", "full-screen": options["fullScreen"] = true + of "d", "download": options["download"] = true + of cmdEnd: discard + + (searchQuery, options) - return (searchQuery, musicOnly, feelingLucky, fullScreen) +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]}" + result = false proc main() = let player = selectMediaPlayer() - (searchQuery, musicOnly, feelingLucky, fullScreen) = parseOptions() + (searchQuery, options) = parseArguments() - if searchQuery.startswith("https:") or searchQuery.startswith("magnet:"): - directPlay(searchQuery, player) - quit(0) - - let searchResults = extractTitlesAndUrls(getYoutubePage(searchQuery)) + if(not isValidOptions(options)): + quit(1) - proc getUserInput(): string = - if feelingLucky: "0" + if searchQuery.startswith("http") or searchQuery.startswith("magnet"): + if options["download"]: + directDownload(sanitizeURL(searchQuery), options["musicOnly"]) else: - presentVideoOptions(searchResults[..(limit-1)]) - stdout.styledWrite(fgYellow, "Choose video number: ") - readLine(stdin) - - # This is a pure function with no side effects - func buildArgs(number: int): seq[string] = - var args = @[searchResults[number].url] - if musicOnly: args.add("--no-video") - if fullScreen: args.add("--fullscreen") - return args - - while(true): - let userInput = getUserInput() - - if userInput == "all": - for number in 0..(len(searchResults)): - play(player, buildArgs(number), searchResults[number].title) + directPlay(sanitizeURL(searchQuery), player, options) + quit(0) - if userInput == "q": - break + let searchResults = extractTitlesAndUrls(getYoutubePage(searchQuery)) - # Play the video using the preferred/available media player - let videoNumber = parseInt(userInput) - play(player, buildArgs(videoNumber), searchResults[videoNumber].title) - if feelingLucky: - break + present(searchResults, options, (0, limit-1), player) when isMainModule: