Created
June 23, 2020 11:49
-
-
Save kevinhq/d7a811e1d9f5a76c0c35fc60fcc45a19 to your computer and use it in GitHub Desktop.
Two-Factor authentication users controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/controllers/users_controller.rb | |
class UsersController < ApplicationController | |
def activate_2fa | |
qrcode = RQRCode::QRCode.new(current_user.provisioning_uri(nil, issuer: 'your-app-url.com'), :size => 12, :level => :h) | |
@svg = qrcode.as_svg(offset: 0, color: '000', | |
shape_rendering: 'crispEdges', | |
module_size: 4) | |
respond_to :html | |
end | |
def activate_2fa_update | |
if secure_params.key?(:otp_response_code) | |
if @user.authenticate_otp(secure_params[:otp_response_code]) | |
@user.otp_module_enabled! | |
# do something here | |
else | |
# do something here | |
end | |
else | |
#turn off 2FA | |
@user.otp_module_disabled! | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment