Skip to main content

Django authentication and authorization utilities

Project description

Django authentication and authorization utilities.

https://img.shields.io/pypi/v/django-auth-utils.svg https://img.shields.io/badge/source-GitHub-lightgrey.svg https://img.shields.io/github/issues/pjdelport/django-auth-utils.svg https://travis-ci.org/pjdelport/django-auth-utils.svg?branch=master https://codecov.io/github/pjdelport/django-auth-utils/coverage.svg?branch=master

Installation

pip install django-auth-utils

Supported and tested on:

  • Python: 2.7, 3.4, 3.5, PyPy

  • Django: 1.8, 1.9

Configuration

In order to use the auth_utils template tag library, add auth_utils to your INSTALLED_APPS.

Alternatively, since Django 1.9, you can add auth_utils.templatetags.auth_utils to your DjangoTemplates OPTIONS.

Usage

Permission-checking views

The ObjectPermissionRequiredMixin view combines Django’s PermissionRequiredMixin and SingleObjectMixin views, and performs the permission check against the object that was looked up.

Use it like the base classes:

from auth_utils.views import ObjectPermissionRequiredMixin


class ArticleDetail(ObjectPermissionRequiredMixin, generic.DetailView):
    model = Article
    permission_required = ['news.read_article']


class ArticleUpdate(ObjectPermissionRequiredMixin, generic.UpdateView):
    model = Article
    permission_required = ['news.change_article']

Permission-checking in templates

Load the template tag library:

{% load auth_utils %}

The perms filter allows checking object-level permissions with a convenient syntax:

{% if perm in user|perms:object %} ... {% endif %}

The object argument is optional. If omitted, the global permission is checked, similar to Django’s perms object.

Examples:

{% if 'news.read_article' in user|perms:article %}
    {{ article.text }}
{% else %}
    You do not have permission to read this article.
{% endif %}


{% if 'news.change_article' in user|perms:article %}
    <a href="...">Edit article</a>
{% endif %}

{% if 'news.delete_article' in user|perms:article %}
    <a href="...">Delete article</a>
{% endif %}

The library provides can_change and can_delete shorthands for checking Django’s default app.change_model and app.delete_model model permissions:

{% if user|can_change:article %} <a href="...">Edit</a> {% endif %}
{% if user|can_delete:article %} <a href="...">Delete</a> {% endif %}

BaseAuthorizationBackend

This base class provides all the boilerplate code necessary for a Django authentication backend to work, without performing any user authentication or permission authorization itself.

This is intended to make it easy to write custom authorization policies that only implement the backend methods they’re interested in:

from auth_utils.backends import BaseAuthorizationBackend


class ArticleEditPolicy(BaseAuthorizationBackend):
    """
    Allow authors to change and delete their own articles.
    """

    def get_user_permissions(self, user_obj, obj=None):
        is_author = isinstance(obj, Article) and article.author == user_obj
        if user_obj.is_active and is_author:
            return {'news.change_article', 'news.delete_article'}
        else:
            return set()


class GuestAccessPolicy(BaseAuthorizationBackend):
    """
    Allow anonymous users to read non-premium articles.
    """

    def get_user_permissions(self, user_obj, obj=None):
        guest_readable = isinstance(obj, Article) and not article.is_premium
        if not user_obj.is_authenticated() and guest_readable:
            return {'news.read_article'}
        else:
            return set()

Once defined, these policies can be enabled in AUTHENTICATION_BACKENDS:

AUTHENTICATION_BACKENDS = [
    'django.contrib.auth.backends.ModelBackend',

    # Custom authorization policies
    'news.auth.ArticleEditPolicy',
    'news.auth.GuestAccessPolicy',
]

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-auth-utils-0.1.tar.gz (9.9 kB view details)

Uploaded Source

Built Distributions

django_auth_utils-0.1-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

django_auth_utils-0.1-py2-none-any.whl (5.7 kB view details)

Uploaded Python 2

File details

Details for the file django-auth-utils-0.1.tar.gz.

File metadata

File hashes

Hashes for django-auth-utils-0.1.tar.gz
Algorithm Hash digest
SHA256 c9fd42554f41f69053c072635e56e0c10a2ef4648d1a4c3827bc2fcaa53dee2a
MD5 aae05da74cdf70ad98474567ff0b96aa
BLAKE2b-256 dc2148fc01cce3bbc50811fbbc890292228b17757fd2b747fc4bc9b6aaf6fd2a

See more details on using hashes here.

File details

Details for the file django_auth_utils-0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_auth_utils-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6c9531c0f4364a808ca559b45ab71a152d5fe81be0b9f6482d69fd93143c9c88
MD5 42fef9595b795e97f0973f0b43118fc3
BLAKE2b-256 3ea24bb87db1ab0c600c62c2ef97ff4a5d7988ddb8c9e3dde366e03b05adf1ac

See more details on using hashes here.

File details

Details for the file django_auth_utils-0.1-py2-none-any.whl.

File metadata

File hashes

Hashes for django_auth_utils-0.1-py2-none-any.whl
Algorithm Hash digest
SHA256 42aff2b3f78cb672da77189f57530fed65113cdd921f194ba5a45207f9bf32d6
MD5 38a7cf71ca47e84cc8e5da5ddb3a45e5
BLAKE2b-256 f6b13fae9a4dd984d3dc44378d01f94ee3208fbbaa30ecda0484a1d995d6c2fc

See more details on using hashes here.

Supported by

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