No project description provided
Project description
Django Birdbath
A simple tool for giving Django database data a good wash. Anonymise user data, delete stuff you don't need in your development environment, or whatever it is you need to do.
Usage
- Add
birdbath
to yourINSTALLED_APPS
- Set
BIRDBATH_CHECKS
andBIRDBATH_PROCESSORS
as appropriate in your settings file (see Configuration below). - Run
./manage.py run_birdbath
to trigger processors.
Important! The default processors are destructive and will anonymise User emails and passwords. Do not run in production!
By default, Birdbath enables a Django system check which will trigger an error if a Birdbath cleanup has not been triggered on the current environment.
This is intended to give developers a hint that they need to anonymise/cleanup their data before running commands such as runserver
.
The suggested approach is to set BIRDBATH_REQUIRED
to False
in production environments using an environment variable.
Checks can be skipped using the --skip-checks
flag on run_birdbath
.
Configuration
Common Settings
BIRDBATH_REQUIRED
(default:True
) - if True, a Django system check will throw an error if anonymisation has not been executed. Set toFalse
in your production environments.BIRDBATH_CHECKS
- a list of paths to 'Check' classes to be executed before processors. If any of these returns False, the processors will refuse to run.BIRDBATH_PROCESSORS
- a list of paths to 'Processor' classes to be executed to clean data.
Processor Specific Settings
BIRDBATH_USER_ANONYMISER_EXCLUDE_EMAIL_RE
(default:example\.com$
) - A regex pattern which will be used to exclude users that match a certain email address when anonymising.BIRDBATH_USER_ANONYMISER_EXCLUDE_SUPERUSERS
(default:True
) - If True, users withis_superuser
set to True will be excluded from anonymisation.
Implementing your Own
Your site will probably have some of your own check/processor needs.
Checks
Custom checks can be implemented by subclassing birdbath.checks.BaseCheck
and implementing the check
method:
from birdbath.checks import BaseCheck
class IsDirtyCheck(BaseCheck):
def check(self):
return os.environ.get("IS_DIRTY")
The check
method should either return True
if the checks should continue, or False
to stop checking and prevent processors from running.
Processors
Custom processors can be implemented by subclassing birdbath.processors.BaseProcessor
and implementing the run
method:
from birdbath.processors import BaseProcessor
class DeleteAllMyUsersProcessor(BaseProcessor):
def run(self):
User.objects.all().delete()
Check/Processor Reference
Checks
checks.contrib.heroku.HerokuNotProductionCheck
- fails if theHEROKU_APP_NAME
environment variable is not set, or if it set and includes the wordproduction
.checks.contrib.heroku.HerokuAnonymisationAllowedCheck
- fails if theALLOWS_ANONYMISATION
environment variable does not match the name of the application.
Processors
processors.users.UserEmailAnonymiser
- replaces user email addresses with randomised addressesprocessors.users.UserPasswordAnonymiser
- replaces user passwords with random UUIDsprocessors.contrib.wagtail.SearchQueryCleaner
- removes the full search query historyprocessors.contrib.wagtail.FormSubmissionCleaner
- removes all form submissions
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-birdbath-0.0.2.tar.gz
.
File metadata
- Download URL: django-birdbath-0.0.2.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e20589fcd65bbfa7e0c520374abd4da539d438022e2ba9a4b6c6f8610218d02 |
|
MD5 | 8e7d7a31cacc429359066888cbbdb02e |
|
BLAKE2b-256 | de5690c365e87538462d7d9518eab7ab64b8f8d0a3bc5816f877e706ee46ba31 |
File details
Details for the file django_birdbath-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: django_birdbath-0.0.2-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 525e84e0bee6acdc2905ac0ca16e35c70c6b59159b398aaafafbe88f2ad5fe4a |
|
MD5 | 15f3a8148287e2109270ad5dae60f663 |
|
BLAKE2b-256 | 6acf5cecc2ae7159921ec58f58a0655a4f5fb125a98eea9191790cbf8d233b14 |