Skip to content

matzebert/ldap2csv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LDAP to CSV converter

Purpose

Tool that reads data via LDAP and writes the query result to a CSV file.

The example configurations in the ./etc directory are suitable for a typical linuxmuster.net setup.

LDAP configuration

LDAP configurations are stored in YAML files. The -c option is required and takes at least one configuration file name. When using more than one file, later values overwrite previous ones.

The following table shows the keys available.

Key Description Example value
host URL of the LDAP host ldaps://ldap.schule.de
bind-user full DN of the bind user CN=bind-user,OU=Management,OU=default-school,OU=SCHOOLS,DC=lmn,DC=schule,DC=de
bind-passwd password for the bind user TopSecret!
search-base search base in the LDAP tree OU=students,OU=default-school,OU=SCHOOLS,DC=lmn,DC=schule,DC=de
search-filter search filter for the LDAP query (&(objectClass=person)(!(sophomorixAdminClass=attic)))
attributes LDAP attributes to be included in the CSV file [sAMAccountName, sn, givenName]

CSV file format

The tool writes a CSV file with the following format:

  • There is no header with attribute names.
  • The columns are separated by ;.
  • The cell values are not delimited (by quotes).

This behaviour can not be configured in the current version.

Examples

ldap2csv --help
ldap2csv --version
ldap2csv -c ldap.yaml webuntis.yaml
ldap2csv -c ldap.yaml webuntis.yaml -o students.csv

Copyright (C) 2024 Matthias Ebert

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

About

LDAP to CSV converter

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages