Class: Devise::TwoFactorAuthenticationController

Inherits:
DeviseController
  • Object
show all
Defined in:
app/controllers/devise/two_factor_authentication_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



5
6
# File 'app/controllers/devise/two_factor_authentication_controller.rb', line 5

def show
end

#updateObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'app/controllers/devise/two_factor_authentication_controller.rb', line 8

def update
  render :show and return if params[:code].nil?
  md5 = Digest::MD5.hexdigest(params[:code])
  if md5.eql?(resource.second_factor_pass_code)
    warden.session(resource_name)[:need_two_factor_authentication] = false
     resource_name, resource, :bypass => true
    redirect_to stored_location_for(resource_name) || :root
    resource.update_attribute(:second_factor_attempts_count, 0)
  else
    resource.second_factor_attempts_count += 1
    resource.save
    set_flash_message :notice, :attempt_failed
    if resource.
      sign_out(resource)
      render :template => 'devise/two_factor_authentication/max_login_attempts_reached' and return
    else
      render :show
    end
  end
end