Skip to main content

A package intended to aid developers in implementing authorization for Django apps.

Project description

django-woah

A package intended to aid developers in implementing authorization for Django apps.

This project is developed at Presslabs.

Installation

pip install django-woah

Then, in your settings.py, add it to the INSTALLED_APPS:

INSTALLED_APPS = [
    # [...]
    "django_woah",
]

What it can do

  • It can handle Organizations, Teams (including nesting sub-teams to some degree) and Memberships (including outside collaborators)
  • It can handle per user, as well as Organization-wide and Team-wide privileges
  • It can handle per object, as well as per model permissions
  • It can filter the resources for which a (single) actor is authorized (most of the time, with 2 DB queries), based on the defined AuthorizationSchemes, given a set of permissions to check
  • It offers some built-in support for Django REST Framework (DRF).
  • Authorization Schemes are based on Python classes. They don't strictly follow pre-existing authorization patterns, such as ABAC or (P)RBAC, but they could be used to achieve similar functionality.

For what it can not do, check the shortcomings and limitations.

How it looks

Let's say we're making an issue tracker kind of app. Then, our Issue model might look something like this:

# my_app/issue_tracker/models.py
class Issue(models.Model):
    owner = models.ForeignKey(
        Organization, on_delete=models.CASCADE, related_name="owned_issues"
    )
    author = models.ForeignKey(
        User,
        null=True,
        blank=True,
        on_delete=models.SET_NULL,
        related_name="authored_issues",
    )
    project = models.ForeignKey(
        Project, on_delete=models.CASCADE, related_name="issues"
    )
    title = models.CharField(max_length=512)
    content = models.TextField()
    state = models.CharField(max_length=16, default=IssueState.OPEN)

Now, let's define an AuthorizationScheme for our Issue model, starting with some CRUD permissions, and a permission for closing/reopening issues. We'll also add an Issue Manager role:

# my_app/issue_tracker/authorization.py
# Here you can define authorization schemes for your models

from django_woah.authorization import ModelAuthorizationScheme, PermEnum

class IssueAuthorizationScheme(ModelAuthorizationScheme):
    model = Issue

    class Perms(PermEnum):
        # The values here are up to preference. But we're going
        # to use an "issue:" prefix, to avoid collisions with other
        # model perms and roles, when storing to the database.
        ISSUE_VIEW = "issue:issue_view"
        ISSUE_CREATE = "issue:issue_create"
        ISSUE_EDIT_CONTENT = "issue:issue_edit_content"
        ISSUE_CHANGE_STATE = "issue:issue_change_state"
        ISSUE_DELETE = "issue:issue_delete"

    class Roles(PermEnum):
        ISSUE_MANAGER = "issue:manager"

We want our Issue Manager role to receive all the permissions above, so we are going to add some indirect permissions logic to our IssueAuthorizationScheme:

# my_app/issue_tracker/authorization.py
from django_woah.authorization import (
    # [...]
    IndirectPerms, ConditionalPerms, HasSameResourcePerms,
)

class IssueAuthorizationScheme(ModelAuthorizationScheme):
    # [...]

    def get_indirect_perms(self, context: Context) -> list[IndirectPerms]:
        return [
            ConditionalPerms(
                conditions=[
                    HasSameResourcePerms([self.Roles.ISSUE_MANAGER]),
                ],
                receives_perms=self.Perms.values(),
            ),
        ]

Now we might want to ensure that only members/collaborators of the organization that owns the issue may receive authorization. For that we must establish the owner_relation (field) of the Issue model, and set up an implicit condition that will represent our Membership check.

# my_app/issue_tracker/authorization.py

class IssueAuthorizationScheme(ModelAuthorizationScheme):
    # [...]
    owner_relation = "owner"  # this references the owner ForeignKey field in our Issue model 

    def get_implicit_conditions(
        self, context: Context
    ) -> list[Condition]:
        return [
            HasRootMembership(actor=context.actor),
        ]
    
    # [...]

Noticed the project field in the Issue model? It can be used to organize a bunch of issues. Let's then allow assigning permissions in a project-wide manner. To achieve this, we need to add another indirect way of obtaining permissions for Issues:

# my_app/issue_tracker/authorization.py
from django_woah.authorization import TransitiveFromRelationPerms


class IssueAuthorizationScheme(ModelAuthorizationScheme):
    # [...]

    def get_indirect_perms(self, context: Context) -> list[IndirectPerms]:
        return [
            # [...],
            # You'd need to have a ProjectAuthorizationScheme in place for
            # this to properly work, but it's out of scope for this example.
            TransitiveFromRelationPerms(
                relation="project",
            ),
        ]

What if we want to allow authors to manage their own issues a bit?

from django_woah.authorization import QCondition
# [...]

    def get_indirect_perms(self, context: Context) -> list[IndirectPerms]:
        return [
            # [...],
            ConditionalPerms(
                conditions=[
                    # The implicit membership condition we defined above,
                    # will still apply, so if the author were to lose
                    # membership, this condition will not apply anymore.
                    QCondition(Q(author=context.actor)),
                ],
                receives_perms=[
                  self.Perms.ISSUE_VIEW,
                  self.Perms.ISSUE_EDIT_CONTENT,
                  self.Perms.ISSUE_CHANGE_STATE,
                ],
            ),
        ]

To see more code in action you can check the examples, or read about how it all works.

How it all works

Django models

  • UserGroups represents, as the name implies, a group of users; for convenience these can be used to represent a single user, a Team, or the entirety of members/collaborators of an organization/account.
  • Memberships are used to represent a Django User's membership into the aforementioned UserGroups.
  • AssignedPerms represent the direct relation between a UserGroup (actors), a Perm/Role and a resource (usually a Django Model instance or class).

Authorization classes

  • AuthorizationSchemes define what actors are allowed to do, and under what Conditions.
    • They contain Permissions definitions; Roles can be defined separately, but they are permissions too.
    • Users can dynamically be given additional Perms based on Conditions.
    • Additionally, implicit Conditions may be applied at the AuthorizationScheme level, including to the already directly AssignedPerms.
  • An AuthorizationSolver glues together the user-defined AuthorizationSchemes. It's responsible for enforcing authorization.
  • A Context consists mostly of an actor, permissions and a resource, and an optional extra field. It acts both as a query and state, and it's passed to the AuthorizationSolver.
  • Conditions are usually evaluated by their resources_q method, which returns a Django Q that matches the resources (filtering out the ones the actor is not authorized for).
    • They may optionally implement an assigned_perms_q method to prefetch any AssignedPerms from the database that might be used in the resources_q method.
    • In the current version, there is also an is_authorized_for_unsaved_resource method, that is used for as you might have guessed, resources that have not yet been saved to the database.

Performance

  • Although proper benchmarks haven't been conducted, performance should be decent:
    • Most resources authorization checks can be done with 2 queries: one to fetch AssignedPerms, and one to filter the resources on which the actor is authorized to perform, assuming the actor is prefetched and doesn't count.
    • Fetching what actors are authorized on a resource require at least 3 queries: one to fetch AssignedPerms, Memberships and finally the Actors.

Current status and future plans

  • The library has been used in production at Presslabs since ~2024.04 (v0.1.3), with most, if not all, of its functionality tested in production and hundreds of external CI tests.
  • This project adheres to Semantic Versioning. That means until version 1.0, breaking changes are to be expected from one version to another, although they will be documented in the changelog.
  • There is a good chance for pre-1.0 versions to be maintained for a while, in terms of compatibility with newer Django and Python versions, as well as critical bugfixes. You might have to provide a pull request yourself though, but we'll, at the least, review it and hopefully ship it in a maintenance release.
  • The abstractions around how Conditions are composed and relate to AuthorizationSchemes/Solver could've been more inspired (see Shortcomings and Limitations). Therefore, a major rework could happen before the 1.0 release, but chances are it might only materialize after that release, as the current API is usable enough.
  • Some Docs would be nice.

Shortcomings and Limitations

Important ones

  • The models and logic currently work with a single owner type relation, pointing to the Django AUTH_USER_MODEL. This implies that your Organizations must share the same model with your Users (which we believe simplifies things for most cases). Account could be your model name to represent both Users and Organizations. While it should be possible to work around this assumption, everything is set up to work this way out of the box.
  • It's not trivial to define and store new permissions/roles in the DB, at least there's no out of the box support for it.

Minor ones

  • Verifying authorization for already prefetched resources, in cases where conditions can be satisfied without the need to fetch AssignedPerms, or the AssignedPerms have been prefetched as well, could be more performant. The best way of doing it now is filtering which of them the actor is authorized for, as if they weren't prefetched to begin with.
  • For some cases, prefetching AssignedPerms could be avoided, and the whole authorization interrogation could be done with a single query... but not with how the abstraction is currently built. That single query would consist of more DB joins, so it's hard to tell if a potential performance increase is left on the table or not, without actual benchmarks.
  • While this library handles most authorization rules you can practically expect to use, it probably won't handle every imaginable or weird case.
  • It's cumbersome to verify if a subset of Conditions is being met. And when enforcing authorization, it's kind of impossible to reveal the conditions that have not been met.
  • There is (currently) no planned support for the Django Admin.
  • Memberships could be made more optional in the whole design, but it's not clear if that's of any importance right now.
  • Authorization Schemes are based on Python classes, and their serialization is of no priority.

If these are dealbreakers for you or you are simply looking for something else, check the alternatives.

Contributing

  • For security related issues (think exploitable bugs), contact us at ping@presslabs.com.
  • For other type of bugs, use the issue tracker.
  • If you have questions, or want to talk about missing functionality, open a discussion.
  • You may send a pull request for bugfixing, if you think you've got it right. For anything else, if the implementation details have not already been decided, it's better to start a discussion first.
    Do take note that we're looking to implement a CLA for code contributions.
  • For anything else, just use common sense and it will probably be fine.

Alternatives

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_woah-0.3.2.tar.gz (33.9 kB view details)

Uploaded Source

Built Distribution

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

django_woah-0.3.2-py3-none-any.whl (42.9 kB view details)

Uploaded Python 3

File details

Details for the file django_woah-0.3.2.tar.gz.

File metadata

  • Download URL: django_woah-0.3.2.tar.gz
  • Upload date:
  • Size: 33.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.13.1 Linux/6.12.12-2-MANJARO

File hashes

Hashes for django_woah-0.3.2.tar.gz
Algorithm Hash digest
SHA256 e873134ce6f3aabd5d53ebe4241820162ee429ba35b308169e7ae965d6d42a51
MD5 b62bded9cc9aa592cb23afe83d20c910
BLAKE2b-256 c10ad55e91677f5bbad2f707745684a8c12cf603ff8fd5cb9c33abe4696fc861

See more details on using hashes here.

File details

Details for the file django_woah-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: django_woah-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 42.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.13.1 Linux/6.12.12-2-MANJARO

File hashes

Hashes for django_woah-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 98bc96b4a98002f69782881ddfc1278a291a884e5f402cfbeb110523aec3bb1f
MD5 5e1db5fae4104f54207db3ab0f3cd4a5
BLAKE2b-256 2acade560bcdcb722c10d4d27c01859595e436df66fcc350a38fb96abd56f594

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