Django middleware that provides a maintenance countdown warning message.
Project description
django-letsmaintain
Django middleware that provides a maintenance countdown warning message.
This middleware searches the cache for the key maintenance_alert. Its contents are expected to be a string representing an aware datetime in isoformat:
from datetime import datetime, timezone
the_time = datetime.now(timezone.utc).isoformat(timespec='minutes')
print(the_time)
Example result: '2020-06-24T12:00+00:00'
-
The middleware will raise a warning in all pages with a seconds countdown.
-
The last 60 seconds, the warning message will become an error message.
A bash script can invoke the relevant cache key:
#!/bin/bash
FIVE_MINUTES_LATER=$(date --date "$(date +%Y-%m-%dT%H:%M:%S%:z) +5 min" --iso-8601=minutes)
echo "from django.core.cache import cache; cache.set(\"maintenance_alert\", \"$FIVE_MINUTES_LATER\")" \
| ./manage.py shell
sleep 5m
# Redirect to maintenance.html
# nginx example: https://lincolnloop.com/blog/pro-tip-redirecting-custom-nginx-maintenance-page/
# <perform maintenance>
# Cancel redirect
Required Settings
The required settings for the middleware to operate are:
CACHESTIME_ZONEUSE_TZ = True- "letsmaintain" in
INSTALLED_APPS - "letsmaintain.middleware.MaintenanceMiddleware" in
MIDDLEWAREafter "MessageMiddleware"
Tests
To run the tests:
- Install tox
- Define:
TOX_DB_NAME,TOX_DB_USER,TOX_DB_PASSWD
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
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_letsmaintain-1.0.6.tar.gz.
File metadata
- Download URL: django_letsmaintain-1.0.6.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.12.8 Linux/6.1.0-28-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
293197f72c81d49fe485d78bf5e6bcbd37bd62af441b0aace7170d34cf8225e4
|
|
| MD5 |
6e3ccd74163adb47e04af8d796507f3a
|
|
| BLAKE2b-256 |
d84f809286b27ccab3177b2aa451cb95d1a5b3d3361dcaa963f62f3aba3a978a
|
File details
Details for the file django_letsmaintain-1.0.6-py3-none-any.whl.
File metadata
- Download URL: django_letsmaintain-1.0.6-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.12.8 Linux/6.1.0-28-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1005ffd5f507d88b5fffe4a303cd6e719cbc2e9279c509ab9ab87e89800002dd
|
|
| MD5 |
14c1e2d5602845fb5f480c29064a54b4
|
|
| BLAKE2b-256 |
982565485be7c8d5651a2e34594a8d38e300578cfa726f8c4cdb606fa309e11e
|