SATOSA Frontend based on idetity python oidcop
Project description
SATOSA oidcop frontend
SATOSA Frontend based on identity python oidcop.
Features
Endpoints:
- provider discovery
- jwks uri
- authorization
- token
- userinfo
- registration
- registration_read endpoint
- introspection endpoint
- token exchange
Requirements
- satosa
- mongodb, see Satosa-Saml2Spid mongo example.
Setup
pip install satosa_oidcop
Configuration
Anyone can migrate its oidcop configuration, from flask_op or django-oidc-op or whatever, in SATOSA and without any particular efforts. Looking at the example configuration we see that config.op.server_info
have a standard SATOSA configuration with the only addition of the following customizations, needed in SATOSA for interoperational needs. These are:
- autentication
authentication:
user:
acr: urn:oasis:names:tc:SAML:2.0:ac:classes:InternetProtocolPassword
class: satosa.frontends.oidcop.user_authn.SatosaAuthnMethod
- userinfo
userinfo:
class: satosa.frontends.oidcop.user_info.SatosaOidcUserInfo
authentication inherits oidcop.user_authn.user.UserAuthnMethod
and overloads two methods involved in user authentication and verification. These tasks are handled by SATOSA in its authentication backends.
userinfo inherits oidcop.user_info.UserInfo
and proposes a way to store the claims of the users when they comes from the backend. The claims are stored in the session database (actually mongodb) and then they will be fetched during userinfo endpoint (and also token endpoint, for having them optionally in id_token claims).
SSO and cookies
oidcop SSO and cookies were not have been implemented because SATOSA doesn't support logout, because of this they are quite useless at this moment.
Client and Session Storage
MongoDB is the storage, here some brief descriptions for a demo setup. The interface to SATOSA oidcop storage is satosa.frontends.oidcop.storage.base.SatosaOidcStorage
and it has three methods:
- get_client_by_id(self, client_id:str, expired:bool = True)
- store_session_to_db(self, session_manager, **kwargs)
- load_session_from_db(self, req_args, http_headers, session_manager, **kwargs)
satosa.frontends.oidcop.storage.mongo.Mongodb
overloads them to have I/O operations on mongodb.
Demo
Satosa-Saml2Spid is a custom Satosa configuration to deal with many SAML2 and OIDC Relying parties and many eduGain and SPID Identity Provider.
Contributions
Feel free to open issues and pull requests, we build communities!
Developer notes
Storage design
At this time the storage logic is based on oidcop session_manager load/dump/flush methods. Each time a request is handled by an endpoint the oidcop session manager loads the definition from the storage, only which one are strictly related to the request will be loaded in the in memory storage of oidcop.
Roadmap
- unit tests
- pytest mongo mock
- test response_type = "code id_token token" (https://github.com/IdentityPython/SATOSA/pull/378/commits/a61dc99503bcb9d4982b77a6ddcf0c41b6732915)
- auto prune expired sessions with mongodb index (https://github.com/IdentityPython/SATOSA/pull/378/commits/137993f77bfb05b44f25ba6df3784e8fb86a31ce, mongo index)
- token refresh (https://github.com/IdentityPython/SATOSA/pull/378/commits/59c0a53fa73e70551d76c5355c051a7389ab99fd)
- DPoP support
Tests
Before you run the tests mind that you've to start a local mongod instance.
pip install pytest
pytest --cov=satosa_oidcop -v --cov-report term --cov-fail-under=95 tests/
Authors
- Giuseppe De Marco Università della Calabria
Credits
- Roland Hedberg
- Andrea Ranaldi ISPRA Ambiente
- Identity Python Community
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file satosa_oidcop-1.0.0.tar.gz
.
File metadata
- Download URL: satosa_oidcop-1.0.0.tar.gz
- Upload date:
- Size: 26.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c70e042577cbdc65ab4bc8c41e9eaeffa56718b449116aa2860cf33311773b5 |
|
MD5 | 08cc4a73d326b9a3337a55631c60d4cd |
|
BLAKE2b-256 | 3e205228a89ad21377e3fd77675f181cea38c1094b842d9c179894adc9a2ddbe |
File details
Details for the file satosa_oidcop-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: satosa_oidcop-1.0.0-py3-none-any.whl
- Upload date:
- Size: 27.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e41c65f39c7c681242d2dbf441c1a97cad868f811653c6387491f7152e0fd7e5 |
|
MD5 | 84f9a172c803796ad9fc1af632abf121 |
|
BLAKE2b-256 | 7be9864f6f53a1f8aff3b5d89808363fcdc318b0c58aac84a65c87894230713b |