mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
cefa526c6d
* Refactor formatter * Move custom emoji pre-rendering logic to view helpers * Move more methods out of Formatter * Fix code style issues * Remove Formatter * Add inline poll options to RSS feeds * Remove unused helper method * Fix code style issues * Various fixes and improvements * Fix test
26 lines
616 B
Ruby
26 lines
616 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::Web::EmbedsController < Api::Web::BaseController
|
|
before_action :require_user!
|
|
|
|
def create
|
|
status = StatusFinder.new(params[:url]).status
|
|
|
|
return not_found if status.hidden?
|
|
|
|
render json: status, serializer: OEmbedSerializer, width: 400
|
|
rescue ActiveRecord::RecordNotFound
|
|
oembed = FetchOEmbedService.new.call(params[: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
|