Skip to main content

django-rest-framework-security-filters

Project description

https://github.com/allisson/django-rest-framework-role-filters/workflows/tests/badge.svg https://img.shields.io/pypi/v/djangorestframework-security-filters.svg https://img.shields.io/github/license/allisson/django-rest-framework-role-filters.svg https://img.shields.io/pypi/pyversions/djangorestframework-security-filters.svg

How to install

pip install pip install djangorestframework-security-filters

Why i wrote this project?

I want work easily with roles without multiple ifs in code

How to use

Create role_filters.py with your roles definitions

from rest_framework_role_filters.role_filters import RoleFilter

from .serializers import PostSerializerForUser


class AdminRoleFilter(RoleFilter):
    role_id = 'admin'


class UserRoleFilter(RoleFilter):
    role_id = 'user'

    def get_allowed_actions(self, request, view, obj=None):
        # This example returns same list both for "global permissions" check,
        # and for "object" permissions, but different list may be returned
        # if `obj` argument is not None, and this list will be used to check
        # if action is allowed during call to `ViewSet.check_object_permissions`
        return ['create', 'list', 'retrieve', 'update', 'partial_update']

    def get_queryset(self, request, view, queryset):
        queryset = queryset.filter(user=request.user)
        return queryset

    def get_serializer_class(self, request, view):
        return PostSerializerForUser

    def get_serializer(self, request, view, serializer_class, *args, **kwargs):
        fields = (
            'body',
            'created_at',
            'id',
            'serializer_name',
            'title',
            'updated_at',
            'user',
        )
        return serializer_class(*args, fields=fields, **kwargs)

Create viewset and override get_role_id method

from rest_framework_role_filters.viewsets import RoleFilterModelViewSet

from .models import Post
from .role_filters import AdminRoleFilter, UserRoleFilter
from .serializers import PostSerializer


class PostViewSet(RoleFilterModelViewSet):
    queryset = Post.objects.all()
    serializer_class = PostSerializer
    role_filter_classes = [AdminRoleFilter, UserRoleFilter]

    def perform_create(self, serializer):
        serializer.save(user=self.request.user)

If role_id is ‘admin’:

  • All actions are allowed

  • The default queryset is returned - Post.objects.all()

  • The default serializer_class is used - PostSerializer

  • The default viewset get_serializer method is used

If role_id is ‘user’:

  • Only actions ‘create’, ‘list’, ‘retrieve’, ‘update’, ‘partial_update’ are allowed

  • The queryset is filtered by user

  • The serializer_class=PostSerializerForUser is used

  • The serializer initializing with fields kwargs (e.g. for modified serializer as described in DRF: Dynamically modifying fields)

Check testapp example code implementation.

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

djangorestframework-security-filters-0.1.1.tar.gz (6.8 kB view details)

Uploaded Source

File details

Details for the file djangorestframework-security-filters-0.1.1.tar.gz.

File metadata

  • Download URL: djangorestframework-security-filters-0.1.1.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.4

File hashes

Hashes for djangorestframework-security-filters-0.1.1.tar.gz
Algorithm Hash digest
SHA256 55946a081814f25315832b5e68150d08e160a24db2058dd226ca3adbfdb25458
MD5 e34e621d99a020d7251b20a2e5503c8d
BLAKE2b-256 e81b8944a23cd99afca63fa4a830872471f81ea7b943bb0f06333976ac79fb08

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