Sha256: c428974cff8646972adeba7a780292a80f9bcc71b54231866f8334dcd55af810

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

# Prevents a locked user from logging in, and unlocks users that expired their lock time.
# Runs as a hook after authentication.
Authenticate.lifecycle.prepend_after_authentication name: 'brute force protection' do |user, session, options|
  include ActionView::Helpers::DateHelper

  unless session.authenticated? || Authenticate.configuration.max_consecutive_bad_logins_allowed.nil?
    user_credentials = User.credentials(session.request.params)
    user ||= User.find_by_credentials(user_credentials)
    if user
      user.register_failed_login!
      user.save!
    end
  end

  # if user is locked, and we allow a lockout period, then unlock the user if they've waited
  # longer than the lockout period.
  if user && !Authenticate.configuration.bad_login_lockout_period.nil? && user.locked?
    user.unlock! if user.lock_expires_at <= Time.now.utc
  end

  # if the user is still locked, let them know how long they are locked for.
  if user && user.locked?
    remaining = time_ago_in_words(user.lock_expires_at)
    # throw(:failure, "Your account is locked, will unlock in #{remaining.to_s}")
    throw(:failure, I18n.t('callbacks.brute_force.failure', time_remaining: remaining.to_s))
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
authenticate-0.2.3 lib/authenticate/callbacks/brute_force.rb
authenticate-0.2.2 lib/authenticate/callbacks/brute_force.rb
authenticate-0.2.1 lib/authenticate/callbacks/brute_force.rb