Metadata-Version: 2.1
Name: jpl.edrn.ldap.sync
Version: 2.0.1
Summary: LDAP utilities for the Early Detection Research Network Directory
Home-page: https://github.com/EDRN/jpl.edrn.ldap.sync
Author: Sean Kelly
Author-email: kelly@seankelly.biz
License: apache-2.0
Keywords: ldap directory cancer
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Healthcare Industry
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.md

# ☎️ EDRN LDAP Sync

This package contains utilities for the dirctory service of the [EDRN](https://edrn.nci.nih.gov/). There are three console scripts provided:

-   `usersync` — adds and removes users from the EDRN RDF feed for registered people
-   `groupsync` — adds and updates funded sites and collaborative groups from the EDRN RDF feeds for sites and committees
-   `all-edrn-sync` — keeps the `All EDRN` group up-to-date


## 🚗 Getting Started

Do something like the following:

```console
$ python3 -m venv venv
$ venv/bin/pip install --quiet --upgrade setuptools pip wheel
$ venv/bin/pip install --editable .
```

and you should be good to go to run the three scripts mentioned above out of `venv/bin`.


## 🎥 Production Use

Just add a crontab entry like the following:

```crontab
@daily /usr/local/edrn/edrn/ldap-sync-utils/bin/usersync --password PASSWORD --quiet
@daily /usr/local/edrn/edrn/ldap-sync-utils/bin/groupsync --password PASSWORD --quiet
@hourly /usr/local/edrn/edrn/ldap-sync-utils/bin/all-edrn-sync --password PASSWORD --quiet
```
replacing PASSWORD with the password of the manager account of the EDRN Directory Service.


## 📀 Software Environment

This is written in Python 3 and requires Python 3.7 or later (but probably not Python 4 or later).


### 👥 Contributing

You can start by looking at the [open issues](https://github.com/EDRN/jpl.edrn.ldap.sync/issues), forking the project, and submitting a pull request. You can also [contact us by email](mailto:ic-portal@jpl.nasa.gov) with suggestions.


### 🔢 Versioning

We use the [SemVer](https://semver.org/) philosophy for versioning this software. For versions available, see the [releases made](https://github.com/EDRN/jpl.edrn.ldap.sync/releases) on this project.


## 👩‍🎨 Creators

The principal developer is:

- [Sean Kelly](https://github.com/nutjob4life)


## 📃 License

The project is licensed under the [Apache version 2](LICENSE.md) license.
