Skip to main content

Django Group-based roles

Project description

Django Group Role

Linters/Tests PyPI versions PyPI pyversions Django version

django-group-role aims to simplify "role based access" in django-based projects and applications. This app is build on top on contrib.auth and guardian apps.

django-group-role aims to enhance existing Group and Permission models of contrib.auth app to configure global-level access rules.

Install

First add 'django_group_role' to INSTALLED_APPS after contrib.auth and guardian and then configure the "role-definition" module:

INSTALLED_APPS = [
    ...
    "django.contrib.auth",
    ...
    "guardian",
    "django_group_role",
    ...
]

# every used role must be registered in this module
ROLES_MODULE = "myproject.roles"

Basic Setup

"Roles" are classes derived from django_group_role.roles.Role and should declare the following two attributes:

  • name: the name of the group which will be bound to this role (mandatory)
  • permissions: specify which permissions are granted to this role, it may be indicated in one of the following form:
    • a list of available permission which will be bound to this role, they must be provided using the notation '<appname>.<codename>'
    • a dict which keys can be app-names or <appname.model> (see example below)
from django_group_role import Role


class BasicRole(Role):
    name = "Base"
    abstract = True
    permissions = ["auth.view_user", "auth.view_group"]


class ExpandedRole(BasicRole):
    name = "Expanded"
    permissions = ["auth.add_user", "auth.change_user"]


class DerivedRole(BasicRole):
    name = "Derived"
    permissions = {
        'auth': {
            'user': ['view_user', 'add_user', 'delete_user']
        },
        'auth.group': ['view_group'],
    }

NOTE: to do not have the command creating a "base" group set it as abstract = True

Role inheritance

Roles can derive one-another like normal python classes, when a roles extend an other one it is not required to provide the permissions list. When extending an existing role its permissions gets merged with those defined in the base class.

NOTE: ATM multi-role inheritance is not tested, it may work but it is not guaranteed.

Database alignment

Since Role classes are not bound to database Group they must be synchronized in order to work as expected. To perform this the management command populate_roles is available. This command takes every configured role defined in ROLES_MODULE and set-up its permissions on the database, also creating the appropriate group if it does not exists yet.

See command help for further information regarding its arguments.

Signals

Upon setup each role fires two signals:

  • pre_role_setup: before the setup process starts, providing role and clear kwargs
  • post_role_setup: after the setup process ends, providing role kwargs

Use in unittest (TestCase)

For django style TestCase based testing is it possible to use the RoleEnabledTestMixin. This overrides the setUpTestData to load and create role-related data before running tests.

NOTE: ATM it is not guaranteed that loading different roles in each test may not collide, it could be released in the future.


Credits

This work was in part inspired by django-role-permissions.

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

django_group_role-0.7.4.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_group_role-0.7.4-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

Details for the file django_group_role-0.7.4.tar.gz.

File metadata

  • Download URL: django_group_role-0.7.4.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for django_group_role-0.7.4.tar.gz
Algorithm Hash digest
SHA256 864b84b534a1405eb85ace72d4ca40d8f21cc668b8692cba966add5507aeab91
MD5 082f03d16cfaf66863b3d8dfc052f579
BLAKE2b-256 2b2a8ac38bed34481e6cc835f67f5d411350e15e89c3bbef6ab599f505600d6b

See more details on using hashes here.

File details

Details for the file django_group_role-0.7.4-py3-none-any.whl.

File metadata

File hashes

Hashes for django_group_role-0.7.4-py3-none-any.whl
Algorithm Hash digest
SHA256 301189011b80541c1b8c710dfb7cfb921a83f8e80a9278bf84e8ef4ad1ba3e03
MD5 31f8c9a770be68fdf550817c5a93d68f
BLAKE2b-256 548d805a045c9933012c619410ae4f61a94c692b38937fda729cfc40b083cda5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page