Skip to main content

A Django middleware for verifying the user's age before allowing them access to resources

Project description

Important. This project has not been finished. It does not have the intended integration with https://github.com/zk-passport/openpassport/tree/main/sdk due to some errors encountered when creating the browser bundle of the said sdk.

A Django middleware for verifying the user's age before allowing them access to a resource. Developed for the purposes of the PSE Hackathon held in Sep 2024.

The user is expected to own an Android or iOS device with an NFC reader and a compatible passport.

Installation

  • pip install age_verification_psehack

In your Django project's settings.py:

Add the following line to the bottom of the MIDDLEWARE section:

  • "age_verification_psehack.middleware.AgeVerificationMiddleware"

Add the following line to the bottom of the INSTALLED_APPS section:

  • "age_verification_psehack.apps.AgeVerificationPSEHackConfig"

Add a new AGE_VERIFICATION_PATHS setting containing all paths requiring age verification:

  • AGE_VERIFICATION_PATHS = ['/protected_path1', '/protected/path2']

Usually all Django projects are already configured to serve static files. If yours is not configured, consult https://docs.djangoproject.com/en/4.2/howto/static-files/

Navigate to the root of your Django project and run:

  • python manage.py makemigrations age_verification_psehack
  • python manage.py migrate
  • python manage.py collectstatic

For developers only: testing local changes

In case if you need to make changes and test them, in the root of this repo run

  • python -m pip install build
  • python -m build

In the root of your Django project create a file requirements.txt with the following:

-e path/to/the/root/of/this/repo

Then run:

python -m pip install -r requirements.txt

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

age_verification_psehack-0.2.2.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

age_verification_psehack-0.2.2-py3-none-any.whl (6.4 kB view hashes)

Uploaded Python 3

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