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.

55 lines
1.7 KiB

  1. # frozen_string_literal: true
  2. class StreamEntriesController < ApplicationController
  3. layout 'public'
  4. before_action :set_account
  5. before_action :set_stream_entry
  6. before_action :set_link_headers
  7. before_action :check_account_suspension
  8. def show
  9. respond_to do |format|
  10. format.html do
  11. return gone if @stream_entry.activity.nil?
  12. if @stream_entry.activity_type == 'Status'
  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. end
  17. format.atom do
  18. render xml: AtomSerializer.render(AtomSerializer.new.entry(@stream_entry, true))
  19. end
  20. end
  21. end
  22. def embed
  23. response.headers['X-Frame-Options'] = 'ALLOWALL'
  24. return gone if @stream_entry.activity.nil?
  25. render layout: 'embedded'
  26. end
  27. private
  28. def set_account
  29. @account = Account.find_local!(params[:account_username])
  30. end
  31. def set_link_headers
  32. response.headers['Link'] = LinkHeader.new([[account_stream_entry_url(@account, @stream_entry, format: 'atom'), [%w(rel alternate), %w(type application/atom+xml)]]])
  33. end
  34. def set_stream_entry
  35. @stream_entry = @account.stream_entries.where(activity_type: 'Status').find(params[:id])
  36. @type = @stream_entry.activity_type.downcase
  37. raise ActiveRecord::RecordNotFound if @stream_entry.activity.nil? || (@stream_entry.hidden? && (@stream_entry.activity_type != 'Status' || (@stream_entry.activity_type == 'Status' && !@stream_entry.activity.permitted?(current_account))))
  38. end
  39. def check_account_suspension
  40. gone if @account.suspended?
  41. end
  42. end