X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/3c20e75c565cd0d0eb73ca8060c22bf557aeab89..d65a1dcf24e9c17cea89385c78b1c39c314f0f97:/nimcoon.nim diff --git a/nimcoon.nim b/nimcoon.nim index f69813d..5c2dc08 100644 --- a/nimcoon.nim +++ b/nimcoon.nim @@ -1,34 +1,9 @@ import - htmlparser, - httpClient, - logging, parseopt, - osproc, - sequtils, - sugar, - strformat, std/[terminal], - strtabs, - strutils, - uri, - xmltree + strutils -import preferences - -type - SearchResult = tuple[title: string, url: string] - CommandLineOptions = tuple[searchQuery: string, musicOnly: bool, feelingLucky: bool, fullScreen: bool] - -let logger = newConsoleLogger() -setLogFilter(lvlInfo) - -proc selectMediaPlayer(): string = - let availablePlayers = filterIt(supportedPlayers, execProcess("which " & it).len != 0) - if len(availablePlayers) == 0: - stderr.writeLine &"Please install one of the supported media players: {supportedPlayers}" - raise newException(OSError, "No supported media player found") - else: - return availablePlayers[0] +import lib proc parseOptions(): CommandLineOptions = var @@ -51,33 +26,6 @@ proc parseOptions(): CommandLineOptions = return (searchQuery, musicOnly, feelingLucky, fullScreen) -proc getYoutubePage(searchQuery: string): string = - let queryParam = encodeUrl(searchQuery) - let client = newHttpClient() - let response = get(client, &"https://www.youtube.com/results?hl=en&search_query={queryParam}") - return $response.body - -proc extractTitlesAndUrls(htmlFile: string): seq[SearchResult] = - parseHtml(htmlFile).findAll("a"). - filter(a => "watch" in a.attrs["href"] and a.attrs.hasKey "title"). - map(a => (a.attrs["title"], "https://www.youtube.com" & a.attrs["href"]))[..(limit-1)] - -proc presentVideoOptions(searchResults: seq[SearchResult]) = - echo "" - for index, (title, url) in searchResults: - styledEcho $index, ". ", styleBright, fgMagenta, title, "\n", resetStyle, fgCyan, url, "\n" - -proc play(command: string) = - logger.log(lvlDebug, &"Executing: ${command}") - discard execProcess(command) - quit(0) - -proc directPlay(searchQuery: string, player: string) = - if "watch?" in searchQuery or "videos/watch" in searchQuery : - play(&"{player} {searchQuery}") - elif searchQuery.startswith("magnet:"): - play(&"peerflix \"{searchQuery}\" --{player}") - proc main() = let player = selectMediaPlayer() @@ -97,18 +45,15 @@ proc main() = styledEcho "\n", fgGreen, "Playing ", styleBright, fgMagenta, searchResults[number].title - var command = @[player, searchResults[number].url] - - if musicOnly: - command.add("--no-video") - - if fullScreen: - if player == "cvlc": - command.add("--fullscreen") - if player == "mpv": - command.add("--fs") + # This is a pure function with no side effects + func buildArgs(): seq[string] = + var args = @[searchResults[number].url] + if musicOnly: args.add("--no-video") + if fullScreen: args.add("--fullscreen") + return args # Play the video using the preferred/available media player - play(command.join(" ")) + play(player, buildArgs()) -main() +when isMainModule: + main()