From 18bb397c7d10bb782f2a3c7f99390974e6479aa3 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sun, 25 Nov 2018 18:13:11 -0600 Subject: [PATCH] Add '/api/v1/popular' --- src/invidious.cr | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/invidious.cr b/src/invidious.cr index e1b337b5b..cd1da476a 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -2606,6 +2606,40 @@ get "/api/v1/trending" do |env| videos end +get "/api/v1/popular" do |env| + videos = JSON.build do |json| + json.array do + popular_videos.each do |video| + json.object do + json.field "title", video.title + json.field "videoId", video.id + json.field "videoThumbnails" do + generate_thumbnails(json, video.id) + end + + json.field "lengthSeconds", video.info["length_seconds"].to_i + json.field "viewCount", video.views + + json.field "author", video.author + json.field "authorId", video.ucid + json.field "authorUrl", "/channel/#{video.ucid}" + json.field "published", video.published.to_unix + json.field "publishedText", "#{recode_date(video.published)} ago" + + description = video.description.gsub("
", "\n") + description = description.gsub("
", "\n") + description = XML.parse_html(description) + json.field "description", description.content + json.field "descriptionHtml", video.description + end + end + end + end + + env.response.content_type = "application/json" + videos +end + get "/api/v1/top" do |env| videos = JSON.build do |json| json.array do