2022-10-06 00:26:34 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module WebAppControllerConcern
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2023-01-05 12:40:27 +00:00
|
|
|
prepend_before_action :redirect_unauthenticated_to_permalinks!
|
2022-10-28 09:36:25 +00:00
|
|
|
before_action :set_pack
|
2022-10-20 12:35:29 +00:00
|
|
|
before_action :set_app_body_class
|
2023-04-23 20:27:24 +00:00
|
|
|
|
|
|
|
vary_by 'Accept, Accept-Language, Cookie'
|
2022-10-06 00:26:34 +00:00
|
|
|
end
|
|
|
|
|
2023-04-25 14:51:38 +00:00
|
|
|
def skip_csrf_meta_tags?
|
|
|
|
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
|
|
|
|
|
|
|
redirect_path = PermalinkRedirector.new(request.path).redirect_path
|
|
|
|
|
|
|
|
redirect_to(redirect_path) if redirect_path.present?
|
|
|
|
end
|
2022-10-28 09:36:25 +00:00
|
|
|
|
|
|
|
def set_pack
|
|
|
|
use_pack 'home'
|
|
|
|
end
|
2022-10-06 00:26:34 +00:00
|
|
|
end
|