Provides an object permission system based on field values (eg: object.owner == user)
Project description
django-field-object-permissions is an object permission system based on field values of the object. (eg: object.owner == user)
Install
To install just run:
pip install django-field-object-permissions
Configuration
Put fieldobjectpermissions to your INSTALLED_APPS of the settings module:
INSTALLED_APPS = ( ... 'fieldobjectpermissions', )
2. Replace the default authentication backend (fieldobjectpermissions is based on it):
AUTHENTICATION_BACKENDS = ( # django.contrib.auth.backends.ModelBackend, # Default fieldobjectpermissions.backends.FieldObjectPermissionsBackend, )
These new values are optional, defaults are shown below:
FIELD_OBJECT_PERMISSIONS = { 'OWNER_FIELDS': ('owner',), 'GROUP_FIELDS': ('group',), 'OWNER_ACTIONS': ('change', 'delete'), 'GROUP_ACTIONS': ('change', 'delete'), }
4. Run python manage.py migrate as there are post-migration triggers to create the extra permissions required.
Usage
You can now assign permissions like owner_change_foo to allow only the user who matches the value of the owner field to change an object (or the superuser, of course).
Or the permission group_delete_foo to all allow any user who is a member of a group listed in the group field of an object to delete it (or the superuser, you know this).
These permissions are created in a post-migrate signal handler, and will only be created for models with have the required field(s).
By specifying multiple fields for OWNER_FIELDS or GROUP_FIELDS only one of the listed fields needs to exist for permission creation. And only one needs to match for permission to be granted by the auth backend.
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
Hashes for django-field-object-permissions-0.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e28300dc7031428466f497f0ef122d81514f95d55632a6734b1d02ab02224b57 |
|
MD5 | ea62d691035e4548a474e070c7b907d4 |
|
BLAKE2b-256 | cb00b79542b0641708e55cf837f70f6b461d1879fc95887afa58ad97f674dcb8 |