Skip to main content

Django Time-Token File Storage

Project description

This is a simple extension to Django’s FileSystemStorage that adds a URL parameter carrying a shared token, which is only valid for a defined period of time.

Functionality

This is a drop-in replacement for the Django FileSystemStorage, usable if media files are served by Django itself. It does currently not work if media files are served from an independent web server.

The storage and its accompanying view do the following:

  • When a URL to a storage file is generated, a HMAC-based token is generated

  • The token and the timestamp when it was generated are appended as request parameters to the URL

  • Upon retrieval of the file through the accompanying view, the requested file name and the passed timestamp are used to recalculate the HMAC-based token

  • Only if the tokens match, and a configured timeout has not passed, is the file served

The HMAC-based token ensures that the token is invalidated when:

  • The filename changes

  • The timestamp changes

  • The mtime of the file changes

  • The SECRET_KEY changes

The HMAC is salted with the SECRET_KEY.

Installation

To add django-titofisto to a project, first add it as dependency to your project, e.g. using poetry:

$ poetry add django-titofisto

django-titofisto will use the base FileSystemStorage for almost everything, including determining the MEDIA_ROOT. It merely adds a token as URL parameter to whatever the base FileSystemStorage.url() method returns.

Add the following to your settings:

DEFAULT_FILE_STORAGE = "titofisto.TitofistoStorage"
TITOFISTO_TIMEOUT = 3600  # optional, this is the default
TITOFISTO_PARAM = "titofisto_token"  # optional, this is the default

Add the following to your URL config:

from django.conf import settings
from django.urls import include, path

urlpatterns += [
    path(settings.MEDIA_URL.removeprefix("/"), include("titofisto.urls")),
]

Django will start serving media files under the configured MEDIA_URL.

Provide public media files

Sometimes, there might be media files, for example favicons, you want to be accessible without any authentication. Per default, django-titofisto will serve all files stored in the directory public without a token. You can disable or configure this behavior using these settings:

TITOFISTO_USE_PUBLIC_NAMESPACE = True # optional, this is the default TITOFISTO_PUBLIC_NAMESPACE = “public/” # optional, this is the default

Credits

django-titofisto was developed for the AlekSIS school information system by its team.

Copyright © 2021 Dominik George <dominik.george@teckids.org> Copyright © 2021 Jonathan Weth <dev@jonathanweth.de>

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-titofisto-0.2.1.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

django_titofisto-0.2.1-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

Details for the file django-titofisto-0.2.1.tar.gz.

File metadata

  • Download URL: django-titofisto-0.2.1.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.9.9 Linux/5.15.0-2-amd64

File hashes

Hashes for django-titofisto-0.2.1.tar.gz
Algorithm Hash digest
SHA256 02429073614bdb4aa29cca099e72e421a7f03a8a5f4e7bb420e75cfee05ea4b9
MD5 c2cdb9fdf15630fbda82b860529d88f9
BLAKE2b-256 e811d8da72c2220d4273d5dbddbace72926a01eb0f7b07862221f8fdcde378cc

See more details on using hashes here.

File details

Details for the file django_titofisto-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: django_titofisto-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.7 CPython/3.9.9 Linux/5.15.0-2-amd64

File hashes

Hashes for django_titofisto-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3c1c79568e70b88d381d5b8cdd19b2c67e79f981310066241655a612b80a3619
MD5 584f01130fea865e09350c1dcd9888d3
BLAKE2b-256 fd85f31296c78ffc96ead94d826b8ebcfa30eb75e427746c94dd8aa2ac002735

See more details on using hashes here.

Supported by

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