2017-03-23 03:26:22 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class StatusesController < ApplicationController
|
2022-10-20 21:35:29 +09:00
|
|
|
include WebAppControllerConcern
|
2018-02-02 18:19:59 +09:00
|
|
|
include SignatureAuthentication
|
2017-05-30 01:22:22 +09:00
|
|
|
include Authorization
|
2019-07-08 19:03:45 +09:00
|
|
|
include AccountOwnedConcern
|
2017-03-23 03:26:22 +09:00
|
|
|
|
2022-09-22 05:45:57 +09:00
|
|
|
before_action :require_account_signature!, only: [:show, :activity], if: -> { request.format == :json && authorized_fetch_mode? }
|
2017-03-23 03:26:22 +09:00
|
|
|
before_action :set_status
|
2018-07-29 02:25:33 +09:00
|
|
|
before_action :set_instance_presenter
|
2017-03-23 03:26:22 +09:00
|
|
|
before_action :set_link_headers
|
2019-07-12 03:11:09 +09:00
|
|
|
before_action :redirect_to_original, only: :show
|
2018-01-04 09:21:38 +09:00
|
|
|
before_action :set_cache_headers
|
2022-10-06 09:26:34 +09:00
|
|
|
before_action :set_body_classes, only: :embed
|
2017-03-23 03:26:22 +09:00
|
|
|
|
2019-08-12 05:59:40 +09:00
|
|
|
skip_around_action :set_locale, if: -> { request.format == :json }
|
2020-06-20 02:18:47 +09:00
|
|
|
skip_before_action :require_functional!, only: [:show, :embed], unless: :whitelist_mode?
|
2019-08-12 05:59:40 +09:00
|
|
|
|
2022-12-16 01:11:58 +09:00
|
|
|
content_security_policy only: :embed do |policy|
|
|
|
|
policy.frame_ancestors(false)
|
2018-10-12 03:35:46 +09:00
|
|
|
end
|
|
|
|
|
2017-03-23 03:26:22 +09:00
|
|
|
def show
|
2017-07-15 10:01:39 +09:00
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
2019-06-05 21:02:59 +09:00
|
|
|
expires_in 10.seconds, public: true if current_account.nil?
|
2017-07-15 10:01:39 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
format.json do
|
2019-07-12 03:11:09 +09:00
|
|
|
expires_in 3.minutes, public: @status.distributable? && public_fetch_mode?
|
2019-07-22 05:32:16 +09:00
|
|
|
render_with_cache json: @status, content_type: 'application/activity+json', serializer: ActivityPub::NoteSerializer, adapter: ActivityPub::Adapter
|
2017-07-15 10:01:39 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-03-23 03:26:22 +09:00
|
|
|
|
2017-07-15 10:01:39 +09:00
|
|
|
def activity
|
2019-07-12 03:11:09 +09:00
|
|
|
expires_in 3.minutes, public: @status.distributable? && public_fetch_mode?
|
2020-06-03 02:24:53 +09:00
|
|
|
render_with_cache json: ActivityPub::ActivityPresenter.from_status(@status), content_type: 'application/activity+json', serializer: ActivityPub::ActivitySerializer, adapter: ActivityPub::Adapter
|
2017-03-23 03:26:22 +09:00
|
|
|
end
|
|
|
|
|
2017-08-30 17:23:43 +09:00
|
|
|
def embed
|
2020-05-03 23:30:36 +09:00
|
|
|
return not_found if @status.hidden? || @status.reblog?
|
2018-07-01 11:12:34 +09:00
|
|
|
|
|
|
|
expires_in 180, public: true
|
2017-08-30 17:23:43 +09:00
|
|
|
response.headers['X-Frame-Options'] = 'ALLOWALL'
|
2018-07-01 11:12:34 +09:00
|
|
|
|
2019-07-07 23:16:51 +09:00
|
|
|
render layout: 'embedded'
|
2017-08-30 17:23:43 +09:00
|
|
|
end
|
|
|
|
|
2017-03-23 03:26:22 +09:00
|
|
|
private
|
|
|
|
|
2019-07-08 19:03:45 +09:00
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'with-modals'
|
2018-04-24 02:27:35 +09:00
|
|
|
end
|
|
|
|
|
2017-03-23 03:26:22 +09:00
|
|
|
def set_link_headers
|
2019-07-07 23:16:51 +09:00
|
|
|
response.headers['Link'] = LinkHeader.new([[ActivityPub::TagManager.instance.uri_for(@status), [%w(rel alternate), %w(type application/activity+json)]]])
|
2017-03-23 03:26:22 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_status
|
2019-07-07 23:16:51 +09:00
|
|
|
@status = @account.statuses.find(params[:id])
|
2017-05-30 01:22:22 +09:00
|
|
|
authorize @status, :show?
|
|
|
|
rescue Mastodon::NotPermittedError
|
2020-01-24 08:20:51 +09:00
|
|
|
not_found
|
2017-03-23 03:26:22 +09:00
|
|
|
end
|
|
|
|
|
2018-07-29 02:25:33 +09:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
|
|
|
|
2017-08-24 23:21:42 +09:00
|
|
|
def redirect_to_original
|
2023-03-26 08:38:32 +09:00
|
|
|
redirect_to(ActivityPub::TagManager.instance.url_for(@status.reblog), allow_other_host: true) if @status.reblog?
|
2017-08-24 23:21:42 +09:00
|
|
|
end
|
2017-03-23 03:26:22 +09:00
|
|
|
end
|