]> njoseph.me Git - nimcoon.git/blame - src/lib.nim
Reimplement streaming of playlists
[nimcoon.git] / src / lib.nim
CommitLineData
d65a1dcf
JN
1import
2 htmlparser,
3 httpClient,
e9f0c7d0 4 os,
d65a1dcf
JN
5 osproc,
6 sequtils,
7 sugar,
8 strformat,
9 std/[terminal],
e9f0c7d0 10 strformat,
d65a1dcf
JN
11 strtabs,
12 strutils,
6f161e0b 13 tables,
d65a1dcf
JN
14 uri,
15 xmltree
16
17import config
18
19type
6f161e0b 20 Options* = Table[string, bool]
e9f0c7d0 21 SearchResult* = tuple[title: string, url: string]
13a4017d 22 SearchResults* = seq[tuple[title: string, url: string]]
6f161e0b 23 CommandLineOptions* = tuple[searchQuery: string, options: Options]
e6561dc9 24 SelectionRange* = tuple[begin: int, until: int]
d65a1dcf 25
e9f0c7d0 26# poEchoCmd can be added to options for debugging
e4a68706 27let processOptions = {poStdErrToStdOut, poUsePath}
9e6b8568 28
d65a1dcf
JN
29proc selectMediaPlayer*(): string =
30 let availablePlayers = filterIt(supportedPlayers, execProcess("which " & it).len != 0)
31 if len(availablePlayers) == 0:
32 stderr.writeLine &"Please install one of the supported media players: {supportedPlayers}"
33 raise newException(OSError, "No supported media player found")
34 else:
35 return availablePlayers[0]
36
37proc getYoutubePage*(searchQuery: string): string =
38 let queryParam = encodeUrl(searchQuery)
39 let client = newHttpClient()
40 let response = get(client, &"https://www.youtube.com/results?hl=en&search_query={queryParam}")
41 return $response.body
42
13a4017d 43func extractTitlesAndUrls*(html: string): SearchResults =
4a0587e2
JN
44 {.noSideEffect.}:
45 parseHtml(html).findAll("a").
46 filter(a => "watch" in a.attrs["href"] and a.attrs.hasKey "title").
72720bec 47 map(a => (a.attrs["title"], "https://www.youtube.com" & a.attrs["href"]))
d65a1dcf 48
13a4017d 49proc presentVideoOptions*(searchResults: SearchResults) =
17955bba 50 eraseScreen()
d65a1dcf
JN
51 for index, (title, url) in searchResults:
52 styledEcho $index, ". ", styleBright, fgMagenta, title, "\n", resetStyle, fgCyan, url, "\n"
53
d36e2201 54func isPlaylist(url: string): bool =
28d7042e 55 # Identifies if video is part of a playlist
d36e2201
JN
56 # Only YouTube playlists are supported for now
57 "www.youtube.com" in url and "&list=" in url
58
59# This is a pure function with no side effects
60func buildPlayerArgs(url: string, options: Table[string, bool], player: string): seq[string] =
61 var args = @[url]
62 if options["musicOnly"]: args.add("--no-video")
63 if options["fullScreen"]: args.add("--fullscreen")
64 # Playlists are only supported for MPV player
65 if isPlaylist(url) and player == "mpv":
28d7042e
JN
66 let list_arg = url.split('&')[1]
67 args[0] = "https://www.youtube.com/playlist?" & list_arg
d36e2201
JN
68 return args
69
70proc play*(player: string, options: Table[string, bool], url: string, title: string = "") =
71 let args = buildPlayerArgs(url, options, player)
72 if title != "":
73 styledEcho "\n", fgGreen, "Playing ", styleBright, fgMagenta, title
e71f26f3
JN
74 if "--no-video" in args:
75 discard execShellCmd(&"{player} {args.join(\" \")}")
76 else:
77 discard execProcess(player, args=args, options=processOptions)
d65a1dcf 78
9a8ef4ad
JN
79func buildMusicDownloadArgs*(url: string): seq[string] =
80 {.noSideEffect.}:
81 var args = @["--ignore-errors", "-f", "bestaudio", "--extract-audio", "--audio-format", "mp3", "--audio-quality", "0", "-o"]
82 let downloadLocation = &"'{expandTilde(musicDownloadDirectory)}/%(title)s.%(ext)s'"
83 args.add(downloadLocation)
84 args.add(url)
85 return args
86
87func buildVideoDownloadArgs*(url: string): seq[string] =
88 {.noSideEffect.}:
89 var args = @["-f", "best", "-o"]
90 let downloadLocation = &"'{expandTilde(videoDownloadDirectory)}/%(title)s.%(ext)s'"
91 args.add(downloadLocation)
92 args.add(url)
93 return args
94
e9f0c7d0
JN
95proc download*(args: openArray[string], title: string) =
96 styledEcho "\n", fgGreen, "Downloading ", styleBright, fgMagenta, title
97 discard execShellCmd(&"youtube-dl {args.join(\" \")}")
98
d65a1dcf
JN
99func urlLongen(url: string): string =
100 url.replace("youtu.be/", "www.youtube.com/watch?v=")
101
102func stripZshEscaping(url: string): string =
103 url.replace("\\", "")
104
105func sanitizeURL*(url: string): string =
106 urlLongen(stripZshEscaping(url))
107
d36e2201 108proc directPlay*(url: string, player: string, options: Table[string, bool]) =
9a8ef4ad 109 if url.startswith("magnet:"):
d36e2201 110 if options["musicOnly"]:
811928a7
JN
111 discard execShellCmd(&"peerflix '{url}' -a --{player} -- --no-video")
112 else:
113 discard execProcess("peerflix", args=[url, &"--{player}"], options=processOptions)
fe1a5856 114 else:
d36e2201 115 play(player, options, url)
811928a7
JN
116
117proc directDownload*(url: string, musicOnly: bool) =
118 let args =
119 if musicOnly: buildMusicDownloadArgs(url)
120 else: buildVideoDownloadArgs(url)
9a8ef4ad 121 discard execShellCmd(&"youtube-dl {args.join(\" \")}")
13a4017d
JN
122
123proc offerSelection(searchResults: SearchResults, options: Table[string, bool], selectionRange: SelectionRange): string =
124 if options["feelingLucky"]: "0"
125 else:
126 presentVideoOptions(searchResults[selectionRange.begin .. selectionRange.until])
127 stdout.styledWrite(fgYellow, "Choose video number: ")
128 readLine(stdin)
129
13a4017d
JN
130proc handleUserInput(searchResult: SearchResult, options: Table[string, bool], player: string) =
131 if options["download"]:
132 if options["musicOnly"]:
133 download(buildMusicDownloadArgs(searchResult.url), searchResult.title)
134 else:
135 download(buildVideoDownloadArgs(searchResult.url), searchResult.title)
136 else:
d36e2201 137 play(player, options, searchResult.url, searchResult.title)
13a4017d
JN
138
139proc present*(searchResults: SearchResults, options: Table[string, bool], selectionRange: SelectionRange, player: string) =
140 #[ Continuously present options till the user quits the application
141 selectionRange: Currently available range to choose from depending on pagination
142 ]#
143
144 let userInput = offerSelection(searchResults, options, selectionRange)
145
146 case userInput
147 of "all":
148 for selection in selectionRange.begin .. selectionRange.until:
149 handleUserInput(searchResults[selection], options, player)
150 quit(0)
151 of "n":
152 if selectionRange.until + 1 < len(searchResults):
153 let newSelectionRange = (selectionRange.until + 1, min(len(searchResults) - 1, selectionRange.until + limit))
154 present(searchResults, options, newSelectionRange, player)
ebae91b4
JN
155 else:
156 present(searchResults, options, selectionRange, player)
13a4017d
JN
157 of "p":
158 if selectionRange.begin > 0:
159 let newSelectionRange = (selectionRange.begin - limit, selectionRange.until - limit)
160 present(searchResults, options, newSelectionRange, player)
ebae91b4
JN
161 else:
162 present(searchResults, options, selectionRange, player)
13a4017d
JN
163 of "q":
164 quit(0)
165 else:
db34bbff
JN
166 let searchResult = searchResults[selectionRange.begin .. selectionRange.until][parseInt(userInput)]
167 handleUserInput(searchResult, options, player)
13a4017d
JN
168 if options["feelingLucky"]:
169 quit(0)
170 else:
171 present(searchResults, options, selectionRange, player)