This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
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
|
|
|
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 18:58:48 +02:00
|
|
|
oembed = FetchOEmbedService.new.call(params[:url])
|
|
|
|
|
|
|
|
if oembed
|
|
|
|
render json: oembed
|
|
|
|
else
|
|
|
|
render json: {}, status: :not_found
|
|
|
|
end
|
2017-08-31 03:38:35 +02:00
|
|
|
end
|
|
|
|
end
|