معرفی شرکت ها


django_callable_perms-0.1.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Modular registry of permission handlers for Django
ویژگی مقدار
سیستم عامل -
نام فایل django_callable_perms-0.1.2
نام django_callable_perms
نسخه کتابخانه 0.1.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده David Danier
ایمیل نویسنده david.danier@team23.de
آدرس صفحه اصلی https://github.com/ddanier/django_callable_perms
آدرس اینترنتی https://pypi.org/project/django_callable_perms/
مجوز UNKNOWN
About ===== django_callable_perms implements a modular registry of permission handlers. Handlers can be registered as simple permission callbacks, following the Django has_perm parameters. All permission callbacks may implement the permission checks they need. As we talk about callbacks, meaning executable code, you can put everything you need in there. Example ======= Django itself misses support for row level permissions. You may add this using authentication backends and there are existing apps to implement this. Anyways most of these solutions will add some overhead and cannot provide really flexible permissions. django_callable_perms do not care about which permissions you want to implement but fit row level permissions really well. So lets start with the real example. Given a model like this: :: class Article(models.Model): title = models.CharField(max_length=100) author = models.ForeignKey(User) You may want to add permissions checks, so only the author is allowed to edit his/her articles. Now django_callable_perms may be used to add simple checks like the following: :: # may be put into permissions.py inside the app from django_callable_perms import register from .models import Article def author_may_always_edit(user, perm, obj): # no additional database query needed! if obj.author_id == user.pk: return True register( 'app.change_article', # permission name author_may_always_edit, # callback function Article, # model, for which the permission check is implemented # may be "None", if no instance is required ) Permission checks afterwards just follow default Django behavior. Use {% get_obj_perms %} inside templates. :: {% get_obj_perms for user accessing obj as obj_perms %} {% if obj_perms.app.change_article %} {# show edit link #} <a href="...">Edit</a> {% endif %} Note: If you need your own permissions you do not need to add them to the database (see Django docs), most of the time it's enough to just register the new permissions. Installation ============ Add ``django_callable_perms`` to ``INSTALLED_APPS`` (for autoloading) and add ``django_callable_perms.backends.CallablePermissionBackend`` to your ``AUTHENTICATION_BACKENDS``. Make sure to put django_callable_perms into your Python PATH first, of course. Additional Features =================== Autoloading +++++++++++ Will load all permissions.py's inside the INSTALLED_APPS. sync_permissions ++++++++++++++++ Management command to create all app permission inside the database. May be used to initialize the database. Will not (meaning never) add more than the default Django permissions.


نحوه نصب


نصب پکیج whl django_callable_perms-0.1.2:

    pip install django_callable_perms-0.1.2.whl


نصب پکیج tar.gz django_callable_perms-0.1.2:

    pip install django_callable_perms-0.1.2.tar.gz