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