This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-11-30 23:01:03 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::OEmbedController < Api::BaseController
|
2016-11-30 23:01:03 +01:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
2017-08-30 10:23:43 +02:00
|
|
|
@status = status_finder.status
|
|
|
|
render json: @status, serializer: OEmbedSerializer, width: maxwidth_or_default, height: maxheight_or_default
|
2016-11-30 23:01:03 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-30 10:23:43 +02:00
|
|
|
def status_finder
|
|
|
|
StatusFinder.new(params[:url])
|
2017-04-27 14:42:22 +02:00
|
|
|
end
|
|
|
|
|
2017-05-30 22:30:06 +02:00
|
|
|
def maxwidth_or_default
|
|
|
|
(params[:maxwidth].presence || 400).to_i
|
2017-04-27 14:42:22 +02:00
|
|
|
end
|
|
|
|
|
2017-05-30 22:30:06 +02:00
|
|
|
def maxheight_or_default
|
|
|
|
params[:maxheight].present? ? params[:maxheight].to_i : nil
|
2016-11-30 23:01:03 +01:00
|
|
|
end
|
|
|
|
end
|