Site-wide perimeter access control for Django projects.
Project description
Django Perimeter
Perimeter is a Django app that provides middleware that allows you to 'secure the perimeter' of your django site outside of any existing auth process that you have.
Compatibility
This package now requires Python 3.12+ and Django 5.2-6.0.
For previous versions please refer to the relevant branch.
Why?
Most django sites have some kind of user registration and security model -
a login process, decorators to secure certain URLs, user accounts -
everything that comes with django.contrib.auth and associated apps.
Sometimes, however, you want to simply secure the entire site to prevent prying eyes - the classic example being before a site goes live. You want to erect a secure perimeter fence around the entire thing. If you have control over your front-end web server (e.g. Apache, Nginx) then this can be used to do this using their in-built access control features. However, if you are running your app on a hosting platform you may not have admin access to these parts. Even if you do have control over your webserver, you may not want to be re-configuring it every time you want to grant someone access.
That's when you need Perimeter.
Perimeter provides simple tokenised access control over your entire Django site (everything, including the admin site and login pages).
How does it work?
Once you have installed and enabled Perimeter, everyone requiring access will need an authorisation token (not authentication - there is nothing inherent in Perimeter to prevent people swapping / sharing tokens - that is an accepted use case).
Perimeter runs as middleware that will inspect the user's session
for a token. If they have a valid token, then they continue to use the
site uninterrupted. If they do not have a token, or the token is invalid
(expired or set to inactive), then they are redirected to the Perimeter
'Gateway', where they must enter a valid token, along with their name
and email (for auditing purposes - this is stored in the database).
To create a new token you need to head to the admin site, and create a
new token under the Perimeter app. If you have PERIMETER_ENABLED set
to True already you won't be able to access the admin site (as Perimeter
covers everything except for the perimeter 'gateway' form), and so there
is a management command (create_access_token) that you can use to
create your first token. (This is analagous to the Django setup process
where it prompts you to create a superuser.)
Setup
- Add
"perimeter"to your installed apps. - Add
"perimeter.middleware.PerimeterAccessMiddleware"to the list of MIDDLEWARE_CLASSES - Add the perimeter urls, including the
"perimeter"namespace. - Add
PERIMETER_ENABLED = Trueto your settings file. This setting can be used to enable or disable Perimeter in different environments.
Settings:
PERIMETER_ENABLED = True
INSTALLED_APPS = (
...
"perimeter",
...
)
# Perimeter's middleware must be after SessionMiddleware as it relies on
# request.session
MIDDLEWARE_CLASSES = [
...
"django.contrib.sessions.middleware.SessionMiddleware",
"perimeter.middleware.PerimeterAccessMiddleware",
...
]
Site urls:
# in site urls
urlpatterns = [
...
# NB you must include the namespace, as it is referenced in the app
path("perimeter/", include("perimeter.urls", namespace="perimeter")),
...
]
Tests
The app has a suite of tests, and a tox.ini file configured to run
them when using tox (recommended).
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
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_perimeter-0.18.1.tar.gz.
File metadata
- Download URL: django_perimeter-0.18.1.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5995ff9aa25265b626a93bc624d7ea0f99c61bb5b782c98541fd670cfa6829bb
|
|
| MD5 |
7c5be57f02b9506c6668219fac5ca119
|
|
| BLAKE2b-256 |
2ef73054fbb5d700735971fd0e8d2f6c5238ee5f873450164903cb371d688f7e
|
File details
Details for the file django_perimeter-0.18.1-py3-none-any.whl.
File metadata
- Download URL: django_perimeter-0.18.1-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da38bdcb92a15cff056d7f905f285d9e864a469c59a6ebd5db3655185060a7be
|
|
| MD5 |
de00854983bfcd09d88e137cb0765f86
|
|
| BLAKE2b-256 |
554d8e44e5d4a64366abf6754ac3e6ea061c6ff7feaccb5d1d20675c4d587ee4
|