Skip to main content

Rule registry for django

Project description

https://img.shields.io/pypi/v/django-rules-light.svg https://img.shields.io/github/actions/workflow/status/yourlabs/django-rules-light/ci.yml?branch=master

This is a simple alternative to django-rules. Its core difference is that it does not rely on models. Instead, it uses a registry which can be modified at runtime.

One of its goals is to enable developers of external apps to make rules, depend on it, while allowing a project to override rules.

Example your_app/rules_light_registry.py:

# Everybody can read a blog post (for now!):
rules_light.registry['blog.post.read'] = True

# Require authentication to create a blog post, using a shortcut:
rules_light.registry['blog.post.create'] = rules_light.is_authenticated

# But others shouldn't mess with my posts !
def is_staff_or_mine(user, rule, obj):
    return user.is_staff or obj.author == user

rules_light.registry['blog.post.update'] = is_staff_or_mine
rules_light.registry['blog.post.delete'] = is_staff_or_mine

Example your_app/views.py:

@rules_light.class_decorator
class PostDetailView(generic.DetailView):
    model = Post

@rules_light.class_decorator
class PostCreateView(generic.CreateView):
    model = Post

@rules_light.class_decorator
class PostUpdateView(generic.UpdateView):
    model = Post

@rules_light.class_decorator
class PostDeleteView(generic.DeleteView):
    model = Post

You might want to read the tutorial for more.

What’s the catch ?

The catch is that this approach does not offer any feature to get secure querysets.

This means you have to:

  • think about security when making querysets,

  • override eventual external app ListViews,

Requirements

  • Python 3.10+

  • Django 4.2+

Quick Install

  • Install module: pip install django-rules-light,

  • Add to settings.INSTALLED_APPS: rules_light,

  • Add in settings.MIDDLEWARE: rules_light.middleware.Middleware,

You might want to read the tutorial.

There is also a lot of documentation, from the core to the tools, including pointers to debug, log and test your security.

Contributing

Run tests with the tox command. Documented patches passing all tests have a better chance to get merged in. See the contributing guidelines for details.

Resources

To ask questions or just get informed about package updates, you could subscribe to the mailing list.

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_rules_light-0.4.0.tar.gz (18.0 kB view details)

Uploaded Source

Built Distribution

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

django_rules_light-0.4.0-py3-none-any.whl (25.0 kB view details)

Uploaded Python 3

File details

Details for the file django_rules_light-0.4.0.tar.gz.

File metadata

  • Download URL: django_rules_light-0.4.0.tar.gz
  • Upload date:
  • Size: 18.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for django_rules_light-0.4.0.tar.gz
Algorithm Hash digest
SHA256 0e20506560be3ab066e417670b898159f923820ac8e0d78183fab1b6267807a3
MD5 a025f27d1038d03fec79d838d407c2de
BLAKE2b-256 b57ac29d80455907954eef6d3e6993ada23248b78b3c42b6834393cc8017f4fd

See more details on using hashes here.

File details

Details for the file django_rules_light-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_rules_light-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 92187178d01b3332b18b68e2069338d28b206124b1b1637322539f42c31c3d90
MD5 919aa9975be57f31850cd68e5d0b083d
BLAKE2b-256 beb257a479347f0ac3df7bfb962b0683e3e24a2aa2498fed376bab8f9c97491b

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