1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
# Manipulation of LDAP schema data.
#
#--
# $Id: schema.rb,v 1.9 2006/02/08 23:15:17 ianmacd Exp $
#++
# The LDAP module encapsulates the various LDAP-related classes in their own
# namespace.
#
module LDAP
# Retrieve and process information pertaining to LDAP schemas.
#
class Schema < Hash
def initialize(entry)
if( entry )
entry.each do |key, vals|
self[key] = vals
end
end
end
# Return the list of values related to the schema component given in
# +key+. See LDAP::Conn#schema for common values of +key+.
#
def names(key)
self[key].collect{|val| val =~ /NAME\s+'([\w\d_\-]+)'/; $1}
end
# Return the list of attributes in object class +oc+ that are of category
# +at+. +at+ may be the string *MUST*, *MAY* or *SUP*.
#
def attr(oc,at)
self['objectClasses'].each do |s|
if( s =~ /NAME\s+'#{oc}'/ )
case s
when /#{at}\s+\(([\w\d_\-\s\$]+)\)/i then return $1.split("$").collect{|attr| attr.strip}
when /#{at}\s+([\w\d_\-]+)/i then return $1.split("$").collect{|attr| attr.strip}
end
end
end
return nil
end
# Return the list of attributes that an entry with object class +oc+
# _must_ possess.
#
def must(oc)
attr(oc, "MUST")
end
# Return the list of attributes that an entry with object class +oc+
# _may_ possess.
#
def may(oc)
attr(oc, "MAY")
end
# Return the superior object class of object class +oc+.
#
def sup(oc)
attr(oc, "SUP")
end
end
class Conn
# Fetch the schema data for the connection.
#
# If +base+ is given, it gives the base DN for the search. +attrs+, if
# given, is an array of attributes that should be returned from the
# server. The default list is *objectClasses*, *attributeTypes*,
# *matchingRules*, *matchingRuleUse*, *dITStructureRules*,
# *dITContentRules*, *nameForms* and *ldapSyntaxes*.
#
# +sec+ and +usec+ can be used to specify a time-out for the search in
# seconds and microseconds, respectively.
#
def schema(base = nil, attrs = nil, sec = 0, usec = 0)
attrs ||= [
'objectClasses',
'attributeTypes',
'matchingRules',
'matchingRuleUse',
'dITStructureRules',
'dITContentRules',
'nameForms',
'ldapSyntaxes',
]
base ||= root_dse(['subschemaSubentry'], sec, usec)[0]['subschemaSubentry'][0]
base ||= 'cn=schema'
entries = search2(base, LDAP_SCOPE_BASE, '(objectClass=subschema)',
attrs, false, sec, usec)
return Schema.new(entries[0])
end
# Fetch the root DSE (DSA-specific Entry) for the connection. DSA stands
# for Directory System Agent and simply refers to the LDAP server you are
# using.
#
# +attrs+, if given, is an array of attributes that should be returned
# from the server. The default list is *subschemaSubentry*,
# *namingContexts*, *monitorContext*, *altServer*, *supportedControl*,
# *supportedExtension*, *supportedFeatures*, *supportedSASLMechanisms*
# and *supportedLDAPVersion*.
#
# +sec+ and +usec+ can be used to specify a time-out for the search in
# seconds and microseconds, respectively.
#
def root_dse(attrs = nil, sec = 0, usec = 0)
attrs ||= [
'subschemaSubentry',
'namingContexts',
'monitorContext',
'altServer',
'supportedControl',
'supportedExtension',
'supportedFeatures',
'supportedSASLMechanisms',
'supportedLDAPVersion',
]
entries = search2('', LDAP_SCOPE_BASE, '(objectClass=*)',
attrs, false, sec, usec)
return entries
end
end
end
|