Skip to main content

Utilities for DBCA Django apps

Project description

Overview

DBCA Django utility classes and functions.

Requirements

  • Python 3.12 or later
  • Django 5.2 or later

Development

Dependencies for this project are managed using uv. With uv installed, change into the project directory and run:

uv sync

Activate the virtualenv like so:

source .venv/bin/activate

Run unit tests using pytest (or tox, to test against multiple Python versions):

pytest -sv
tox -v

Releases

Tagged releases are built and pushed to PyPI automatically using a GitHub workflow in the project. Update the project version in pyproject.toml and tag the required commit with the same value to trigger a release. Packages can also be built and uploaded manually to PyPI using uv, if required:

uv build
uv publish

Installation

  1. Install via uv/pip/etc.: pip install dbca-utils

SSO Login Middleware

This will automatically login and create users using headers from an upstream proxy (REMOTE_USER and some others). The logout view will redirect to a separate logout page which clears the SSO session.

Usage

Add dbca_utils.middleware.SSOLoginMiddleware to settings.MIDDLEWARE (after both of django.contrib.sessions.middleware.SessionMiddleware and django.contrib.auth.middleware.AuthenticationMiddleware. Ensure that AUTHENTICATION_BACKENDS contains django.contrib.auth.backends.ModelBackend, as this middleware depends on it for retrieving the logged in user for a session. Note that the middleware will still work without it, but will reauthenticate the session on every request, and request.user.is_authenticated won't work properly/will be false.

Example:

MIDDLEWARE = [
    ...,
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'dbca_utils.middleware.SSOLoginMiddleware'
    ...,
]

Audit model mixin

AuditMixin is an extension of Django.db.model.Model that adds a number of additional fields:

  • creator - FK to AUTH_USER_MODEL, used to record the object creator
  • modifier - FK to AUTH_USER_MODEL, used to record who the object was last modified by
  • created - a timestamp that is set on initial object save
  • modified - an auto-updating timestamp (on each object save)

Healthcheck feature

Requirements

  • Django 5.2 or later
  • Declared the default cache and also the cache is shared by all pod instances
  • The image has the command 'ps' which is used to collect the cpu,memory and persistent volume usage data.

Usage

  • Install the app 'dbca_utils' in INSTALLED_APPS
  • Service Configuration
    • HEALTHCHECK_ENABLED: Optional. enable/disable the healthcheck service. default is 'true'
    • CACHE_PREFIX: Optional. used as the prefix WORKLOAD_VOLUMESof WORKLOAD_VOLUMESthe cache key. default is ''
    • PORT: Optional. The listening port of the web application. default is '8080'
    • WORKLOADS: Optional. Used if the web app has a fixed replicas.
    • WORKLOAD_DEPLOYMENT: Optional. the workload is deployment if it is true; otherwise it is statefulset. default is 'true'
    • WORKLOAD_FAILED_THRESHOLD: Optional. The number of continuous failed times to treat a pod is offline.
    • WORKLOAD_VOLUMES: Optional. can be 'disabled', 'false','automatic' or "," separated volume mounted point. default is "automatic".
      • disabled|false: Don't harvest volume usage data
      • automatic: Detect the persistent volume automatically.
      • "," separated volume mounted points: the volume list
    • HEALTHCHECK_SYSTEMDATA_ENABLED: Enable system resource data
    • HEALTHCHECK_PROCESSDATA_ENABLED: Enable process resource data
  • Nginx Configuration.
    • Add a location 'location /healthcheck/' and configure it to use basic auth in nginx.
  • Access the url : https://xxx.dbca.wa.gov.au/healthcheck/healthdata to get the health json data

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

dbca_utils-3.0.8.tar.gz (22.8 kB view details)

Uploaded Source

Built Distribution

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

dbca_utils-3.0.8-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

Details for the file dbca_utils-3.0.8.tar.gz.

File metadata

  • Download URL: dbca_utils-3.0.8.tar.gz
  • Upload date:
  • Size: 22.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for dbca_utils-3.0.8.tar.gz
Algorithm Hash digest
SHA256 5b2b6ec97aca164f621a8d84ee7a82553349a06c87321515a86c22dc7eb40fb3
MD5 ea31e5f9f809803b1777e8d0215f2403
BLAKE2b-256 9539420f77037c10b1115eab50079bcd4e5717d3f6711f55c4fde1fb6b723574

See more details on using hashes here.

File details

Details for the file dbca_utils-3.0.8-py3-none-any.whl.

File metadata

  • Download URL: dbca_utils-3.0.8-py3-none-any.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for dbca_utils-3.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 217a4721ad057f27fe51148b157a248b2598b7720d26a0912163d1bb88ef9090
MD5 12aa21005c49844f28403764f24a6137
BLAKE2b-256 a88d99f8343848359dc17bcf3aca8d22b2bf12ec7d4f9197ee98e2cbc92c5cae

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