|
|
|
|
@ -11,6 +11,7 @@ class StatusesController < ApplicationController
|
|
|
|
|
before_action :require_account_signature!, only: [:show, :activity], if: -> { request.format == :json && authorized_fetch_mode? }
|
|
|
|
|
before_action :set_status
|
|
|
|
|
before_action :redirect_to_original, only: :show
|
|
|
|
|
before_action :verify_embed_allowed, only: :embed
|
|
|
|
|
|
|
|
|
|
after_action :set_link_headers
|
|
|
|
|
|
|
|
|
|
@ -40,8 +41,6 @@ class StatusesController < ApplicationController
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def embed
|
|
|
|
|
return not_found if @status.hidden? || @status.reblog?
|
|
|
|
|
|
|
|
|
|
expires_in 180, public: true
|
|
|
|
|
response.headers.delete('X-Frame-Options')
|
|
|
|
|
|
|
|
|
|
@ -50,6 +49,10 @@ class StatusesController < ApplicationController
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def verify_embed_allowed
|
|
|
|
|
not_found if @status.hidden? || @status.reblog?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def set_link_headers
|
|
|
|
|
response.headers['Link'] = LinkHeader.new(
|
|
|
|
|
[[ActivityPub::TagManager.instance.uri_for(@status), [%w(rel alternate), %w(type application/activity+json)]]]
|
|
|
|
|
|