]> njoseph.me Git - nimcoon.git/blame - src/lib.nim
Allow CLI player controls for music
[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]
6f161e0b 22 CommandLineOptions* = tuple[searchQuery: string, options: Options]
d65a1dcf 23
e9f0c7d0
JN
24# poEchoCmd can be added to options for debugging
25let processOptions = {poStdErrToStdOut, poUsePath, poEchoCmd}
9e6b8568 26
d65a1dcf
JN
27proc selectMediaPlayer*(): string =
28 let availablePlayers = filterIt(supportedPlayers, execProcess("which " & it).len != 0)
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
35proc getYoutubePage*(searchQuery: string): string =
36 let queryParam = encodeUrl(searchQuery)
37 let client = newHttpClient()
38 let response = get(client, &"https://www.youtube.com/results?hl=en&search_query={queryParam}")
39 return $response.body
40
4a0587e2
JN
41func extractTitlesAndUrls*(html: string): seq[SearchResult] =
42 {.noSideEffect.}:
43 parseHtml(html).findAll("a").
44 filter(a => "watch" in a.attrs["href"] and a.attrs.hasKey "title").
72720bec 45 map(a => (a.attrs["title"], "https://www.youtube.com" & a.attrs["href"]))
d65a1dcf
JN
46
47proc presentVideoOptions*(searchResults: seq[SearchResult]) =
17955bba 48 eraseScreen()
d65a1dcf
JN
49 for index, (title, url) in searchResults:
50 styledEcho $index, ". ", styleBright, fgMagenta, title, "\n", resetStyle, fgCyan, url, "\n"
51
9e6b8568 52proc play*(player: string, args: openArray[string], title: string) =
9e6b8568 53 styledEcho "\n", fgGreen, "Playing ", styleBright, fgMagenta, title
e71f26f3
JN
54 if "--no-video" in args:
55 discard execShellCmd(&"{player} {args.join(\" \")}")
56 else:
57 discard execProcess(player, args=args, options=processOptions)
d65a1dcf 58
e9f0c7d0
JN
59proc download*(args: openArray[string], title: string) =
60 styledEcho "\n", fgGreen, "Downloading ", styleBright, fgMagenta, title
61 discard execShellCmd(&"youtube-dl {args.join(\" \")}")
62
d65a1dcf
JN
63func urlLongen(url: string): string =
64 url.replace("youtu.be/", "www.youtube.com/watch?v=")
65
66func stripZshEscaping(url: string): string =
67 url.replace("\\", "")
68
69func sanitizeURL*(url: string): string =
70 urlLongen(stripZshEscaping(url))
71
72proc directPlay*(searchQuery: string, player: string) =
fe1a5856
JN
73 let url = sanitizeURL(searchQuery)
74 if searchQuery.startswith("magnet:"):
9e6b8568 75 discard execProcess("peerflix", args=[url, &"--{player}"], options=processOptions)
fe1a5856 76 else:
3ba7018e 77 discard execProcess(player, args=[url], options=processOptions)