2022-10-06 00:26:34 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module WebAppControllerConcern
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2023-04-23 20:27:24 +00:00
|
|
|
vary_by 'Accept, Accept-Language, Cookie'
|
2023-10-05 07:50:08 +00:00
|
|
|
|
|
|
|
before_action :redirect_unauthenticated_to_permalinks!
|
2022-10-20 12:35:29 +00:00
|
|
|
before_action :set_app_body_class
|
2024-09-12 13:24:19 +00:00
|
|
|
|
|
|
|
content_security_policy do |p|
|
|
|
|
policy = ContentSecurityPolicy.new
|
|
|
|
|
|
|
|
if policy.sso_host.present?
|
2024-10-04 08:50:36 +00:00
|
|
|
p.form_action policy.sso_host, -> { "https://#{request.host}/auth/auth/" }
|
2024-09-12 13:24:19 +00:00
|
|
|
else
|
|
|
|
p.form_action :none
|
|
|
|
end
|
|
|
|
end
|
2022-10-06 00:26:34 +00:00
|
|
|
end
|
|
|
|
|
2023-04-25 14:51:38 +00:00
|
|
|
def skip_csrf_meta_tags?
|
2023-09-12 11:04:51 +00:00
|
|
|
!(ENV['ONE_CLICK_SSO_LOGIN'] == 'true' && ENV['OMNIAUTH_ONLY'] == 'true' && Devise.omniauth_providers.length == 1) && current_user.nil?
|
2022-10-06 00:26:34 +00:00
|
|
|
end
|
|
|
|
|
2022-10-20 12:35:29 +00:00
|
|
|
def set_app_body_class
|
2022-10-06 00:26:34 +00:00
|
|
|
@body_classes = 'app-body'
|
|
|
|
end
|
|
|
|
|
2022-10-20 12:35:29 +00:00
|
|
|
def redirect_unauthenticated_to_permalinks!
|
2023-01-05 13:16:25 +00:00
|
|
|
return if user_signed_in? # NOTE: Different from upstream because we allow moved users to log in
|
2022-10-20 12:35:29 +00:00
|
|
|
|
2024-09-25 13:35:37 +00:00
|
|
|
permalink_redirector = PermalinkRedirector.new(request.original_fullpath)
|
2024-01-24 10:49:19 +00:00
|
|
|
return if permalink_redirector.redirect_path.blank?
|
2022-10-20 12:35:29 +00:00
|
|
|
|
2023-10-05 07:50:08 +00:00
|
|
|
expires_in(15.seconds, public: true, stale_while_revalidate: 30.seconds, stale_if_error: 1.day) unless user_signed_in?
|
2024-01-24 10:49:19 +00:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
redirect_to(permalink_redirector.redirect_confirmation_path, allow_other_host: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
format.json do
|
|
|
|
redirect_to(permalink_redirector.redirect_uri, allow_other_host: true)
|
|
|
|
end
|
|
|
|
end
|
2022-10-20 12:35:29 +00:00
|
|
|
end
|
2022-10-06 00:26:34 +00:00
|
|
|
end
|