Django Integration with JustPass.me
Project description
Django Client for justpass.me
-
Install the justpassme app
- For django 2.2, use justpass-me-django<3.0.0
- For django 3.1+, use justpass-me-django>3.0.0
pip install justpass-me-django
-
Add the following to your INSTALLED_APPS
INSTALLED_APPS = [ '....' 'mozilla_django_oidc', 'justpassme', '....' ]
-
Add the following to
settings.py
AUTHENTICATION_BACKENDS = ( 'justpassme.OIDC_CLIENT.OIDCUserFinder', 'django.contrib.auth.backends.ModelBackend', ) SITE_URL = YOUR_SITE_URL #Your full site url OIDC_USERNAME_FIELD = "username" # The field to use to create users on justpass.me LOGIN_URL = "/accounts/login/" # Your login view as usual OIDC_RP_CLIENT_ID = "app.client_id" # client_id from justpass.me OIDC_RP_CLIENT_SECRET="app.client_secret" # client_secret from justpass.me OIDC_OP_URL= "https://organization_domain.accounts.justpass.me/openid/" #Put your organization domain on justpass.me OIDC_RP_SCOPES= "openid" OIDC_RP_SIGN_ALGO = 'HS256' OIDC_STORE_ID_TOKEN = True OIDC_OP_JWKS_ENDPOINT=OIDC_OP_URL +"jwks" OIDC_OP_AUTHORIZATION_ENDPOINT=OIDC_OP_URL + "authorize/" OIDC_OP_TOKEN_ENDPOINT = OIDC_OP_URL +"token/" OIDC_OP_USER_ENDPOINT = OIDC_OP_URL + "userinfo/" OIDC_CALLBACK_CLASS= "justpassme.OIDC_CLIENT.Callback" OIDC_AUTHENTICATE_CLASS = "justpassme.OIDC_CLIENT.Authenticate" LOGIN_REDIRECT_URL_FAILURE="/justpass/failure/" LOGIN_REDIRECT_URL = "/justpass/success/" # If your application uses SSL. USE_X_FORWARDED_HOST = True SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') # Provide the following functions that will be called when event is triggered, check example functions below REGISTRATION_SUCCESS = "Your_App.justpass.reg_success" REGISTRATION_FAILURE = "Your_App.justpass.reg_failure" AUTHENTICATION_SUCCESS = "Your_App.justpass.auth_success" AUTHENTICATION_FAILURE = "Your_App.justpass.auth_failure"
-
Add
justpass
to your urlsurls_patterns= [ '...', path(r'justpass/', include('justpassme.urls')), path('oidc/',include('mozilla_django_oidc.urls')), '....', ]
-
To start registration, redirct to
justpass:start_reg
-
To start login, redirect to
justpass:start_login
Note: For 2nd factor, The function expects the user's username to be in
request.session["base_username"]
-
Write 4 functions that handle the success and failure of registration and login, refer to them in the
settings.py
You can use the four functions below as a reference.
def auth_success(request): return redirect('home') def auth_failure(request): return render(request, 'login.html', {"failed": True}) def reg_success(request): request.user.mfa_enabled = True request.user.save() request.session["reg"] = True return redirect('home') def reg_failure(request): request.session["reg"] = False return redirect('home')
Note: If you use justpass.me as 2nd factor
Break your login function, Usually your login function will check for username and password, log the user in if the username and password are correct and create the user session, to support justpass.me, this has to change
- authenticate the user
- if username and password are correct , check if the user has mfa or not
- if user has mfa then redirect to justpass.me
- if user doesn't have mfa then call your function to create the user session
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
File details
Details for the file justpass-me-django-3.2.1.tar.gz
.
File metadata
- Download URL: justpass-me-django-3.2.1.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 colorama/0.4.5 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.28.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.25.10 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ab901fdea64642670ec211586cb02febc901665feec010e2f3994b609389b70 |
|
MD5 | db0da83f302e2612de0ca43b73e7e824 |
|
BLAKE2b-256 | 738f8d5528b1f44eac5898f17b1f8e86c8e6d041cc4c23673eaf67cfa826e06b |