mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
87 lines
2.4 KiB
Ruby
87 lines
2.4 KiB
Ruby
require 'gitlab/oauth/user'
|
|
|
|
# LDAP extension for User model
|
|
#
|
|
# * Find or create user from omniauth.auth data
|
|
# * Links LDAP account with existing user
|
|
# * Auth LDAP user with login and password
|
|
#
|
|
module Gitlab
|
|
module LDAP
|
|
class User < Gitlab::OAuth::User
|
|
class << self
|
|
def find_or_create(auth_hash)
|
|
self.auth_hash = auth_hash
|
|
find(auth_hash) || find_and_connect_by_email(auth_hash) || create(auth_hash)
|
|
end
|
|
|
|
def find_and_connect_by_email(auth_hash)
|
|
self.auth_hash = auth_hash
|
|
user = model.find_by(email: self.auth_hash.email)
|
|
|
|
if user
|
|
user.update_attributes(extern_uid: auth_hash.uid, provider: auth_hash.provider)
|
|
Gitlab::AppLogger.info("(LDAP) Updating legacy LDAP user #{self.auth_hash.email} with extern_uid => #{auth_hash.uid}")
|
|
return user
|
|
end
|
|
end
|
|
|
|
def authenticate(login, password)
|
|
# Check user against LDAP backend if user is not authenticated
|
|
# Only check with valid login and password to prevent anonymous bind results
|
|
return nil unless ldap_conf.enabled && login.present? && password.present?
|
|
|
|
ldap_user = adapter.bind_as(
|
|
filter: user_filter(login),
|
|
size: 1,
|
|
password: password
|
|
)
|
|
|
|
find_by_uid(ldap_user.dn) if ldap_user
|
|
end
|
|
|
|
def adapter
|
|
@adapter ||= OmniAuth::LDAP::Adaptor.new(ldap_conf)
|
|
end
|
|
|
|
protected
|
|
|
|
def find_by_uid_and_provider
|
|
find_by_uid(auth_hash.uid)
|
|
end
|
|
|
|
def find_by_uid(uid)
|
|
# LDAP distinguished name is case-insensitive
|
|
model.where("provider = ? and lower(extern_uid) = ?", provider, uid.downcase).last
|
|
end
|
|
|
|
def provider
|
|
'ldap'
|
|
end
|
|
|
|
def raise_error(message)
|
|
raise OmniAuth::Error, "(LDAP) " + message
|
|
end
|
|
|
|
def ldap_conf
|
|
Gitlab.config.ldap
|
|
end
|
|
|
|
def user_filter(login)
|
|
filter = Net::LDAP::Filter.eq(adapter.uid, login)
|
|
# Apply LDAP user filter if present
|
|
if ldap_conf['user_filter'].present?
|
|
user_filter = Net::LDAP::Filter.construct(ldap_conf['user_filter'])
|
|
filter = Net::LDAP::Filter.join(filter, user_filter)
|
|
end
|
|
filter
|
|
end
|
|
end
|
|
|
|
def needs_blocking?
|
|
false
|
|
end
|
|
end
|
|
end
|
|
end
|