]> njoseph.me Git - nimcoon.git/blobdiff - src/nimcoon.nim
Bump version and update changelog
[nimcoon.git] / src / nimcoon.nim
index 0624bad087bd69f6febc0f91b24082cf1445a79f..cc0bd7eb5acbee62703806c8f1f345fa17b4eb00 100644 (file)
@@ -1,7 +1,5 @@
 import
-  os,
   parseopt,
-  std/[terminal],
   strformat,
   strutils,
   tables
@@ -39,7 +37,6 @@ proc isValidOptions*(options: Options): bool =
      return false
   return true
 
-
 proc main() =
   let
     player = selectMediaPlayer()
@@ -57,46 +54,7 @@ proc main() =
 
   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..(limit-1): # Nim decided to deviate from Python ranges here
-        # 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: