You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.8 KiB

  1. # frozen_string_literal: true
  2. class StreamEntriesController < ApplicationController
  3. include Authorization
  4. include SignatureVerification
  5. layout 'public'
  6. before_action :set_account
  7. before_action :set_stream_entry
  8. before_action :set_link_headers
  9. before_action :check_account_suspension
  10. def show
  11. respond_to do |format|
  12. format.html do
  13. @ancestors = @stream_entry.activity.reply? ? cache_collection(@stream_entry.activity.ancestors(current_account), Status) : []
  14. @descendants = cache_collection(@stream_entry.activity.descendants(current_account), Status)
  15. end
  16. format.atom do
  17. render xml: OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.entry(@stream_entry, true))
  18. end
  19. end
  20. end
  21. def embed
  22. redirect_to embed_short_account_status_url(@account, @stream_entry.activity), status: 301
  23. end
  24. private
  25. def set_account
  26. @account = Account.find_local!(params[:account_username])
  27. end
  28. def set_link_headers
  29. response.headers['Link'] = LinkHeader.new(
  30. [
  31. [account_stream_entry_url(@account, @stream_entry, format: 'atom'), [%w(rel alternate), %w(type application/atom+xml)]],
  32. [ActivityPub::TagManager.instance.uri_for(@stream_entry.activity), [%w(rel alternate), %w(type application/activity+json)]],
  33. ]
  34. )
  35. end
  36. def set_stream_entry
  37. @stream_entry = @account.stream_entries.where(activity_type: 'Status').find(params[:id])
  38. @type = @stream_entry.activity_type.downcase
  39. raise ActiveRecord::RecordNotFound if @stream_entry.activity.nil?
  40. authorize @stream_entry.activity, :show? if @stream_entry.hidden?
  41. rescue Mastodon::NotPermittedError
  42. # Reraise in order to get a 404
  43. raise ActiveRecord::RecordNotFound
  44. end
  45. def check_account_suspension
  46. gone if @account.suspended?
  47. end
  48. end