Djangosaml2 SPID Service Provider
Project description
SPID Django
A SPID Service Provider based on pysaml2.
Introduction
This is a Django application that provides a SAML2 Service Provider for a Single Sign On with SPID, the Italian Digital Identity System.
This project comes with a demo on a Spid button template with both spid-testenv2 and spid-saml-check IDP preconfigured. See running the Demo project paragaph for details.
Furthermore, this application integrates the checks of Spid QA within its CI pipeline, through spid-sp-test. See github actions log for details.
The technical documentation on SPID and SAML is available at Docs Italia
Dependencies
These libraries are required on your operating system environment in order to compile external modules of some dependencies:
- xmlsec
- python3-dev
- python3-pip
- libssl-dev
- libsasl2-dev
Running the Demo project
The demo project is configured within example/
subdirectory.
This project uses spid-saml-check and spid-testenv2 as
additional IDPs configured in a demo SPID button.
Prepare environment:
cd example/
virtualenv -ppython3 env
source env/bin/activate
pip install -r ../requirements-dev.txt
Your example saml2 configuration is in spid_config/spid_settings.py
.
See djangosaml2 and pysaml2 official docs for clarifications.
To run the demo project:
- python -B ./manage.py migrate
- python -B ./manage.py collectstatic --noinput
- uwsgi --https 0.0.0.0:8000,./certificates/public.cert,./certificates/private.key --module example.wsgi:application --env example.settings --chdir .
or execute the run.sh script with these environment settings to enable tests IdPs:
SPID_SAML_CHECK_IDP_ACTIVE=True SPID_DEMO_IDP_ACTIVE=True bash run.sh
If you chose to use spid-testenv2, before starting it, you just have to save the current demo metadata in spid-testenv2 configuration, this way:
# cd into spid-testenv2/ base dir ...
wget https://localhost:8000/spid/metadata -O conf/sp_metadata.xml
Finally, start spid-testenv2 and spid-saml-check (docker is suggested) and then open 'https://localhost:8000' in your browser.
Demo project with Docker
To use Docker compose environment, add to /etc/hosts this line:
127.0.0.1 hostnet
then use docker-compose --env-file docker-compose.env up
(the process takes some time) and when the services are up go to http://hostnet:8000/spid/login
warning: if you want to change ports of any of the docker-compose services (as, spid-testenv2, spid-saml-check) and/or the FQDN of the docker-compose default network gateway (defaults to hostnet
) you need to change all the files
under ./example/configs/
to match the new configurations, changing only ./docker-compose.env
will not suffice.
Setup for an existing project
djangosaml2_spid uses a pySAML2 fork.
pip install git+https://github.com/italia/spid-django
- Copy the
example/spid_config/
to your project base dir and remember to edit with your custom paramenters - Import SAML2 entity configuration in your project settings file:
from spid_config.spid_settings import *
- Add in
settings.INSTALLED_APPS
the following
spid_config is your configuration, with statics and templates. See'djangosaml2', 'djangosaml2_spid', 'spid_config'
example
project. - Add you custom User model, see example project:
AUTH_USER_MODEL = 'custom_accounts.User'
- Add in
settings.MIDDLEWARE
:'djangosaml2.middleware.SamlSessionMiddleware'
for SameSite Cookie - Add in
settings.AUTHENTICATION_BACKENDS
:'django.contrib.auth.backends.ModelBackend', 'djangosaml2.backends.Saml2Backend',
- Generate X.509 certificates and store them to a path, generally in
./certificates
, using spid-compliant-certificates - Register the SP metadata to your test Spid IDPs
- Start the django server for tests
./manage.py runserver 0.0.0.0:8000
Minimal SPID settings
Instead of copy the whole demo project configuration you can add only the
necessary configuration entries (eg. SAML_CONFIG with 'organization' info,
and SPID_CONTACTS, other configurations that you want to be different from
defaults) directly to your project settings file. In this case don't
add 'spid_config'
to settings.INSTALLED_APPS
.
An example of a minimal configuration for SPID is the following:
SAML_CONFIG = {
'organization': {
'name': [('Example', 'it'), ('Example', 'en')],
'display_name': [('Example', 'it'), ('Example', 'en')],
'url': [('http://www.example.it', 'it'), ('http://www.example.it', 'en')],
},
}
SAML_USE_NAME_ID_AS_USERNAME = False
SAML_DJANGO_USER_MAIN_ATTRIBUTE = 'username'
SAML_CREATE_UNKNOWN_USER = True
SAML_DJANGO_USER_MAIN_ATTRIBUTE_LOOKUP = '__iexact'
SAML_ATTRIBUTE_MAPPING = {
'spidCode': ('username', ),
'email': ('email', ),
'name': ('first_name', ),
'familyName': ('last_name', ),
}
SPID_CONTACTS = [
{
'contact_type': 'other',
'telephone_number': '+39 8475634785',
'email_address': 'tech-info@example.org',
'VATNumber': 'IT12345678901',
'FiscalCode': 'XYZABCAAMGGJ000W',
'Private': '',
},
]
Attribute Mapping
Is necessary to maps SPID attributes to Django ones. An example that links fiscalNumber wiht username have been configured in the example project. This is another example that achieve the same behaviour without changing the default User model.
SAML_USE_NAME_ID_AS_USERNAME = False
SAML_DJANGO_USER_MAIN_ATTRIBUTE = 'username'
SAML_CREATE_UNKNOWN_USER = True
SAML_DJANGO_USER_MAIN_ATTRIBUTE_LOOKUP = '__iexact'
SAML_ATTRIBUTE_MAPPING = {
'fiscalNumber': ('username', ),
}
Download identity providers metadata
To update the list of entity providers use the custom django command update_idps
.
In the example project you can do it as follows:
cd example/
python ./manage.py update_idps
Running tests (only for developers)
Tests are integrated into the demo project and are intended for use only by developers.
To test the application:
pip install -r requirements-dev.txt
pip install -e .
python runtests.py
For running tests using the settings of the Demo project:
pip install -r requirements-dev.txt
cd example/
coverage erase
coverage run ./manage.py test djangosaml2_spid.tests
coverage report -m
Warnings
- debug server uses the same SAML2 certificates, please create your SAML2 certificates for production and also a real TLS one for httpd!
- Read djangosaml2 documentation, remember to set SESSION_COOKIE_SECURE in your project settings.py
- The SPID Button template is only for test purpose, please don't use it in production, do your customizations instead!
- In a production environment please don't use "remote" as metadata storage, use "local" or "mdq" instead!
- When using spid-saml-check via docker image, mind that the metadata download url would match to
https://172.17.0.1:8000/spid/metadata
and not to localhost!
Authors
- Giuseppe De Marco
- Davide Brunato
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file djangosaml2-spid-1.0.1.tar.gz
.
File metadata
- Download URL: djangosaml2-spid-1.0.1.tar.gz
- Upload date:
- Size: 1.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51ac2f97d9847a1c227c5c916a7963ddf804c7e3207b11383f125d4cf506c272 |
|
MD5 | 7e4be2278ed76603ee86d023b37b779d |
|
BLAKE2b-256 | a7822c0b692c677d12778ae0cab9343ceaf3cbcfcd48a2bb58429099258944a1 |