Keycloak authentication plugin for Django REST Framework
Project description
In this project, we implement authentication using the Authorization Code Flow with Keycloak as the identity and access management service. Here is how the authentication flow is structured:
Frontend Responsibility:
User Registration and Login: The frontend handles user registration and login through Keycloak, facilitating a seamless user experience.
Backend Responsibility:
Token Validation: Once a user is authenticated, the backend takes over by validating the JWT (JSON Web Token) from the header of each incoming request to ensure it is valid and secure.
This approach allows us to keep the backend implementation relatively simple, focusing mainly on token validation, while leveraging Keycloak’s robust authentication and authorization features through the frontend.
Install
pip install drf-keycloak
Settings
You can find a selection of variables in drf_keycloak.settings.py, just overwrite them in the Django settings.
KEYCLOAK_CONFIG = {
"SERVER_URL": "http://localhost:8080/",
"REALM": "master",
"CLIENT_ID": "account",
"CLIENT_SECRET": None,
"AUDIENCE": None,
"ALGORITHM": "RS256",
"ISSUER": "http://localhost:8080/realms/master",
"VERIFY_TOKENS_WITH_KEYCLOAK": False,
"PERMISSION_PATH": "resource_access.account.roles",
"USER_ID_FIELD": "username",
"USER_ID_CLAIM": "preferred_username",
# user mapping
# django keys, keycloak keys
"CLAIM_MAPPING": {
"first_name": "given_name",
"last_name": "family_name",
"email": "email",
"username": "preferred_username",
},
}
By setting the variable
KEYCLOAK_CONFIG = {
# ...
"VERIFY_TOKENS_WITH_KEYCLOAK": True
# ...
}
This means that the token is validated with the Keycloak API and locally.
Enable
Add keycloak to INSTALLED_APPS.
INSTALLED_APPS = [
"django.contrib.auth",
# ...
"drf_keycloak"
]
Add drf_keycloak.authentication.KeycloakAuthBackend to DRF settings
REST_FRAMEWORK = {
"DEFAULT_AUTHENTICATION_CLASSES": [
# ...
"drf_keycloak.authentication.KeycloakAuthBackend",
# ...
],
}
Permissions
To create permissions for your API follow the example in HasViewProfilePermission in drf_keycloak.permissions.py.
Use it as usual…
from drf_keycloak.permissions import HasPermission
class ExamplePermission(HasPermission):
permission = "view-profile"
class UserApi(generics.RetrieveAPIView):
permission_classes = [ExamplePermission]
Middleware
For security reasons, use the optional middleware in drf_keycloak.middleware.HeaderMiddleware at the top of the settings.
MIDDLEWARE = [
"drf_keycloak.middleware.HeaderMiddleware",
# ...
]
You should also look at Mozilla’s django-csp package.
OpenAPI Schema with drf-spectacular
In any apps.py or file that is loaded at startup
from django.apps import AppConfig
class MyAppConfig(AppConfig):
"""app config"""
default_auto_field = "django.db.models.BigAutoField"
name = "myapp"
def ready(self):
import drf_keycloak.schema # noqa: E402
Thanks
Thanks to django-rest-framework-simplejwt, the code was inspirational for this package.
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 drf-keycloak-1.0.1.tar.gz
.
File metadata
- Download URL: drf-keycloak-1.0.1.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85cd5d123904bf35795fcbc77bf208d3be1d4823bea7d4686e6849df5e5469be |
|
MD5 | 87031adb35e6b68bed59ff3df29cfff4 |
|
BLAKE2b-256 | 6cf4f436b6bff69623c6ec0330599007b396b3cbaac1e849e04882127469c616 |
File details
Details for the file drf_keycloak-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: drf_keycloak-1.0.1-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4ea7717677f134b2bd9e5e3d988959f0177e20ac90ccabcd168476b91706c3c |
|
MD5 | 2624ea009263d3b4b550f40adb5b8290 |
|
BLAKE2b-256 | df7ab0ecee8cd67ddca5773a054840f3cff02d1a80cd1cc6392491ab83d0430b |