This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-30 14:01:03 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-22 14:08:51 -08:00
|
|
|
class Api::OEmbedController < ApiController
|
2016-11-30 14:01:03 -08:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
|
|
|
@stream_entry = stream_entry_from_url(params[:url])
|
2016-12-18 10:47:11 -08:00
|
|
|
@width = params[:maxwidth].present? ? params[:maxwidth].to_i : 400
|
|
|
|
@height = params[:maxheight].present? ? params[:maxheight].to_i : 600
|
2016-11-30 14:01:03 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def stream_entry_from_url(url)
|
|
|
|
params = Rails.application.routes.recognize_path(url)
|
|
|
|
|
2017-04-15 12:17:59 -07:00
|
|
|
raise ActiveRecord::RecordNotFound unless params[:controller] == 'stream_entries' && params[:action] == 'show'
|
2016-11-30 14:01:03 -08:00
|
|
|
|
|
|
|
StreamEntry.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|