]> njoseph.me Git - nimcoon.git/blame_incremental - clitube.nim
Fix .gitlab-ci.yml
[nimcoon.git] / clitube.nim
... / ...
CommitLineData
1import htmlparser
2import httpClient
3import os
4import osproc
5import sequtils, sugar
6import strtabs
7import strutils
8import uri
9import xmltree
10
11# Supported video players in order of preference
12let supportedPlayers = @["mpv", "mplayer", "vlc"]
13
14# Hard-coded terminal colors
15proc reset(): string {.procvar.} = "\e[0m"
16proc bold*(s: string): string {.procvar.} = "\e[1m" & s & reset()
17
18proc fgMagenta*(s: string): string {.procvar.} = "\e[35m" & s & reset()
19proc fgCyan*(s: string): string {.procvar.} = "\e[36m" & s & reset()
20
21type SearchResult = tuple[title: string, url: string]
22
23proc selectMediaPlayer(): string =
24 let availablePlayers = filterIt(supportedPlayers, execProcess("which " & it).len != 0)
25 if len(availablePlayers) == 0:
26 echo "Please install one of the supported media players: ", supportedPlayers
27 raise newException(OSError, "No supported media player found")
28 else:
29 return availablePlayers[0]
30
31proc getYoutubePage(searchQuery: string): string =
32 let queryParam = encodeUrl(searchQuery)
33 var client = newHttpClient()
34 let response = get(client, "https://www.youtube.com/results?hl=en&search_query=" & queryParam)
35 # TODO Get rid of temp file or make one temp file per user
36 writeFile("/tmp/cli-tube-page.html", response.body)
37 return "/tmp/cli-tube-page.html"
38
39proc extractTitlesAndUrls(htmlFile: string): seq[SearchResult] =
40 loadHtml(htmlFile).findAll("a").
41 filter(a => "watch" in a.attrs["href"] and a.attrs.hasKey "title").
42 map(a => (a.attrs["title"], "https://www.youtube.com" & a.attrs["href"]))
43
44proc presentVideoOptions(searchResults: seq[SearchResult]) =
45 for index, (title, url) in searchResults:
46 echo index, ". ", title.bold.fgMagenta, "\n", url.fgCyan, "\n"
47
48presentVideoOptions(
49 extractTitlesAndUrls(
50 getYoutubePage(
51 paramStr(1))))