2016-12-01 00:01:03 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 21:09:25 +03:00
|
|
|
class Api::OEmbedController < Api::BaseController
|
2016-12-01 00:01:03 +02:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
2017-08-30 11:23:43 +03:00
|
|
|
@status = status_finder.status
|
|
|
|
render json: @status, serializer: OEmbedSerializer, width: maxwidth_or_default, height: maxheight_or_default
|
2016-12-01 00:01:03 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-30 11:23:43 +03:00
|
|
|
def status_finder
|
|
|
|
StatusFinder.new(params[:url])
|
2017-04-27 15:42:22 +03:00
|
|
|
end
|
|
|
|
|
2017-05-30 23:30:06 +03:00
|
|
|
def maxwidth_or_default
|
|
|
|
(params[:maxwidth].presence || 400).to_i
|
2017-04-27 15:42:22 +03:00
|
|
|
end
|
|
|
|
|
2017-05-30 23:30:06 +03:00
|
|
|
def maxheight_or_default
|
|
|
|
params[:maxheight].present? ? params[:maxheight].to_i : nil
|
2016-12-01 00:01:03 +02:00
|
|
|
end
|
|
|
|
end
|