Skip to content
README.md 3.01 KiB
Newer Older
Bengfort's avatar
Bengfort committed
Castellum Scheduler -- an open source tool for scheduling appointments

Bengfort's avatar
Bengfort committed
Scheduler allows users to set up a set of timeslots and generate unique
invitation links. Each invited person can then pick a free slot without
needing to log in. In a way this is the opposite of doodle where
everyone agrees on the same time slot.
Bengfort's avatar
Bengfort committed

Scheduler is part of the [Castellum][1] project, but can be used with
other tools just as well.

# Installation

Bengfort's avatar
Bengfort committed
For development, a single `make` will install all dependencies and start
the server. You can log in as "admin" with password "password".

Bengfort's avatar
Bengfort committed
If you want to run the scheduler alongside castellum for development you
need to set the following settings in castellum:

Bengfort's avatar
Bengfort committed
```python
Bengfort's avatar
Bengfort committed
SCHEDULER_URL = 'http://localhost:8001'
SCHEDULER_TOKEN = 'CHANGEME'
```

## Production

There are many different ways to deploy a django application. Please see
the [django documentation][2] for details. A complete example is also
availabe in the [castellum documentation][3].

Most important steps:

-   Create a settings file and set the `DJANGO_SETTINGS_MODULE`
    environment variable accordingly
-   Provide values `SECRET_KEY`, `PING_URL`, and `API_TOKEN` in the
    settings file you just created
-   Setup a database and add the relevant information to the settings
    file
Bengfort's avatar
Bengfort committed
-   Add links to the imprint and data protection information to `NAV`.
    You can either create them with an external CMS or by using [django
    flatpages][5].
-   Configure authentication, e.g. [LDAP][4]

## Network communication

This system is designed so that castellum can remain in a secure
internal network and only the scheduler is accessible from the internet.
Communication between scheduler and castellum must be possible in both
directions.

Bengfort's avatar
Bengfort committed
# API

All API requests must send an `Authorization` header with the secret
token defined in `settings.API_TOKEN`.

You can use PUT/DELETE requests to create/delete invitations for a
schedule. PUT will always respond with 204. DELETE will respond with 404
if no matching invitation existed.

You can use a GET request to get the currently selected timeslot for an
invitation.

When an invitation is changed, a POST request is sent to the URL defined
in `settings.PING_URL`. This request is not authenticated and should not
be trusted, so it does not itself contain the new data. Instead, the
other service is expected to make an authenticated GET request as
described above.

Example:

Bengfort's avatar
Bengfort committed
```sh
$ curl -X PUT -H 'Authorization: token CHANGEME' http://localhost:8001/api/1/foo/
$ curl -X GET -H 'Authorization: token CHANGEME' http://localhost:8001/api/1/foo/
{"datetime": "2020-11-03T07:00:00"}
$ curl -X DELETE -H 'Authorization: token CHANGEME' http://localhost:8001/api/1/foo/
```
Bengfort's avatar
Bengfort committed

Bengfort's avatar
Bengfort committed
[1]: https://www.mpib-berlin.mpg.de/research-data/castellum
[2]: https://docs.djangoproject.com/en/stable/howto/deployment/
[3]: https://git.mpib-berlin.mpg.de/castellum/castellum/-/tree/main/docs/example_deployment
[4]: https://django-auth-ldap.readthedocs.io/en/latest/
Bengfort's avatar
Bengfort committed
[5]: https://docs.djangoproject.com/en/stable/ref/contrib/flatpages/