Updated news, trends image url path in redux
• Updated: - news, trends image url path in redux
This commit is contained in:
14
app/controllers/api/v2/image_proxy_controller.rb
Normal file
14
app/controllers/api/v2/image_proxy_controller.rb
Normal file
@@ -0,0 +1,14 @@
|
||||
require 'base64'
|
||||
require 'net/http'
|
||||
|
||||
class Api::V2::ImageProxyController < EmptyController
|
||||
def get
|
||||
if params[:trends_url].nil?
|
||||
raise GabSocial::NotPermittedError
|
||||
else
|
||||
url = URI.parse(params[:trends_url])
|
||||
image = Net::HTTP.get_response(url)
|
||||
send_data image.body, type: image.content_type, disposition: 'inline'
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user