You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
866 B
36 lines
866 B
# frozen_string_literal: true |
|
|
|
class Api::Web::EmbedsController < Api::Web::BaseController |
|
include Authorization |
|
|
|
before_action :set_status |
|
|
|
def show |
|
return not_found if @status.hidden? |
|
|
|
if @status.local? |
|
render json: @status, serializer: OEmbedSerializer |
|
else |
|
return not_found unless user_signed_in? |
|
|
|
url = ActivityPub::TagManager.instance.url_for(@status) |
|
oembed = FetchOEmbedService.new.call(url) |
|
return not_found if oembed.nil? |
|
|
|
begin |
|
oembed[:html] = Sanitize.fragment(oembed[:html], Sanitize::Config::MASTODON_OEMBED) |
|
rescue ArgumentError |
|
return not_found |
|
end |
|
|
|
render json: oembed |
|
end |
|
end |
|
|
|
def set_status |
|
@status = Status.find(params[:id]) |
|
authorize @status, :show? |
|
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError |
|
not_found |
|
end |
|
end
|
|
|