home_controller.rb 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # frozen_string_literal: true
  2. class HomeController < ApplicationController
  3. before_action :authenticate_user!
  4. before_action :set_referrer_policy_header
  5. before_action :set_initial_state_json
  6. def index
  7. @body_classes = 'app-body'
  8. end
  9. private
  10. def authenticate_user!
  11. return if user_signed_in?
  12. matches = request.path.match(/\A\/web\/(statuses|accounts)\/([\d]+)\z/)
  13. if matches
  14. case matches[1]
  15. when 'statuses'
  16. status = Status.find_by(id: matches[2])
  17. if status&.distributable?
  18. redirect_to(ActivityPub::TagManager.instance.url_for(status))
  19. return
  20. end
  21. when 'accounts'
  22. account = Account.find_by(id: matches[2])
  23. if account
  24. redirect_to(ActivityPub::TagManager.instance.url_for(account))
  25. return
  26. end
  27. end
  28. end
  29. matches = request.path.match(%r{\A/web/timelines/tag/(?<tag>.+)\z})
  30. redirect_to(matches ? tag_path(CGI.unescape(matches[:tag])) : default_redirect_path)
  31. end
  32. def set_initial_state_json
  33. serializable_resource = ActiveModelSerializers::SerializableResource.new(InitialStatePresenter.new(initial_state_params), serializer: InitialStateSerializer)
  34. @initial_state_json = serializable_resource.to_json
  35. end
  36. def initial_state_params
  37. {
  38. settings: Web::Setting.find_by(user: current_user)&.data || {},
  39. push_subscription: current_account.user.web_push_subscription(current_session),
  40. current_account: current_account,
  41. token: current_session.token,
  42. admin: Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, '')),
  43. }
  44. end
  45. def default_redirect_path
  46. if request.path.start_with?('/web') || whitelist_mode?
  47. new_user_session_path
  48. elsif single_user_mode?
  49. short_account_path(Account.local.without_suspended.where('id > 0').first)
  50. else
  51. about_path
  52. end
  53. end
  54. def set_referrer_policy_header
  55. response.headers['Referrer-Policy'] = 'origin'
  56. end
  57. end