2017-04-22 04:23:17 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Settings
|
2017-11-21 07:13:37 +01:00
|
|
|
class TwoFactorAuthenticationsController < BaseController
|
2017-04-22 04:23:17 +02:00
|
|
|
before_action :verify_otp_required, only: [:create]
|
|
|
|
|
2017-06-25 23:51:46 +02:00
|
|
|
def show
|
|
|
|
@confirmation = Form::TwoFactorConfirmation.new
|
|
|
|
end
|
2017-04-22 04:23:17 +02:00
|
|
|
|
|
|
|
def create
|
|
|
|
current_user.otp_secret = User.generate_otp_secret(32)
|
|
|
|
current_user.save!
|
|
|
|
redirect_to new_settings_two_factor_authentication_confirmation_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2017-07-26 23:36:33 +02:00
|
|
|
if acceptable_code?
|
2017-06-25 23:51:46 +02:00
|
|
|
current_user.otp_required_for_login = false
|
|
|
|
current_user.save!
|
|
|
|
redirect_to settings_two_factor_authentication_path
|
|
|
|
else
|
|
|
|
flash.now[:alert] = I18n.t('two_factor_authentication.wrong_code')
|
|
|
|
@confirmation = Form::TwoFactorConfirmation.new
|
|
|
|
render :show
|
|
|
|
end
|
2017-04-22 04:23:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-06-25 23:51:46 +02:00
|
|
|
def confirmation_params
|
|
|
|
params.require(:form_two_factor_confirmation).permit(:code)
|
|
|
|
end
|
|
|
|
|
2017-04-22 04:23:17 +02:00
|
|
|
def verify_otp_required
|
|
|
|
redirect_to settings_two_factor_authentication_path if current_user.otp_required_for_login?
|
|
|
|
end
|
2017-07-26 23:36:33 +02:00
|
|
|
|
|
|
|
def acceptable_code?
|
|
|
|
current_user.validate_and_consume_otp!(confirmation_params[:code]) ||
|
|
|
|
current_user.invalidate_otp_backup_code!(confirmation_params[:code])
|
|
|
|
end
|
2017-04-22 04:23:17 +02:00
|
|
|
end
|
|
|
|
end
|