Identify the Django Session by a Header
Project description
Django Session Header: Identify the session through a header
There are some situations where the browser may not allow any cookies at all to be used. In those cases, we would like to be able to fall back to something that is both secure, and capable. This package allows you to manually pass the sessionid using a header, so that you can continue to use Django’s excellent session management.
It extends Django’s built-in sessions to support sessions in places where cookies are not allowed. For most views, the handling will be seamless. Those that need to have sessions that persist despite the absence of cookies, there are a few extra features.
Usage
First, install the package.
pip install django-session-header
Replace django.contrib.sessions.middleware.SessionMiddleware in your settings.py with the following:
MIDDLEWARE_CLASSES = [
# ...
# 'django.contrib.session.middleware.SessionMiddleware',
'django_session_header.middleware.SessionMiddleware',
]
And replace the Django Rest Framework SessionAuthentication class with django_session_header.authentication.SessionAuthentication:
REST_FRAMEWORK = {
'DEFAUlT_AUTHENTICATION_CLASSES': [
# ...
# 'rest_framework.authentication.SessionAuthentication',
'django_session_header.authentication.SessionAuthentication',
]
}
If a session was obtained via a session header, then request.session.csrf_exempt will be True. You can use this to conditionally apply CSRF protection. Or, if you prefer, you can replace Django’s normal CSRF middleware with django_session_header.middleware.CsrfViewMiddleware:
MIDDLEWARE_CLASSES = [
# ...
# 'django.middleware.csrf.CsrfViewMiddleware',
'django_session_header.middleware.CsrfViewMiddleware',
]
The sessionid will be available in the X-SessionID response header, and you can now set the X-SessionID header on the request manually to avoid needing cookies to power your sessions.
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 django-session-header-11-1.0.1.tar.gz
.
File metadata
- Download URL: django-session-header-11-1.0.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.8 Linux/5.8.18-1-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4ed65882ecba753d7c898809215a5c6b5092c05f5324aadebcc9fcc7e048a54 |
|
MD5 | ca917771a28987d6acacccf34abf557e |
|
BLAKE2b-256 | 0eece24a727bf3d60f8b341b96425f7bb2041b1fccb1c1162ee9e59a54561c36 |
File details
Details for the file django_session_header_11-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: django_session_header_11-1.0.1-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.7.8 Linux/5.8.18-1-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c5c4eb0fbe0b65376ee495117a41b3009807376bb63add559504d5b7d7df263 |
|
MD5 | aa6f01be460b370fb26416630be14231 |
|
BLAKE2b-256 | 929fc0d038346ba11df02763ee07e225e9831fdc5293f4e4599294f9a873bd4a |