4a23c62ec8
• Updated: - Gab Trends api, redux, panel - GabTrendsController takes in query string for feed type
32 lines
718 B
Ruby
32 lines
718 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::GabTrendsController < Api::BaseController
|
|
respond_to :json
|
|
|
|
skip_before_action :set_cache_headers
|
|
|
|
def index
|
|
type = params[:type]
|
|
if type == 'feed'
|
|
body = Redis.current.get("gabtrends")
|
|
|
|
if body.nil?
|
|
uri = URI("https://trends.gab.com/trend-feed/json")
|
|
uri.query = URI.encode_www_form({})
|
|
|
|
res = Net::HTTP.get_response(uri)
|
|
if res.is_a?(Net::HTTPSuccess)
|
|
body = res.body
|
|
Redis.current.set("gabtrends", res.body)
|
|
Redis.current.expire("gabtrends", 1.hour.seconds)
|
|
end
|
|
end
|
|
|
|
render json: body
|
|
else
|
|
raise GabSocial::NotPermittedError
|
|
end
|
|
end
|
|
|
|
end
|