]> njoseph.me Git - nimcoon.git/blobdiff - src/nimcoon.nim
Fix all recent bugs. Shift to Invidious API.
[nimcoon.git] / src / nimcoon.nim
index 2db5ece023a706ac3312e2a73419cdf22282b355..45fca1748c1f280e51c19dd5b65f327c4c441035 100644 (file)
@@ -1,19 +1,27 @@
 import
-  os,
   parseopt,
-  std/[terminal],
   strformat,
   strutils,
   tables
 
-import config
-import lib
+import
+  config,
+  lib,
+  types,
+  youtube
 
 
 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
@@ -25,19 +33,24 @@ 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
 
-  return (searchQuery, options)
+  if searchQuery == "":
+    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")]
+  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() =
@@ -48,58 +61,24 @@ proc main() =
   if(not isValidOptions(options)):
     quit(1)
 
-  if searchQuery.startswith("https:") or searchQuery.startswith("magnet:"):
-    directPlay(searchQuery, player)
-    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
-
-  func buildMusicDownloadArgs(number: int): seq[string] =
-    {.noSideEffect.}:
-      var args = @["--ignore-errors", "-f", "bestaudio", "--extract-audio", "--audio-format", "mp3", "--audio-quality", "0", "-o"]
-      let downloadLocation = &"'{expandTilde(musicDownloadDirectory)}/{searchResults[number].title}.mp3'"
-      args.add(downloadLocation)
-      args.add(searchResults[number].url)
-      return args
-
-  proc handleUserInput(number: int) =
+  if searchQuery.startswith("http") or searchQuery.startswith("magnet"):
     if options["download"]:
-      if options["musicOnly"]:
-        download(buildMusicDownloadArgs(number), searchResults[number].title)
+      directDownload(sanitizeURL(searchQuery), options["musicOnly"])
     else:
-      play(player, buildPlayerArgs(number), searchResults[number].title)
-
-
-  while(true):
-    let userInput = getUserInput()
+      directPlay(sanitizeURL(searchQuery), player, options)
+    quit(0)
 
-    if userInput == "all":
-      for number in 0..(len(searchResults)):
-        # TODO `spawn` this?
-        handleUserInput(number)
+  let searchResults = getSearchResults(searchQuery)
+  if options["non-interactive"]:
+    for index, (title, url) in searchResults:
+      echo title
+      echo url
+      echo ""
+    quit(0)
 
-    if userInput == "q":
-      break
+  let numResults = min(limit, len(searchResults))
 
-    # Play the video using the preferred/available media player
-    let videoNumber = parseInt(userInput)
-    handleUserInput(videoNumber)
-    if options["feelingLucky"]:
-      break
+  present(searchResults, options, (0, numResults-1), player)
 
 
 when isMainModule: