]> njoseph.me Git - nimcoon.git/blame - src/lib.nim
update TODO list
[nimcoon.git] / src / lib.nim
CommitLineData
d65a1dcf 1import
e9f0c7d0 2 os,
d65a1dcf 3 osproc,
c12cc641 4 re,
d65a1dcf 5 sequtils,
d65a1dcf 6 std/[terminal],
e9f0c7d0 7 strformat,
d65a1dcf 8 strutils,
e08e5cbe 9 tables
d65a1dcf 10
e08e5cbe
JN
11import
12 config,
6697cfd2 13 peertube,
5f9cdfef
JN
14 types,
15 youtube
d65a1dcf 16
b44b6494 17
b44b6494 18let
6697cfd2 19 processOptions = {poStdErrToStdOut, poUsePath} # Add poEchoCmd to debug
62e4d409 20 PEERTUBE_REGEX = re"w\/[0-9a-zA-z]{22}"
b44b6494 21
c12cc641
JN
22
23proc isInstalled(program: string): bool =
24 execProcess("which " & program).len != 0
9e6b8568 25
b44b6494 26
d65a1dcf 27proc selectMediaPlayer*(): string =
c12cc641 28 let availablePlayers = supportedPlayers.filter(isInstalled)
d65a1dcf
JN
29 if len(availablePlayers) == 0:
30 stderr.writeLine &"Please install one of the supported media players: {supportedPlayers}"
31 raise newException(OSError, "No supported media player found")
32 else:
33 return availablePlayers[0]
34
b44b6494 35
d7f4645c
JN
36proc printTitle(action: string, title: string) =
37 styledEcho "\n", fgGreen, &"{action} ", styleBright, fgMagenta, title
38
39
6697cfd2
JN
40###############
41# URL CLEANUP #
42###############
c12cc641 43
6697cfd2
JN
44func rewriteInvidiousToYouTube*(url: string): string =
45 {.noSideEffect.}:
46 if rewriteInvidiousURLs and url.replace(".", "").contains("invidious"):
47 &"https://www.youtube.com/watch?v={url.split(\"=\")[1]}"
48 else: url
b44b6494 49
d65a1dcf 50
6697cfd2
JN
51func urlLongen(url: string): string =
52 url.replace("youtu.be/", "www.youtube.com/watch?v=")
53
54
55func stripZshEscaping(url: string): string = url.replace("\\", "")
56
57
58func sanitizeURL*(url: string): string =
59 rewriteInvidiousToYouTube(urlLongen(stripZshEscaping(url)))
60
61
62########
63# PLAY #
64########
a2d28598 65
d36e2201 66func buildPlayerArgs(url: string, options: Table[string, bool], player: string): seq[string] =
046c2cc3
JN
67 let musicOnly = if options["musicOnly"]: "--no-video" else: ""
68 let fullScreen = if options["fullScreen"]: "--fullscreen" else: ""
55b0cae7 69 filterIt([url, musicOnly, fullScreen], it != "")
d36e2201 70
b44b6494 71
d36e2201
JN
72proc play*(player: string, options: Table[string, bool], url: string, title: string = "") =
73 let args = buildPlayerArgs(url, options, player)
74 if title != "":
d7f4645c 75 printTitle("Playing", title)
e71f26f3
JN
76 if "--no-video" in args:
77 discard execShellCmd(&"{player} {args.join(\" \")}")
78 else:
a2d28598 79 discard execProcess(player, args=args, options=processOptions)
d65a1dcf 80
b44b6494 81
6697cfd2
JN
82proc directPlay*(url: string, player: string, options: Table[string, bool]) =
83 let url =
84 if find(url, PEERTUBE_REGEX) != -1 and "webtorrent".isInstalled:
f114ff9a 85 getPeerTubeMagnetLink(url, options["musicOnly"])
6697cfd2
JN
86 else: url
87 if url.startswith("magnet:") or url.endswith(".torrent"):
88 if options["musicOnly"]:
f114ff9a 89 discard execShellCmd(&"webtorrent '{url}' --{player} --player-args='--no-video'")
6697cfd2 90 else:
6697cfd2
JN
91 discard execProcess("webtorrent", args=[url, &"--{player}"], options=processOptions)
92 else:
93 play(player, options, url)
94
95
96############
97# DOWNLOAD #
98############
99
b44b6494 100func buildMusicDownloadArgs(url: string): seq[string] =
9a8ef4ad 101 {.noSideEffect.}:
9a8ef4ad 102 let downloadLocation = &"'{expandTilde(musicDownloadDirectory)}/%(title)s.%(ext)s'"
b44b6494
JN
103 @["--ignore-errors", "-f", "bestaudio", "--extract-audio", "--audio-format", "mp3",
104 "--audio-quality", "0", "-o", downloadLocation, url]
105
9a8ef4ad 106
b44b6494 107func buildVideoDownloadArgs(url: string): seq[string] =
9a8ef4ad 108 {.noSideEffect.}:
9a8ef4ad 109 let downloadLocation = &"'{expandTilde(videoDownloadDirectory)}/%(title)s.%(ext)s'"
55b0cae7 110 @["-f", "best", "-o", downloadLocation, url]
9a8ef4ad 111
b44b6494 112
6697cfd2
JN
113func buildDownloadArgs(url: string, options: Options): seq[string] =
114 if options["musicOnly"]: buildMusicDownloadArgs(url)
115 else: buildVideoDownloadArgs(url)
116
117
e9f0c7d0 118proc download*(args: openArray[string], title: string) =
d7f4645c 119 printTitle("Downloading", title)
f4db2dfe 120 discard execShellCmd(&"yt-dlp {args.join(\" \")}")
e9f0c7d0 121
b44b6494 122
6697cfd2
JN
123proc directDownload*(url: string, options: Options) =
124 let args = buildDownloadArgs(url, options)
125 if "aria2c".isInstalled:
f4db2dfe 126 discard execShellCmd(&"yt-dlp {args.join(\" \")} --external-downloader aria2c --external-downloader-args '-x 16 -s 16 -k 2M'")
0c2f0385 127 else:
f4db2dfe 128 discard execShellCmd(&"yt-dlp {args.join(\" \")}")
13a4017d 129
6697cfd2 130proc luckyDownload*(searchQuery: string, options: Options) =
f4db2dfe
JN
131 let args = @[&"ytsearch1:\"{searchQuery}\""] & buildDownloadArgs("", options)
132 let title = execProcess(&"yt-dlp --get-title {args.join(\" \")}").split("\n")[0]
d7f4645c 133 download(args, title)
b44b6494 134
6697cfd2
JN
135proc luckyPlay*(searchQuery: string, player: string, options: Options) =
136 let args = @[&"ytsearch:\"{searchQuery}\""] & buildDownloadArgs("", options)
f4db2dfe 137 let output = execProcess(&"yt-dlp --get-url --get-title {args.join(\" \")}").split("\n")
d7f4645c
JN
138 let
139 title = output[0]
140 url = &"\"{output[1]}\""
141 play(player, options, url, title)
13a4017d 142
6697cfd2
JN
143###########
144# OPTIONS #
145###########
b44b6494 146
9ed70b9e
JN
147proc isValidOptions*(options: Options): bool =
148 # Check for invalid combinations of options
5f9cdfef 149 var invalidCombinations = [("musicOnly", "fullScreen"), ("download", "fullScreen"), ("download", "autoPlay")]
9ed70b9e
JN
150 result = true
151 for combination in invalidCombinations:
152 if options[combination[0]] and options[combination[1]]:
153 stderr.writeLine fmt"Incompatible options provided: {combination[0]} and {combination[1]}"
154 result = false
5f9cdfef
JN
155 # TODO Make this overridable in configuration
156 if options["autoPlay"] and not options["musicOnly"]:
157 stderr.writeLine "--music-only must be provided with --auto-play. This is to prevent binge-watching."
158 result = false
9ed70b9e
JN
159
160
161proc updateOptions(options: Options, newOptions: string): Options =
162 result = options
163
5f9cdfef 164 # Interactive options
9ed70b9e
JN
165 for option in newOptions:
166 case option
167 of 'm': result["musicOnly"] = true
168 of 'f': result["fullScreen"] = true
169 of 'd': result["download"] = true
5f9cdfef 170 of 'a': result["autoPlay"] = true
9ed70b9e 171 else:
5f9cdfef 172 stderr.writeLine "Invalid option provided!"
9ed70b9e
JN
173 quit(2)
174
175 if(not isValidOptions(result)):
176 quit(2)
177
178
6697cfd2
JN
179################
180# PRESENTATION #
181################
182
183proc handleUserInput(searchResult: SearchResult, options: Table[string, bool], player: string) =
184 if options["autoPlay"]:
185 play(player, options, searchResult.url, searchResult.title)
186 handleUserInput(getAutoPlayVideo(searchResult), options, player) # inifinite playlist till user quits
187 elif options["download"]:
188 download(buildDownloadArgs(searchResult.url, options), searchResult.title)
189 else:
190 play(player, options, searchResult.url, searchResult.title)
191
192
193proc presentVideoOptions(searchResults: SearchResults) =
194 eraseScreen()
195 for index, (title, url) in searchResults:
196 styledEcho $index, ". ", styleBright, fgMagenta, title, "\n", resetStyle, fgCyan, " ", url, "\n"
197
198
199proc offerSelection(searchResults: SearchResults, options: Table[string, bool], selectionRange: SelectionRange): string =
200 if options["feelingLucky"]: "0"
201 else:
202 presentVideoOptions(searchResults[selectionRange.begin .. selectionRange.until])
203 stdout.styledWrite(fgYellow, "Choose video number: ")
204 readLine(stdin)
205
206
13a4017d 207proc present*(searchResults: SearchResults, options: Table[string, bool], selectionRange: SelectionRange, player: string) =
55b0cae7
JN
208 ##[ Continuously present options till the user quits the application
209
210 selectionRange: Currently available range to choose from depending on pagination
211 ]##
13a4017d
JN
212
213 let userInput = offerSelection(searchResults, options, selectionRange)
214
215 case userInput
216 of "all":
217 for selection in selectionRange.begin .. selectionRange.until:
218 handleUserInput(searchResults[selection], options, player)
219 quit(0)
220 of "n":
221 if selectionRange.until + 1 < len(searchResults):
222 let newSelectionRange = (selectionRange.until + 1, min(len(searchResults) - 1, selectionRange.until + limit))
223 present(searchResults, options, newSelectionRange, player)
ebae91b4
JN
224 else:
225 present(searchResults, options, selectionRange, player)
13a4017d
JN
226 of "p":
227 if selectionRange.begin > 0:
228 let newSelectionRange = (selectionRange.begin - limit, selectionRange.until - limit)
229 present(searchResults, options, newSelectionRange, player)
ebae91b4
JN
230 else:
231 present(searchResults, options, selectionRange, player)
13a4017d
JN
232 of "q":
233 quit(0)
234 else:
9ed70b9e
JN
235 if " " in userInput:
236 let selection = parseInt(userInput.split(" ")[0])
237 let updatedOptions = updateOptions(options, userInput.split(" ")[1])
238 let searchResult = searchResults[selectionRange.begin .. selectionRange.until][selection]
239 handleUserInput(searchResult, updatedOptions, player)
240 else:
241 let searchResult = searchResults[selectionRange.begin .. selectionRange.until][parseInt(userInput)]
242 handleUserInput(searchResult, options, player)
13a4017d
JN
243 if options["feelingLucky"]:
244 quit(0)
245 else:
246 present(searchResults, options, selectionRange, player)