Coder Social home page Coder Social logo

django-dynaperms's Introduction

Django Dynaperms

Django's permissions are very useful, but sometimes authorizations to certain system features can rapidly change based on different needs or need a way to allow easily expand the number of different ways to check if access should be granted.

Rather than creating/updating/deleting database records, let's just run a function to see if the return value is True or False.

Example

In debit_card.perms, you define a function like below:


def have_valid_card(user: User) -> bool:
    # Check some API or something

In your settings.py file


AUTHENTICATION_BACKENDS = (
    ...
    'dynaperms.backends.DynamicBackend'
)

...

DYNA_PERMS = {
    'active_payment_method': [
        'credit_card.perms.have_valid_card',
        'debit_card.perms.have_valid_card',
    ]
}

And elsewhere in your code, you can simply call:

if request.user.has_perm('active_payment_method'):
    # Do something for authorized users.
else:
    # Do something for authenticated users.

django-dynaperms's People

Contributors

raiderrobert avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.