gab-social/app/controllers/api/v1/gab_trends_controller.rb

26 lines
586 B
Ruby
Raw Normal View History

2020-04-02 17:57:04 +01:00
# frozen_string_literal: true
class Api::V1::GabTrendsController < Api::BaseController
respond_to :json
skip_before_action :set_cache_headers
def index
2020-04-04 00:18:26 +01:00
body = Redis.current.get("gabtrends")
if body.nil?
uri = URI("https://trends.gab.com/trend-feed/json")
uri.query = URI.encode_www_form({})
2020-04-02 17:57:04 +01:00
2020-04-04 00:18:26 +01:00
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
2020-04-02 17:57:04 +01:00
end
end