Skip to main content

Django middleware that provides a maintenance countdown warning message.

Project description

Build Status Updates Code style: black

Python Versions Django Versions

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:

  • CACHES
  • TIME_ZONE
  • USE_TZ = True
  • "letsmaintain" in INSTALLED_APPS
  • "letsmaintain.middleware.MaintenanceMiddleware" in MIDDLEWARE after "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

django_letsmaintain-1.0.9.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_letsmaintain-1.0.9-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file django_letsmaintain-1.0.9.tar.gz.

File metadata

  • Download URL: django_letsmaintain-1.0.9.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.0 CPython/3.13.7 Linux/6.1.0-39-amd64

File hashes

Hashes for django_letsmaintain-1.0.9.tar.gz
Algorithm Hash digest
SHA256 efd51339630d673419286efe5df9a47555835925cfb75a9ea2ba00cbe480a8c1
MD5 8bbc0a20f50f7bd54b006d3a2843264e
BLAKE2b-256 e048d687939b1c633ec22e916a67b81320a6cf5c023a28066e2a0eb31945eada

See more details on using hashes here.

File details

Details for the file django_letsmaintain-1.0.9-py3-none-any.whl.

File metadata

  • Download URL: django_letsmaintain-1.0.9-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.0 CPython/3.13.7 Linux/6.1.0-39-amd64

File hashes

Hashes for django_letsmaintain-1.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 93d39e99ab36885cabce5c4f7d562bdbb8721f9130bcf924a7520dc9c4da7ac5
MD5 b41ceec18a908c569b62e846517ef375
BLAKE2b-256 1a9fed15f78588f4d61f7a8ca4de784474d71ac82ec9a79171cc7279f1c39541

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page