demarches-normaliennes/app/controllers/manager/application_controller.rb

59 lines
1.4 KiB
Ruby
Raw Normal View History

2017-12-28 19:44:11 +01:00
module Manager
class ApplicationController < Administrate::ApplicationController
before_action :authenticate_super_admin!
2017-12-28 19:44:11 +01:00
before_action :default_params
def default_params
2023-01-10 00:11:54 +01:00
request.query_parameters[resource_name] ||= {
order: "id",
direction: "desc"
}
2017-12-28 19:44:11 +01:00
end
2018-01-17 12:13:26 +01:00
protected
def authenticate_super_admin!
if super_admin_signed_in? && current_super_admin.otp_required_for_login?
2018-01-17 12:13:26 +01:00
super
elsif super_admin_signed_in?
2021-09-07 19:04:54 +02:00
SUPER_ADMIN_OTP_ENABLED ? (redirect_to edit_super_admin_otp_path) : super
2018-01-17 12:13:26 +01:00
else
redirect_to new_super_admin_session_path
2018-01-17 12:13:26 +01:00
end
end
private
def sorting_attribute
attribute = super
# do not sort by non-indexed created_at. This require a full table scan, locking every other transactions.
return :id if attribute.to_sym == :created_at
attribute
end
# private method called by rails fwk
# see https://github.com/roidrage/lograge
def append_info_to_payload(payload)
super
payload.merge!({
user_agent: request.user_agent,
user_id: current_user&.id,
user_email: current_user&.email
}.compact)
if browser.known?
payload.merge!({
browser: browser.name,
browser_version: browser.version.to_s,
platform: browser.platform.name
})
end
payload
end
2017-12-28 19:44:11 +01:00
end
end