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.

40 lines
980 B

  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. def show
  8. @type = @stream_entry.activity_type.downcase
  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.ancestors
  14. @descendants = @stream_entry.activity.descendants
  15. end
  16. end
  17. format.atom
  18. end
  19. end
  20. private
  21. def set_account
  22. @account = Account.find_local!(params[:account_username])
  23. end
  24. def set_link_headers
  25. response.headers['Link'] = LinkHeader.new([[account_stream_entry_url(@account, @stream_entry, format: 'atom'), [%w(rel alternate), %w(type application/atom+xml)]]])
  26. end
  27. def set_stream_entry
  28. @stream_entry = @account.stream_entries.find(params[:id])
  29. end
  30. end