]> njoseph.me Git - nimcoon.git/blame - src/lib.nim
Fix failing test
[nimcoon.git] / src / lib.nim
CommitLineData
d65a1dcf 1import
d65a1dcf 2 httpClient,
c12cc641 3 json,
e9f0c7d0 4 os,
d65a1dcf 5 osproc,
c12cc641 6 re,
d65a1dcf 7 sequtils,
d65a1dcf 8 std/[terminal],
e9f0c7d0 9 strformat,
d65a1dcf 10 strutils,
e08e5cbe 11 tables
d65a1dcf 12
e08e5cbe
JN
13import
14 config,
15 types
d65a1dcf 16
b44b6494 17
b44b6494 18let
86e6cb72 19 processOptions = {poStdErrToStdOut, poUsePath} # poEchoCmd can be added to options for debugging
b44b6494
JN
20 PEERTUBE_REGEX = re"videos\/watch\/[0-9a-f]{8}\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\b[0-9a-f]{12}"
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
c12cc641 36proc getPeerTubeMagnetLink(url: string): string =
86e6cb72 37 ## Gets the magnet link of the best possible resolution from PeerTube
c12cc641
JN
38 let uuid = url.substr(find(url, PEERTUBE_REGEX) + "videos/watch/".len)
39 let domainName = url.substr(8, find(url, '/', start=8) - 1)
40 let apiURL = &"https://{domainName}/api/v1/videos/{uuid}"
41 let client = newHttpClient()
42 let response = get(client, apiURL)
43 let jsonNode = parseJson($response.body)
44 jsonNode["files"][0]["magnetUri"].getStr()
45
b44b6494 46
13a4017d 47proc presentVideoOptions*(searchResults: SearchResults) =
17955bba 48 eraseScreen()
d65a1dcf 49 for index, (title, url) in searchResults:
86e6cb72 50 styledEcho $index, ". ", styleBright, fgMagenta, title, "\n", resetStyle, fgCyan, " ", url, "\n"
d65a1dcf 51
b44b6494 52
d36e2201 53func buildPlayerArgs(url: string, options: Table[string, bool], player: string): seq[string] =
046c2cc3
JN
54 let musicOnly = if options["musicOnly"]: "--no-video" else: ""
55 let fullScreen = if options["fullScreen"]: "--fullscreen" else: ""
55b0cae7 56 filterIt([url, musicOnly, fullScreen], it != "")
d36e2201 57
b44b6494 58
d36e2201
JN
59proc play*(player: string, options: Table[string, bool], url: string, title: string = "") =
60 let args = buildPlayerArgs(url, options, player)
61 if title != "":
62 styledEcho "\n", fgGreen, "Playing ", styleBright, fgMagenta, title
e71f26f3
JN
63 if "--no-video" in args:
64 discard execShellCmd(&"{player} {args.join(\" \")}")
65 else:
66 discard execProcess(player, args=args, options=processOptions)
d65a1dcf 67
b44b6494
JN
68
69func buildMusicDownloadArgs(url: string): seq[string] =
9a8ef4ad 70 {.noSideEffect.}:
9a8ef4ad 71 let downloadLocation = &"'{expandTilde(musicDownloadDirectory)}/%(title)s.%(ext)s'"
b44b6494
JN
72 @["--ignore-errors", "-f", "bestaudio", "--extract-audio", "--audio-format", "mp3",
73 "--audio-quality", "0", "-o", downloadLocation, url]
74
9a8ef4ad 75
b44b6494 76func buildVideoDownloadArgs(url: string): seq[string] =
9a8ef4ad 77 {.noSideEffect.}:
9a8ef4ad 78 let downloadLocation = &"'{expandTilde(videoDownloadDirectory)}/%(title)s.%(ext)s'"
55b0cae7 79 @["-f", "best", "-o", downloadLocation, url]
9a8ef4ad 80
b44b6494 81
e9f0c7d0
JN
82proc download*(args: openArray[string], title: string) =
83 styledEcho "\n", fgGreen, "Downloading ", styleBright, fgMagenta, title
84 discard execShellCmd(&"youtube-dl {args.join(\" \")}")
85
b44b6494 86
55b0cae7 87func urlLongen(url: string): string = url.replace("youtu.be/", "www.youtube.com/watch?v=")
d65a1dcf 88
b44b6494
JN
89
90func rewriteInvidiousToYouTube(url: string): string =
91 {.noSideEffect.}:
92 if rewriteInvidiousURLs: url.replace("invidio.us", "www.youtube.com") else: url
93
94
c30c694e 95func stripZshEscaping(url: string): string = url.replace("\\", "")
d65a1dcf 96
b44b6494
JN
97
98func sanitizeURL*(url: string): string =
99 rewriteInvidiousToYouTube(urlLongen(stripZshEscaping(url)))
100
d65a1dcf 101
d36e2201 102proc directPlay*(url: string, player: string, options: Table[string, bool]) =
c12cc641
JN
103 let url =
104 if find(url, PEERTUBE_REGEX) != -1 and isInstalled("webtorrent"):
105 getPeerTubeMagnetLink(url)
106 else: url
d7688e97 107 if url.startswith("magnet:") or url.endswith(".torrent"):
d36e2201 108 if options["musicOnly"]:
8d06ad69 109 # TODO Replace with WebTorrent once it supports media player options
811928a7
JN
110 discard execShellCmd(&"peerflix '{url}' -a --{player} -- --no-video")
111 else:
8d06ad69
JN
112 # WebTorrent is so much faster!
113 discard execProcess("webtorrent", args=[url, &"--{player}"], options=processOptions)
fe1a5856 114 else:
d36e2201 115 play(player, options, url)
811928a7 116
b44b6494 117
811928a7
JN
118proc directDownload*(url: string, musicOnly: bool) =
119 let args =
120 if musicOnly: buildMusicDownloadArgs(url)
121 else: buildVideoDownloadArgs(url)
0c2f0385
JN
122 if isInstalled("aria2c"):
123 discard execShellCmd(&"youtube-dl {args.join(\" \")} --external-downloader aria2c --external-downloader-args '-x 16 -s 16 -k 2M'")
124 else:
125 discard execShellCmd(&"youtube-dl {args.join(\" \")}")
13a4017d 126
b44b6494 127
13a4017d
JN
128proc offerSelection(searchResults: SearchResults, options: Table[string, bool], selectionRange: SelectionRange): string =
129 if options["feelingLucky"]: "0"
130 else:
131 presentVideoOptions(searchResults[selectionRange.begin .. selectionRange.until])
132 stdout.styledWrite(fgYellow, "Choose video number: ")
133 readLine(stdin)
134
b44b6494 135
13a4017d
JN
136proc handleUserInput(searchResult: SearchResult, options: Table[string, bool], player: string) =
137 if options["download"]:
138 if options["musicOnly"]:
139 download(buildMusicDownloadArgs(searchResult.url), searchResult.title)
140 else:
141 download(buildVideoDownloadArgs(searchResult.url), searchResult.title)
142 else:
d36e2201 143 play(player, options, searchResult.url, searchResult.title)
13a4017d 144
b44b6494 145
13a4017d 146proc present*(searchResults: SearchResults, options: Table[string, bool], selectionRange: SelectionRange, player: string) =
55b0cae7
JN
147 ##[ Continuously present options till the user quits the application
148
149 selectionRange: Currently available range to choose from depending on pagination
150 ]##
13a4017d
JN
151
152 let userInput = offerSelection(searchResults, options, selectionRange)
153
154 case userInput
155 of "all":
156 for selection in selectionRange.begin .. selectionRange.until:
157 handleUserInput(searchResults[selection], options, player)
158 quit(0)
159 of "n":
160 if selectionRange.until + 1 < len(searchResults):
161 let newSelectionRange = (selectionRange.until + 1, min(len(searchResults) - 1, selectionRange.until + limit))
162 present(searchResults, options, newSelectionRange, player)
ebae91b4
JN
163 else:
164 present(searchResults, options, selectionRange, player)
13a4017d
JN
165 of "p":
166 if selectionRange.begin > 0:
167 let newSelectionRange = (selectionRange.begin - limit, selectionRange.until - limit)
168 present(searchResults, options, newSelectionRange, player)
ebae91b4
JN
169 else:
170 present(searchResults, options, selectionRange, player)
13a4017d
JN
171 of "q":
172 quit(0)
173 else:
db34bbff
JN
174 let searchResult = searchResults[selectionRange.begin .. selectionRange.until][parseInt(userInput)]
175 handleUserInput(searchResult, options, player)
13a4017d
JN
176 if options["feelingLucky"]:
177 quit(0)
178 else:
179 present(searchResults, options, selectionRange, player)