使用LDAP和本地数据库进行Rails身份验证

时间:2012-07-11 01:30:49

标签: ruby-on-rails active-directory ldap

我正在尝试重写使用PHP / MySQL创建的旧应用程序。 使用的身份验证系统在数据库中有一个用户表,用于存储用户名,电子邮件等...但不是密码。

每当用户登录时,首先检查数据库以查看用户是否存在,否则返回登录错误。如果用户存在于本地数据库中,则它尝试使用用户输入的用户名/密码组合绑定到活动目录,并在成功时创建会话。

使用Rails实现此目的的最佳方法是什么?

2 个答案:

答案 0 :(得分:3)

Ruby的Net :: LDAP库非常好。

以下是我多年来一直使用的简化版本:

# sessions_controller.rb
def create
  user = User.find_by_login(params[:login])
  if user && Ldap.authenticate(params[:login], params[:password])
    self.current_user = user
    Rails.logger.info "Logged in #{user.name}"
    flash[:notice] = "Successfully Logged In!"
    redirect_back_or_default root_url
  else
    flash[:alert] = "Invalid User credentials"
    render :new
  end
end

# lib/ldap.rb
# Ldap.authenticate('user','password')
# Returns true if validated
# Returns false if invalidated
# Returns nil if LDAP unavailable
require 'net/ldap'
class Ldap
  def self.config
    # this is actually loaded from a yaml config file
    {
      :domain => 'YOURDOMAIN',
      :host   => '10.10.10.100'
    }
  end

  def self.authenticate(login, password)
    conn = Net::LDAP.new(
      :host       => config[:host],
      :port       => 636,
      :base       => "dc=#{config[:domain]}, dc=local",
      :encryption => :simple_tls,
      :auth       => {
        :username => "#{login}@#{config[:domain]}.local",
        :password => password,
        :method   => :simple
      }
    )
    Timeout::timeout(15) do
      return conn.bind ? true : false
    end
  rescue Net::LDAP::LdapError => e
    notify_ldap_admin(config[:host],'Error',e)
    nil
  rescue Timeout::Error => e
    notify_ldap_admin(config[:host],'Timeout',e)
    nil
  end

  def self.notify_ldap_admin(host,error_type,error)
    msg = "LDAP #{error_type} on #{host}"
    RAILS_DEFAULT_LOGGER.debug(msg)
    DeveloperMailer.deliver_ldap_failure_msg(msg,error)
  end
end

答案 1 :(得分:0)

相关问题