2016-11-30 22:01:03 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-22 22:08:51 +00:00
|
|
|
class Api::OEmbedController < ApiController
|
2016-11-30 22:01:03 +00:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
|
|
|
@stream_entry = stream_entry_from_url(params[:url])
|
2016-12-18 18:47:11 +00:00
|
|
|
@width = params[:maxwidth].present? ? params[:maxwidth].to_i : 400
|
|
|
|
@height = params[:maxheight].present? ? params[:maxheight].to_i : 600
|
2016-11-30 22:01:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def stream_entry_from_url(url)
|
|
|
|
params = Rails.application.routes.recognize_path(url)
|
|
|
|
|
2017-04-15 19:17:59 +00:00
|
|
|
raise ActiveRecord::RecordNotFound unless params[:controller] == 'stream_entries' && params[:action] == 'show'
|
2016-11-30 22:01:03 +00:00
|
|
|
|
|
|
|
StreamEntry.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|