about summary refs log tree commit diff
path: root/app/controllers/api/web
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-08-31 03:38:35 +0200
committerGitHub <noreply@github.com>2017-08-31 03:38:35 +0200
commitd1a78eba1558004f69ab8933b08ffe0093671546 (patch)
treec25b885ee78dfeb5c4cc8a06bded252ff5d7915e /app/controllers/api/web
parent2db9ccaf3eeada3106e88e08163495ae8e741574 (diff)
Embed modal (#4748)
* Embed modal

* Proxy OEmbed requests from web UI
Diffstat (limited to 'app/controllers/api/web')
-rw-r--r--app/controllers/api/web/embeds_controller.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/controllers/api/web/embeds_controller.rb b/app/controllers/api/web/embeds_controller.rb
new file mode 100644
index 000000000..2ed516161
--- /dev/null
+++ b/app/controllers/api/web/embeds_controller.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class Api::Web::EmbedsController < Api::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 = OEmbed::Providers.get(params[:url])
+    render json: Oj.dump(oembed.fields)
+  rescue OEmbed::NotFound
+    render json: {}, status: :not_found
+  end
+end