0 purchases
ageverificationpsehack 0.2.2
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.