Authentication for django-ninja, KNOX inspired
Project description
knight-auth
Knight Auth is a versatile authentication package designed exclusively for Django Ninja. Inspired by the popular Django Rest Knox project, Knight Auth brings the power of token-based authentication to your Django Ninja APIs. With an emphasis on flexibility, security, and seamless integration, Knight Auth simplifies user authentication, allowing you to focus on building exceptional API experiences.
Knight Auth has the following features:
- Provides two methods of authentication: token authentication and session authentication. You can use either or both methods in your project.
- CSRF support for session authentication.
- Register endpoint for creating new users.
Setup
Installation
pip install django django-ninja
pip install knight-auth
Usage
1. Add Knight Auth to your Django project
INSTALLED_APPS = [
...
'knightauth',
...
]
2. Add Knight Auth to your Ninja router
from ninja import NinjaAPI
from knightauth.auth import TokenAuthentication
from knightauth.api import token_auth_router
api = NinjaAPI(auth=TokenAuthentication())
api.add_router('auth/', token_auth_router)
urlpatterns = [
....
path('api/', api.urls),
]
4. An example of an endpoint that requires authentication
@api.get('/test')
def test(request):
return {'message': 'Hello, world!', 'user': request.auth.username}
5. That's it! You're done!
Combine multiple authentication methods
You can add multiple authentication methods to your NinjaAPI instance. For example, you can add both token authentication and session authentication to your project.
from ninja import NinjaAPI
from ninja.security import SessionAuth
from knightauth.api import token_auth_router, session_auth_router
from knightauth.auth import TokenAuthentication
api = NinjaAPI(
title='KnightAuth',
auth=[TokenAuthentication(), SessionAuth()],
)
api.add_router('auth/', token_auth_router)
api.add_router('auth/session/', session_auth_router)
Session Authentication settings
If Your frontend and backend on the same domain, You can set the following settings for session authentication:
CSRF_COOKIE_SAMESITE = 'Strict'
SESSION_COOKIE_SAMESITE = 'Strict'
CSRF_COOKIE_HTTPONLY = False
SESSION_COOKIE_HTTPONLY = True
If your frontend and backend on different domains (Cross-Origin), You can set the following settings for session authentication:
CSRF_COOKIE_SAMESITE = 'Lax'
SESSION_COOKIE_SAMESITE = 'Lax'
CSRF_COOKIE_HTTPONLY = False
SESSION_COOKIE_HTTPONLY = True
CSRF_TRUSTED_ORIGINS = []
CORS_ALLOWED_ORIGINS = []
CORS_EXPOSE_HEADERS = ['Content-Type', 'X-CSRFToken']
CORS_ALLOW_CREDENTIALS = True
INSTALLED_APPS = [
'...',
'corsheaders'
]
MIDDLEWARE = [
'...',
'corsheaders.middleware.CorsMiddleware',
'django.middleware.common.CommonMiddleware'
]
Don't forget to add te following settings in Production:
CSRF_COOKIE_SECURE = True
SESSION_COOKIE_SECURE = True
If you want to set CSRF_COOKIE_HTTPONLY = True
, You have to manage CSRF manually in your frontend. You might need and endpoint like this:
from django.middleware.csrf import get_token
@api.get('/csrf')
def csrf(request):
return {'csrf': get_token(request)}
But I recommend serving your frontend from the same domain as your backend. It's more secure and easier to manage.
The Register Endpoint
Knight Auth provides a register endpoint for creating new users. You can add the register endpoint to your project by adding the following code to your NinjaAPI instance.
from ninja import NinjaAPI
from knightauth.api import register_router
api = NinjaAPI(title='KnightAuth')
api.add_router('auth/', register_router)
Register endpoint does username, email and password validations, And password confirmation. Also it creates a new user based on django user model. You can supply your own user model, but the endpoint only is going to populate username, email and password fields. Sometimes you may want to create other Models that are related to the user model upon registration. For example, you may want to create a profile model for each user. In this case, you can use the register signal to create the profile model (or any other functionality) upon registration. The register signal is sent after the user is created.
Project details
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
Hashes for knight_auth-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9e08d00c7fd757682a6b7147228d8e9ac26cb2477e253655c11e9a15e9ba2ac |
|
MD5 | 84ab2ef8a15e8ebfe08677377164e309 |
|
BLAKE2b-256 | 3565b3f04a5cc79007ae7947a33be51274e49a08617efa9d5179f5138f36b93a |