]> njoseph.me Git - nimcoon.git/blame_incremental - cli_tube.nim
Change everything to camelCase
[nimcoon.git] / cli_tube.nim
... / ...
CommitLineData
1import htmlparser
2import httpClient
3import os
4import osproc
5import strtabs
6import strutils
7import uri
8import xmltree
9import sequtils, sugar
10
11# TODO Pretty colors in terminal
12# import terminal
13
14# Supported video players in order of preference
15# TODO Should go into a config file
16let supportedPlayers = @["mpv", "mplayer", "vlc"]
17
18proc findSupportedPlayer(): string =
19 for player in supported_players:
20 let playerBin = execProcess("which " & player)
21 if playerBin.len != 0:
22 return strip(playerBin)
23
24proc getYoutubePage(searchQuery: string): string =
25 let queryParam = encodeUrl(searchQuery)
26 var client = newHttpClient()
27 let response = get(client, "https://www.youtube.com/results?hl=en&search_query=" & queryParam)
28 # TODO Get rid of temp file or make one temp file per user
29 writeFile("/tmp/cli-tube-page.html", response.body)
30 return "/tmp/cli-tube-page.html"
31
32proc extractTitlesAndUrls(htmlFile: string): seq[tuple[title: string, url: string]] =
33 loadHtml(htmlFile).findAll("a").
34 filter(a => "watch" in a.attrs["href"] and a.attrs.hasKey "title").
35 map(a => (a.attrs["title"], "https://www.youtube.com" & a.attrs["href"]))
36
37proc presentVideoOptions(titlesAndUrls: seq[tuple[title: string, url: string]]) =
38 for number, (title, url) in titlesAndUrls:
39 echo number, ". ", title, "\n", url, "\n"
40
41presentVideoOptions(
42 extractTitlesAndUrls(
43 getYoutubePage(
44 paramStr(1))))