2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-11-18 01:26:13 +00:00
|
|
|
class ReactController < ApplicationController
|
|
|
|
before_action :authenticate_user!, only: :react
|
|
|
|
before_action :set_referrer_policy_header, only: :react
|
|
|
|
before_action :set_initial_state_json, only: :react
|
|
|
|
before_action :set_data_for_meta, only: :react
|
2019-07-02 08:10:25 +01:00
|
|
|
|
2019-11-18 01:26:13 +00:00
|
|
|
def react
|
2019-07-02 08:10:25 +01:00
|
|
|
@body_classes = 'app-body'
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-08-17 06:22:27 +01:00
|
|
|
def set_data_for_meta
|
2019-08-18 05:09:25 +01:00
|
|
|
return if find_route_matches
|
|
|
|
|
2019-08-17 06:22:27 +01:00
|
|
|
if request.path.starts_with?('/tags') && params[:tag].present?
|
2019-08-17 17:16:15 +01:00
|
|
|
@tag = Tag.find_normalized(params[:tag])
|
2019-08-17 06:22:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
def authenticate_user!
|
|
|
|
return if user_signed_in?
|
|
|
|
|
|
|
|
# if no current user, dont allow to navigate to these paths
|
2019-08-18 05:09:25 +01:00
|
|
|
if find_route_matches
|
2019-07-02 08:10:25 +01:00
|
|
|
redirect_to(homepage_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-18 05:09:25 +01:00
|
|
|
def find_route_matches
|
|
|
|
request.path.match(/\A\/(home|groups|lists|notifications|explore|follow_requests|blocks|domain_blocks|mutes)/)
|
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
def set_initial_state_json
|
|
|
|
serializable_resource = ActiveModelSerializers::SerializableResource.new(InitialStatePresenter.new(initial_state_params), serializer: InitialStateSerializer)
|
|
|
|
@initial_state_json = serializable_resource.to_json
|
|
|
|
end
|
|
|
|
|
|
|
|
def initial_state_params
|
|
|
|
if !current_user.nil?
|
|
|
|
{
|
|
|
|
settings: Web::Setting.find_by(user: current_user)&.data || {},
|
|
|
|
push_subscription: current_account.user.web_push_subscription(current_session),
|
|
|
|
current_account: current_account,
|
|
|
|
token: current_session.token,
|
|
|
|
admin: Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, '')),
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
admin: Account.find_local(Setting.site_contact_username.strip.gsub(/\A@/, '')),
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_referrer_policy_header
|
|
|
|
response.headers['Referrer-Policy'] = 'origin'
|
|
|
|
end
|
|
|
|
end
|