debian-mirror-gitlab/lib/gitlab/ldap/person.rb

73 lines
1.8 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module Gitlab
module LDAP
class Person
# Active Directory-specific LDAP filter that checks if bit 2 of the
# userAccountControl attribute is set.
# Source: http://ctogonewild.com/2009/09/03/bitmask-searches-in-ldap/
AD_USER_DISABLED = Net::LDAP::Filter.ex("userAccountControl:1.2.840.113556.1.4.803", "2")
2015-04-26 12:48:37 +05:30
attr_accessor :entry, :provider
def self.find_by_uid(uid, adapter)
uid = Net::LDAP::Filter.escape(uid)
adapter.user(adapter.config.uid, uid)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def self.find_by_dn(dn, adapter)
2014-09-02 18:07:02 +05:30
adapter.user('dn', dn)
end
2015-04-26 12:48:37 +05:30
def self.disabled_via_active_directory?(dn, adapter)
2014-09-02 18:07:02 +05:30
adapter.dn_matches_filter?(dn, AD_USER_DISABLED)
end
2015-04-26 12:48:37 +05:30
def initialize(entry, provider)
2014-09-02 18:07:02 +05:30
Rails.logger.debug { "Instantiating #{self.class.name} with LDIF:\n#{entry.to_ldif}" }
@entry = entry
2015-04-26 12:48:37 +05:30
@provider = provider
2014-09-02 18:07:02 +05:30
end
def name
2017-08-17 22:00:37 +05:30
attribute_value(:name).first
2014-09-02 18:07:02 +05:30
end
def uid
entry.send(config.uid).first
end
def username
uid
end
2015-04-26 12:48:37 +05:30
def email
2017-08-17 22:00:37 +05:30
attribute_value(:email)
2015-04-26 12:48:37 +05:30
end
2017-08-17 22:00:37 +05:30
delegate :dn, to: :entry
2014-09-02 18:07:02 +05:30
private
def entry
@entry
end
def config
2015-04-26 12:48:37 +05:30
@config ||= Gitlab::LDAP::Config.new(provider)
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
# Using the LDAP attributes configuration, find and return the first
# attribute with a value. For example, by default, when given 'email',
# this method looks for 'mail', 'email' and 'userPrincipalName' and
# returns the first with a value.
def attribute_value(attribute)
attributes = Array(config.attributes[attribute.to_s])
selected_attr = attributes.find { |attr| entry.respond_to?(attr) }
return nil unless selected_attr
entry.public_send(selected_attr)
end
2014-09-02 18:07:02 +05:30
end
end
end