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()
There are also more specialised base classes in birdbath.processors
that can help you write cleaner custom processors. For example, the above example could be written using the BaseModelDeleter
class instead:
from birdbath.processors import BaseModelDeleter
class DeleteAllMyUsersProcessor(BaseModelDeleter):
model = User
If you only need to delete a subset of users, you can override the get_queryset()
method, like so:
from birdbath.processors import BaseModelDeleter
class DeleteNonStaffUsersProcessor(BaseModelDeleter):
model = User
def get_queryset(self):
return super().get_queryset().filter(is_staff=False)
If you're looking to 'anonymise' rather than delete objects, you will likely find the BaseModelAnonymiser
class useful. You just need to indicate the fields that should be 'anonymised' or 'cleared', and the class will do the rest. For example:
from birdbath.processors import BaseModelAnonymiser
class UserAnonymiser(BaseModelAnonymiser):
model = User
# generate random replacement values for these fields
anoymise_fields = ["first_name", "last_name", "email", "password"]
class CustomerProfileAnonymiser(BaseModelAnonymiser):
model = CustomerProfile
# generate random replacement values for these fields
anoymise_fields = ["date_of_birth"]
# set these fields to ``None`` (if supported), or a blank string
clear_fields = ["email_consent", "sms_consent", "phone_consent", "organisation"]
The class will generate:
- Valid but non-existent email addresses for fields using
django.db.models.EmailField
. - Random choice selections for any field with
choices
defined at the field level. - Historic dates for fields using
django.db.models.DateField
ordjango.db.models.DateTimeField
. - Random numbers for fields using
django.db.models.IntegerField
(or one of it's subclasses),django.db.models.FloatField
ordjango.db.models.DecimalField
. - Real-looking first names for fields with one of the following names:
"first_name"
,"forename"
,"given_name"
,"middle_name"
. - Real-looking last names for fields with one of the following names:
"last_name"
,"surname"
,"family_name"
. - Random strings for any other fields using
django.db.models.CharField
,django.db.models.TextField
or a subclass of those.
If you have fields with custom validation requirements, or would simply like to generate more realistic replacement values, you can add 'generate' methods to your subclass to achieve this. BaseModelAnonymiser
will automatically look for method matching the format "generate_{field_name}"
when anoymising field values. For example, the following processor will generate random values for "account_holder" and "account_number" fields:
from birdbath.processors import BaseModelAnonymiser
class DirectDebitDeclarationAnonymiser(BaseModelAnonymiser):
model = DirectDebitDeclaration
anonymise_fields = ["account_holder", "account_number"]
def generate_account_holder(self, field, obj):
# Return a value to replace 'account_holder' field values
# `field` is the field instance from the model
# `obj` is the model instance being updated
return self.faker.name()
def generate_account_number(self, field, obj):
# Return a value to replace 'account_number' field values
# `field` is the field instance from the model
# `obj` is the model instance being updated
return self.faker.iban()
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.3.tar.gz
.
File metadata
- Download URL: django-birdbath-0.0.3.tar.gz
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9daedbdf66db17727859cbd365a6792104f16e9b9b30149ef9697734f16e145f |
|
MD5 | 3429071b1acf94eaf9c0c3fad5e1ec46 |
|
BLAKE2b-256 | f47edb284e0751dd35ea5f65a21e6df6e6e151c9dc1fc58b2b247e060773d2b9 |
File details
Details for the file django_birdbath-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: django_birdbath-0.0.3-py3-none-any.whl
- Upload date:
- Size: 11.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 594acd7c6f1374665679a33c792357ccd6f437b03c1de5ecdde4b0df6f835bbc |
|
MD5 | 9474237088c8325d3b56c0dae9217b3d |
|
BLAKE2b-256 | dff94c500b830f602dafcbc0da6425f30f9ecda5942ed85672df4478688355ef |