Nice HTTP authentication support for Django
Project description
Nice authentication support for Django
This is a simple, ready-to-use module for handling any standard kind of authentication in Django apps, without writing any code. However - if you have greater needs - this is also a uniform, configurable and extensible framework you can use to do whatever you need.
Features
- Per-request authentication: common base for supporting any number of standard HTTP auth methods, and HTTP Basic and OAuth Bearer Token auth methods included
- OpenID Connect module: support for OpenID Connect token verification and issuance.
- Modular, uniform architecture: you can mix and match different auth mechanisms, and everything will just work!
We are only getting started. More generic auth mechanisms are going to be added in the future (see Planned features).
Requirements
- Django 2.0+
Installation
pip install dj-authentication
settings.py
- Add
'dj_authentication'to the list ofINSTALLED_APPS. - Remove
'django.contrib.auth.middleware.AuthenticationMiddleware'from the list ofMIDDLEWAREs. - Add
dj_authentication.request_http_auth.HTTPAuthMiddlewareto the list ofMIDDLEWAREs. - Choose backends used for determining
request.user, for example:
REQUEST_USER_BACKENDS = [
'dj_authentication.methods.basic', # HTTP Basic Auth
'dj_authentication.methods.bearer', # OAuth Bearer Token Auth
'django.contrib.auth',
]
Per-request auth methods
Basic auth
This method checks the provided username and password against configured Django authentication backends.
Tips
To trigger an authentication dialog in a browser, if the user is not authenticated:
if not request.user.is_authenticated:
return HttpResponse(status=401)
Bearer auth
This method checks the provided bearer token against the OpenID Connect module, described below.
openid module - OpenID Connect / OAuth support
dj_authentication includes an implementation of OpenID Connect / OAuth token verification and issuance.
You can configure the list of trusted OpenID Providers by providing their URLs thru (*_)AUTH_URL environment variables, like:
GOOGLE_AUTH_URL=https://client_id@accounts.google.comFACEBOOK_AUTH_URL=facebook+https://app_id@facebook.com
All conforming OpenID Providers are supported; some other services too - see the list at python-openid-connect. However, only conforming OpenID Providers that issue id_tokens are supported automatically in the Bearer auth.
Token verification
You can verify tokens using:
dj_authentication.openid.verify()function - on the OAuth callback URL, you should pass all the GET parameters you've received to this function. Some of the understood parameters areid_token,iss(for non-OpenID OAuth servers, for examplehttps://facebook.com),token_type,access_token. Note that providing theissparameter is required for legacy OAuth servers.dj_authentication.methods.bearerrequest.user backend - you can passid_tokens returned by the OpenID Providers in theAuthorization: Bearerheader, and this backend will automatically verify them to provide request.user.
How it works?
- For OpenID Providers,
id_tokens are verified against thejwks_uri. - For supported legacy OAuth servers,
access_tokens are used to access userinfo endpoints and obtain user information.
User mapping
By default, dj_authentication.methods.bearer sets the request.user to a dict with the data decoded from the id_token, with is_authenticated = True property added.
To have it automatically map the ID data to a true user object, set the MAP_ID_TO_USER_FUNC variable. dj_authentication provides two ready-to-use functions:
'dj_authentication.user_mappings:map_email'- it looks up the users by the email address'dj_authentication.user_mappings:map_sub_to_username'- it looks up the users using OpenID token subject as the username
Issuing your own tokens
You can also issue and verify your own JWT id_tokens - just set OPENID_PROVIDER = 'dj_authentication.openid:SimpleDjangoProvider' in the settings.py file and use the dj_authentication.openid.issue() function. They will be signed with the Django SECRET_KEY.
Example configurations
App that supports session-less HTTP Basic auth in addition to standard Django sessions
REQUEST_USER_BACKENDS = [
'dj_authentication.methods.basic',
'django.contrib.auth',
]
Session-less app that supports only Google id_tokens passed as Bearer tokens
AUTHENTICATION_BACKENDS = [] # Fully disable session-based auth; you may choose to delete django.contrib.auth from INSTALLED_APPS too.
REQUEST_USER_BACKENDS = [
'dj_authentication.methods.bearer',
]
os.environ['GOOGLE_AUTH_URL'] = 'https://client_id@accounts.google.com'
App that supports both email-based, Google and Facebook login
REQUEST_USER_BACKENDS = [
'django.contrib.auth',
]
OPENID_PROVIDER = 'dj_authentication.openid:SimpleDjangoProvider' # for tokens sent in email verification messages
os.environ['GOOGLE_AUTH_URL'] = 'https://client_id@accounts.google.com'
os.environ['FACEBOOK_AUTH_URL'] = 'facebook+https://app_id@facebook.com'
App that supports both email-based, Google and Facebook login; and session-less Google id_tokens passed as Bearer tokens
REQUEST_USER_BACKENDS = [
'dj_authentication.methods.bearer',
'django.contrib.auth',
]
OPENID_PROVIDER = 'dj_authentication.openid:SimpleDjangoProvider' # for tokens sent in email verification messages
MAP_ID_TO_USER_FUNC = 'dj_authentication.user_mappings:map_email'
os.environ['GOOGLE_AUTH_URL'] = 'https://client_id@accounts.google.com'
os.environ['FACEBOOK_AUTH_URL'] = 'facebook+https://app_id@facebook.com'
Planned features
- Verification of
access_tokenandcodeagainstat_hashandc_hash- to return them fromverify() - Support for opaque
id_tokens verified against a single configured OAuth/OIDC auth server thru Introspection Endpoint - Support for opaque
id_tokens verified against the Django session system (aka sending the session key as the Bearer token) - Support for client certificates (see also OAuth 2.0 Mutual TLS)
- Support for OIDC
private_key_jwtscheme - Support for asymmetric signing methods for the issued tokens
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dj-authentication-0.2.0.tar.gz.
File metadata
- Download URL: dj-authentication-0.2.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eca4e0a15d8983d8d8dfa8f3a8208d6ca594e02a935a4cd7b8154f21d5d4a2c7
|
|
| MD5 |
78fb8513f03e422e54c9bff6b9dafd1a
|
|
| BLAKE2b-256 |
b89b2cb9267ca72fe405608d1cf5ab2d6a23fc9643156576b7439a2bc5ed1a15
|
File details
Details for the file dj_authentication-0.2.0-py3-none-any.whl.
File metadata
- Download URL: dj_authentication-0.2.0-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0eae96c86213cef281e453f89b6a404556e8f7b5c01bc703200e102e1f988b81
|
|
| MD5 |
8fb0ef7d15f696975dcad897cbf083d5
|
|
| BLAKE2b-256 |
7cad9293ca7e52b203ab65023646fa58b71fedb3d741b4e772d62c0fa96054a3
|