forked from cybrespace/mastodon
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			600 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			600 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class Api::Web::EmbedsController < Api::Web::BaseController
 | 
						|
  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
 | 
						|
    oembed = FetchOEmbedService.new.call(params[:url])
 | 
						|
    oembed[:html] = Formatter.instance.sanitize(oembed[:html], Sanitize::Config::MASTODON_OEMBED) if oembed[:html].present?
 | 
						|
 | 
						|
    if oembed
 | 
						|
      render json: oembed
 | 
						|
    else
 | 
						|
      render json: {}, status: :not_found
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |