Skip to main content

A Django app for managing site-wide variables.

Project description

Django SiteVars

A Django app for managing site-wide variables. Ever have a need to store some small value related to a site? An analytics ID perhaps, or a copyright statement. SiteVars provides a simple and efficient way to store those values in your database and edit them through the Django admin interface.

Installation

To install the package, use pip:

pip install django-sitevars

Then, configure and use it according to the usage scenarios below.

Using with django.contrib.sites

If you have django.contrib.sites in your installed apps, SiteVars will be associated with the sites.Site model.

Add sitevars to INSTALLED_APPS in your Django settings. Optionally, you can configure the provided context processor to add your site variables into every template context.

Note: If you use the django.contrib.sites app, sitevars must be added to INSTALLED_APPS AFTER django.contrib.sites in order to augment the sites admin.

INSTALLED_APPS = [
    ...
    'django.contrib.sites',  # must come first
    'sitevars',  # Must come after contrib.sites for admin to work
    ...
]
TEMPLATES=[
    {
        "BACKEND": "django.template.backends.django.DjangoTemplates",
        "DIRS": [],
        "APP_DIRS": True,
        "OPTIONS": {
            "context_processors": [
                "django.template.context_processors.request",  # strongly advised
                "sitevars.context_processors.inject_sitevars",  # optional, but useful
            ]
        },
    }
]
# highly recommended to add the current site middleware
# MIDDLEWARE.append("django.contrib.sites.middleware.CurrentSiteMiddleware")

In your views, you can access site variables via the accessor on the site object. Use the get_value method to retrieve the value by name. You can also ask get_value to transform the string value returned from the database by passing a function in the asa argument.

import json
from django.contrib.sites.shortcuts import get_current_site

def my_view(request):
  site = get_current_site(request)
  name = site.vars.get_value("name", default="world")
  # Note that default must be a string, because it will be passed to your asa function!
  number = site.vars.get_value("number", default="0", asa=int)
  options_dict = site.vars.get_value("options", default="{}", asa=json.loads)
  ...

Using with an alternate Site model

If you use a Site model other than the django.contrib.sites model, you will need to add some settings to tell sitevars what model to target in its foreign keys, and how to get the correct Site for the current request.

The SITE_MODEL setting should be a string identifying the model in the usual Django fashion, "appname.Model".

WARNING: As with a custom AUTH_USER_MODEL, if you're going to use a custom SITE_MODEL in your project, be sure to set SITE_MODEL BEFORE running initial migrations for the sitevars app. Otherwise, you will have a mess to untangle.

NOTE: Apps that ship with Django do not support custom SITE_MODEL, so don't try to use a custom SITE_MODEL with django.contrib.flatpages or django.contrib.redirects, or any third party app that depends on the Django sites framework.

Determining the current site

The recommended way to make sitevars aware of the current site is to use a Current Site Middleware that sets request.site as django.contrib.sites.middleware.CurrentSiteMiddleware does. sitevars will always use this when available.

Without a middleware, you will need to tell sitevars how to determine the current site.

If the site model has a class method that will return the correct site given the request, set CURRENT_SITE_METHOD="method_name".

If there's no such method on the class, then you must provide an importable function that takes a request and returns a site object: CURRENT_SITE_FUNCTION="myapp.utils.get_current_site".

In the absence of a CURRENT_SITE_METHOD or CURRENT_SITE_FUNCTION, sitevars will fall back to trying Site.objects.get_current(request) (which is how it works for Django's sites framework.)

For example, the following settings should work for a Wagtail project.

SITE_MODEL = "wagtailcore.Site"
CURRENT_SITE_METHOD = "find_for_request"
# sitevars will import wagtailcore.Site and call Site.find_for_request(request)

For a home-grown custom site model, something like this should work:

# In settings.py
SITE_MODEL = "my_sites_app.Site"
CURRENT_SITE_FUNCTION = "my_sites_app.utils.site_for_request"

# In my_sites_app.utils.py
def site_for_request(request):
    # Your own matching logic here
    return Site.objects.matching_domain(request.get_host())

Using without a Site model

If you don't use a sites framework because your project only serves one site, no worries! django-sitevars will work fine for a single site. In this case, sitevars creates a placeholder site object for its foreign key, but you don't need to know about it. Just call SiteVar.objects.get_value("name") and sitevars will do the right thing.

Using in templates

In templates, load the sitevars library to use the included template tag.

{% load sitevars %} Hello, {% sitevar "name" default="world" %}!

Or, if you are using the sitevars.contet_processors.inject_sitevars context processor, the variable will already be in the template context.

{% load sitevars %} Hello, {{ name|default:"world" }}!

NOTE: It's strongly advised to use the django.template.context_processors.request context processor to ensure sitevars can look up the current site.

Disabling the Cache

To reduce load on the database, sitevars maintains a cache of all variables per site (using the default cache configured in your Django project). If you prefer not to use the cache for some reason, you can disable it in your settings file.

SITEVARS_USE_CACHE = False

Development

I recommend using Astral's uv to manage your local development environment. This project uses pre-commit. After installing uv, clone this repository, then:

uv sync
uv run pre-commit install

Tests are run using a test script and/or tox.

uv run python -Wall runtests.py  # unit tests
tox run  # full test matrix
tox p  # Run full test matrix in parallel (much faster)

Note that the tests directory contains multiple settings files for testing the various supported project configurations. The test script will ask which settings file to use, or you can supply one on the command line.

uv run python -Wall runtests.py <contrib_sites | alt_sites | no_sites>

If you need to generate migrations for the FakeSite model in the tests app for some reason, be sure to use the alt_sites settings.

DJANGO_SETTINGS_MODULE=tests.alt_sites uv run python ./manage.py makemigrations

License

This project is licensed under the Apache License 2.0. See the LICENSE file for details.

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_sitevars-1.1.1.tar.gz (67.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_sitevars-1.1.1-py3-none-any.whl (16.5 kB view details)

Uploaded Python 3

File details

Details for the file django_sitevars-1.1.1.tar.gz.

File metadata

  • Download URL: django_sitevars-1.1.1.tar.gz
  • Upload date:
  • Size: 67.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for django_sitevars-1.1.1.tar.gz
Algorithm Hash digest
SHA256 507a39f0420e6ed51d6512691c1074e6f978b68f34dfde6efbd295f424c62a28
MD5 d380b75f22e51648764ec2f4a6816d34
BLAKE2b-256 f3c761b55976a50a9b831b1a15ef6251c6758410d8d55c181a0967b49c35909e

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_sitevars-1.1.1.tar.gz:

Publisher: release.yml on veselosky/django-sitevars

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_sitevars-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_sitevars-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b41984f2aef2b916373c67ed39e70fe173031eca30e8e620257ca5e436b8ef26
MD5 b8a04f7d8190f4b93ef6cdf611799dba
BLAKE2b-256 e253412546788b3d16138b00b625b813cf2f483e0f2e23392f3db347c609d093

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_sitevars-1.1.1-py3-none-any.whl:

Publisher: release.yml on veselosky/django-sitevars

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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