2017-08-31 03:38:35 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-04-17 15:23:46 +02:00
|
|
|
class Api::Web::EmbedsController < Api::Web::BaseController
|
2017-08-31 03:38:35 +02:00
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
def create
|
|
|
|
status = StatusFinder.new(params[:url]).status
|
2020-02-07 15:24:22 +01:00
|
|
|
|
|
|
|
return not_found if status.hidden?
|
|
|
|
|
2017-08-31 03:38:35 +02:00
|
|
|
render json: status, serializer: OEmbedSerializer, width: 400
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
2018-05-02 18:58:48 +02:00
|
|
|
oembed = FetchOEmbedService.new.call(params[:url])
|
|
|
|
|
2020-02-07 15:24:22 +01:00
|
|
|
return not_found if oembed.nil?
|
|
|
|
|
|
|
|
begin
|
|
|
|
oembed[:html] = Formatter.instance.sanitize(oembed[:html], Sanitize::Config::MASTODON_OEMBED)
|
|
|
|
rescue ArgumentError
|
|
|
|
return not_found
|
2018-05-02 18:58:48 +02:00
|
|
|
end
|
2020-02-07 15:24:22 +01:00
|
|
|
|
|
|
|
render json: oembed
|
2017-08-31 03:38:35 +02:00
|
|
|
end
|
|
|
|
end
|