Django admin SSO lets users login to a django admin using an OAuth2 or an openid provider. It then looks up the email address of the new user and looks up the rights for them.
Installation
Make sure you have a working django project setup.
Install django-admin-sso using pip:
pip install django-admin-sso
Add admin_sso to INSTALLED_APPS in your settings.py file:
INSTALLED_APPS = ( ... 'admin_sso', ... )Add the django-admin authentication backend:
AUTHENTICATION_BACKENDS = ( 'admin_sso.auth.DjangoSSOAuthBackend', 'django.contrib.auth.backends.ModelBackend', )Insert your oauth client id and secret key into your settings file:
DJANGO_ADMIN_SSO_OAUTH_CLIENT_ID = 'your client id here' DJANGO_ADMIN_SSO_OAUTH_CLIENT_SECRET = 'your client secret here'
Navigate to Google’s Developer Console, create a new project, and create a new client ID under the menu point “APIs & AUTH”, “Credentials”. The redirect URI should be of the form http://example.com/admin/admin_sso/assignment/end/
If you don’t specify a client id django-admin-sso will fallback to openid.
Run syncdb to create the needed database tables.
Log into the admin and add an Assignment.
Assignments
Any Remote User -> Local User X
Select Username mode “any”.
Set Domain to your authenticating domain.
Select your local user from the User drop down.
Remote User -> Local User
Select Username mode “matches” or “don’t match”.
Set username to [not] match by.
Set Domain to your authenticating domain.
Select your local user from the User drop down.
Changelog
1.0
Add support for OAuth2.0 since google closes its OpenID endpoint https://developers.google.com/accounts/docs/OpenID
Using OpenID is now deprecated and OpenID support will be removed in a future release.
Add more tests to get a decent coverage.
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 django-admin-sso-1.0.1.tar.gz.
File metadata
- Download URL: django-admin-sso-1.0.1.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
922a015d0904437af400f1d899494e3324ef75d764b69f16ecd005d2d55dfc2b
|
|
| MD5 |
28750b88f116a969e389edbf4d660594
|
|
| BLAKE2b-256 |
f82ffe475933e03c3881a2b6f521d9eee3857614f469fff8c6ff043de7170682
|
File details
Details for the file django_admin_sso-1.0.1-py2-none-any.whl.
File metadata
- Download URL: django_admin_sso-1.0.1-py2-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7814e3a82698f6a75db9188965124384fa21c8259b0de48fa0695b67a81f89de
|
|
| MD5 |
42b587fa784946aa3bce45acfc73a0c0
|
|
| BLAKE2b-256 |
76432471bc5c0be6783d6afb48c114d2467b22d6eff11257b3d7ccf55181ebf3
|