2016-11-30 22:01:03 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 19:09:25 +01:00
|
|
|
class Api::OEmbedController < Api::BaseController
|
2020-01-14 07:52:32 +00:00
|
|
|
skip_before_action :require_authenticated_user!
|
|
|
|
|
2020-01-23 23:20:51 +00:00
|
|
|
before_action :set_status
|
|
|
|
before_action :require_public_status!
|
|
|
|
|
2016-11-30 22:01:03 +00:00
|
|
|
def show
|
2024-09-20 13:39:48 +01:00
|
|
|
render json: @status, serializer: OEmbedSerializer, width: params[:maxwidth], height: params[:maxheight]
|
2016-11-30 22:01:03 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-01-23 23:20:51 +00:00
|
|
|
def set_status
|
|
|
|
@status = status_finder.status
|
|
|
|
end
|
|
|
|
|
|
|
|
def require_public_status!
|
|
|
|
not_found if @status.hidden?
|
|
|
|
end
|
|
|
|
|
2017-08-30 09:23:43 +01:00
|
|
|
def status_finder
|
|
|
|
StatusFinder.new(params[:url])
|
2017-04-27 13:42:22 +01:00
|
|
|
end
|
2016-11-30 22:01:03 +00:00
|
|
|
end
|