Add '/api/v1/popular'

このコミットが含まれているのは:
Omar Roth 2018-11-25 18:13:11 -06:00
コミット 18bb397c7d
1個のファイルの変更34行の追加0行の削除

ファイルの表示

@ -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("<br>", "\n")
description = description.gsub("<br/>", "\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