LDAPReader reads information from an LDAP directory converting it to Data Shaper Data Records.
LDAPReader
LDAP directory tree
1
1-n
x
x
x
x
x
x
x
Input
0
x
Input records used for defining base and filter. If the input port is connected then for each input record one query is assembled and sent to the LDAP server. If such query returns no result then one empty record is sent out (with autofilling fields populated); This behavior requires the input port to be connected.
Any
Output
0
✓
For correct data records. Results of the search must have the same objectClass
.
Any [1]
1-n
x
For correct data records
Output 0
[1] Metadata on the output must precisely describe the structure of the read object.
LDAPReader does not propagate metadata.
LDAPReader has no metadata template.
Metadata on the output must precisely describe the structure of the read object. Only Clover fields of types string
and byte/compressedByte
are supported.
Note that metadata field names have strict naming conventions; therefore, to map an LDAP attribute containing special characters (e.g. a dash) in its name, use a metadata field label. Metadata field labels can contain special characters and have a higher priority than field names. For example, to read from the msDS-PrincipalName
LDAP attribute, use a field with label msDS-PrincipalName
and any name that follows the naming convention (e.g. msDS-PrincipalName
).
Metadata can use . The autofilling attribute filename is set to complete the URL (includes base, filter).
ATTRIBUTE
REQ.
DESCRIPTION
POSSIBLE VALUES
Basic
LDAP URL
Yes
LDAP URL of the directory.
ldap://host:port/
Base DN
Yes
Base Distinguished Name (the root of your LDAP tree) used for LDAP search. It is a comma separated list of attribute=value
pairs referring to any location with the directory, e.g. if ou=Humans,dc=example,dc=com
is the root of the subtree to be searched, entries representing people from example.com domain are to be found.
Optional references to input record’s fields in the form $field_name
are resolved.
Filter
Yes
Filter used for the LDAP connection. attribute=value
pairs as a filtering condition for the search. All entries matching the filter will be returned, e.g. mail=*
returns every entry which has an email address, while objectclass=*
is the standard method for returning all entries matching a given base and scope because all entries have values for objectclass
.
Optional references to input record’s fields in the form $field_name
are resolved.
Scope
Scope of the search request.
By default, only one object
is searched.
If onelevel
, the level immediately below the distinguished name is searched.
If subtree
, the whole subtree below the distinguished name is searched.
object (default) | onelevel | subtree
User
No
The user DN to be used when connecting to the LDAP directory. Similar to the following: cn=john.smith,dc=example,dc=com
Password
No
The password to be used when connecting to the LDAP directory.
Advanced
Multi-value separator
No
The character/string to be used when mapping multi-value attribute on simple Clover field as concatenation of string values.
LDAPReader can handle keys with multiple values. These are delimited by this string or character. is special escape value which turns off this functionality, then only the first value is read. This attribute can only be used for string
data type. When byte
type is used, the first value is the only one that is read.
"|" (default) | other character or string
Alias handling
To control how aliases (leaf entries pointing to another object in the namespace) are dereferenced.
always | never | finding (default)| searching
Referral handling
By default, links to other servers are ignored. If follow
, the referrals are processed.
ignore (default) | follow
Page size
No
The size of the page used in paging. If >0 then LDAP server is queried in paging mode and this attribute defines how many records are returned on one page.
e.g. 256
All attributes
No
The query LDAP for all available attributes or only those directly mappable on output fields. When using defaultField
then this should be set to True.
True | False
Default field
No
The name of the output field of type MAP(string) where attributes without explicit mapping (corresponding field names on the output port) will be stored.
e.g. field15
Binary attributes
No
The list of field names containing binary attributes.
By default, the objectGUID
is added to the list of binary attributes.
e.g. objectGUID
LDAP Connection Properties
No
Java Property-like style of key-value definitions which will be added to LDAP connection environment.
LDAPReader provides the logic to extract the search results and transform them into Data Shaper Data Records. The results of the search must have the same objectClass
.
The metadata provided on the output port/edge (field names) are used when mapping from LDAP attributes to fields.
Only string
and byte (cbyte)
Data Shaper data fields are supported. String is compatible with most of LDAP usual types, byte is necessary; for example, for userPassword
LDAP type reading.
Multi-value attributes are mapped onto target fields in two ways:
if target field is of type List then individual values are stored as individual items.
If target field is simple type (and multiValueSeparator
is set) then values are concatenated with the defined separator and stored as a single value.
When the defaultMapping
field is set (must be of type Map) then all unmapped attributes returned from LDAP server are stored in the map in a key→value manner. Multi-values are stored concatenated.
Searching the entry to which an alias entry points is known as dereferencing an alias. Setting the Alias handling attribute, you can control the extent to which entries are searched:
always
: Always dereference aliases.
never
: Never dereference aliases.
finding
: Dereference aliases in locating the base of the search but not in searching subordinates of the base.
searching
: Dereference aliases in searching subordinates of the base but not in locating the base
Read records with uid=*
from ou=people,dc=foo,dc=?
subtree on foobar.com
(port 389). Use credentials: user uid=Manager,dc=foo,dc=bar
and password manager_password
. The values for dc=?
will be received from the input edge in the dc
field.
Solution
LDAP URL
ldap://example.com:389
Base DN
ou=people,dc=foo,dc=$dc
Filter
uid=*
Scope
subtree
Retrieve information about particular person identified by UID. The UID is received from the input edge. The information about persons is in cn=people,dc=uninett,dc=no
subtree on LDAP server example.com (port 389).
The metadata on output port has following fields: cn
(string), displayName
(string), mail
(list of strings),uid
(string), objectClass
(list of strings), default
(map of strings).
Solution
LDAP URL
ldap://example.com:389
Base DN
ou=people,dc=example,dc=com
Filter
uid=$userId
Scope
subtree
The filter parameter contains a reference to the input field name userId. This reference will be resolved for all input records and LDAP query executed (and result parsed) for each input record.
This example shows a way to read binary attributes from LDAP. Read the records from the Reading Data from LDAP example above. In addition to the example, the records contain binary field objectGUID.
Similarly, you can use the byte2hex function with a prefix argument to get a hexadecimal string representation of the objectGUID attribute.
Improving search performance: If there are no alias entries in the LDAP directory that require dereferencing, choose Alias handling never
option.
Solution The output metadata of LDAPReader should contain a byte field for objectGUID. Use the and byte2hex function to convert the byte field to string.