]> njoseph.me Git - nimcoon.git/blame - src/nimcoon.nim
Add direct download for video
[nimcoon.git] / src / nimcoon.nim
CommitLineData
6ff2dbac 1import
e9f0c7d0 2 os,
6ff2dbac 3 parseopt,
6ff2dbac 4 std/[terminal],
6f161e0b
JN
5 strformat,
6 strutils,
7 tables
44978125 8
72720bec 9import config
d65a1dcf 10import lib
44978125 11
6f161e0b
JN
12
13proc parseArguments(): CommandLineOptions =
121e06b2
JN
14 var
15 searchQuery = ""
6f161e0b 16 options = to_table({"musicOnly": false, "feelingLucky": false, "fullScreen": false, "download": false})
121e06b2
JN
17
18 for kind, key, value in getopt():
19 case kind
20 of cmdArgument:
21 searchQuery = key
22 of cmdShortOption, cmdLongOption:
23 case key
6f161e0b
JN
24 of "m", "music": options["musicOnly"] = true
25 of "l", "lucky": options["feelingLucky"] = true
26 of "f", "full-screen": options["fullScreen"] = true
27 of "d", "download": options["download"] = true
28 of cmdEnd: discard
29
30 return (searchQuery, options)
121e06b2 31
6f161e0b
JN
32
33proc isValidOptions*(options: Options): bool =
34 # Check for invalid combinations of options
35 var invalidCombinations = [("musicOnly", "fullScreen")]
36 for combination in invalidCombinations:
37 if options[combination[0]] and options[combination[1]]:
38 stderr.writeLine fmt"Incompatible options provided: {combination[0]} and {combination[1]}"
39 return false
40 return true
121e06b2 41
d807245d 42
121e06b2
JN
43proc main() =
44 let
45 player = selectMediaPlayer()
6f161e0b
JN
46 (searchQuery, options) = parseArguments()
47
48 if(not isValidOptions(options)):
49 quit(1)
121e06b2 50
92f80e5a 51 if searchQuery.startswith("https:") or searchQuery.startswith("magnet:"):
9a8ef4ad
JN
52 if options["download"]:
53 directDownload(sanitizeURL(searchQuery))
54 else:
55 directPlay(sanitizeURL(searchQuery), player)
9e6b8568 56 quit(0)
121e06b2
JN
57
58 let searchResults = extractTitlesAndUrls(getYoutubePage(searchQuery))
59
d807245d 60 proc getUserInput(): string =
6f161e0b 61 if options["feelingLucky"]: "0"
121e06b2 62 else:
72720bec 63 presentVideoOptions(searchResults[..(limit-1)])
121e06b2 64 stdout.styledWrite(fgYellow, "Choose video number: ")
d807245d 65 readLine(stdin)
efcc0441 66
c8812b68 67 # This is a pure function with no side effects
e9f0c7d0 68 func buildPlayerArgs(number: int): seq[string] =
c8812b68 69 var args = @[searchResults[number].url]
6f161e0b
JN
70 if options["musicOnly"]: args.add("--no-video")
71 if options["fullScreen"]: args.add("--fullscreen")
c8812b68 72 return args
d1e4d2de 73
e9f0c7d0
JN
74 proc handleUserInput(number: int) =
75 if options["download"]:
76 if options["musicOnly"]:
9a8ef4ad 77 download(buildMusicDownloadArgs(searchResults[number].url), searchResults[number].title)
d2ebe4d2 78 else:
9a8ef4ad 79 download(buildVideoDownloadArgs(searchResults[number].url), searchResults[number].title)
e9f0c7d0
JN
80 else:
81 play(player, buildPlayerArgs(number), searchResults[number].title)
82
83
d807245d
JN
84 while(true):
85 let userInput = getUserInput()
72720bec
JN
86
87 if userInput == "all":
88 for number in 0..(len(searchResults)):
e9f0c7d0
JN
89 # TODO `spawn` this?
90 handleUserInput(number)
72720bec 91
d807245d
JN
92 if userInput == "q":
93 break
94
d807245d 95 # Play the video using the preferred/available media player
9e6b8568 96 let videoNumber = parseInt(userInput)
e9f0c7d0 97 handleUserInput(videoNumber)
6f161e0b 98 if options["feelingLucky"]:
d807245d
JN
99 break
100
a2319a3f 101
d65a1dcf
JN
102when isMainModule:
103 main()