]> njoseph.me Git - nimcoon.git/blobdiff - src/nimcoon.nim
Rebrand NimCoon to Nimcoon
[nimcoon.git] / src / nimcoon.nim
index 4f75d826f6d640fa091949edbce364370c13addf..9b3c6afdb7b8aced4571f5a1a538730fa6203104 100644 (file)
@@ -1,6 +1,5 @@
 import
   parseopt,
-  strformat,
   strutils,
   tables
 
@@ -12,10 +11,19 @@ import
 
 
 proc parseArguments(): CommandLineOptions =
+
   var
     searchQuery = ""
-    options = to_table({"musicOnly": false, "feelingLucky": false, "fullScreen": false, "download": false, "non-interactive": false})
-
+    options = to_table({
+      "musicOnly": false,
+      "feelingLucky": false,
+      "fullScreen": false,
+      "download": false,
+      "nonInteractive": false,
+      "autoPlay": false
+    })
+
+  # Non-interactive/Global options
   for kind, key, value in getopt():
     case kind
     of cmdArgument:
@@ -26,25 +34,17 @@ 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 "n", "non-interactive": options["nonInteractive"] = true
+      of "a", "auto-play": options["autoPlay"] = true
     of cmdEnd: discard
 
   if searchQuery == "":
-    stderr.writeLine "NimCoon doesn't permit browsing. You must provide a search query."
+    stderr.writeLine "Nimcoon doesn't permit browsing. You must provide a search query."
     quit(1)
 
   (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]}"
-     result = false
-
 proc main() =
   let
     player = selectMediaPlayer()
@@ -55,13 +55,19 @@ proc main() =
 
   if searchQuery.startswith("http") or searchQuery.startswith("magnet"):
     if options["download"]:
-      directDownload(sanitizeURL(searchQuery), options["musicOnly"])
+      directDownload(sanitizeURL(searchQuery), options)
     else:
       directPlay(sanitizeURL(searchQuery), player, options)
     quit(0)
 
+  # Take a shortcut and search directly with youtube-dl
+  if options["feelingLucky"]:
+    if options["download"]: luckyDownload(searchQuery, options)
+    else: luckyPlay(searchQuery, player, options)
+    quit(0)
+
   let searchResults = getSearchResults(searchQuery)
-  if options["non-interactive"]:
+  if options["nonInteractive"]: # Present in machine-readable format
     for index, (title, url) in searchResults:
       echo title
       echo url