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.
2017-08-30 18:38:35 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-04-17 06:23:46 -07:00
|
|
|
class Api::Web::EmbedsController < Api::Web::BaseController
|
2017-08-30 18:38:35 -07:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
def create
|
|
|
|
status = StatusFinder.new(params[:url]).status
|
|
|
|
render json: status, serializer: OEmbedSerializer, width: 400
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
2018-05-02 09:58:48 -07:00
|
|
|
oembed = FetchOEmbedService.new.call(params[:url])
|
2018-12-22 17:16:35 -08:00
|
|
|
oembed[:html] = Formatter.instance.sanitize(oembed[:html], Sanitize::Config::MASTODON_OEMBED) if oembed[:html].present?
|
2018-05-02 09:58:48 -07:00
|
|
|
|
|
|
|
if oembed
|
|
|
|
render json: oembed
|
|
|
|
else
|
|
|
|
render json: {}, status: :not_found
|
|
|
|
end
|
2017-08-30 18:38:35 -07:00
|
|
|
end
|
|
|
|
end
|