.. _quickstart: ########## Quickstart ########## .. _quickstart-dependencies: Dependencies ============ * *django* >= **2.2** .. _quickstart-installation: Installation ============ 1. Install the latest tarball: .. code-block:: bash pip install https://git.m-stelzer.de/knoppo/django-model-permissions/-/archive/master/django-model-permissions-master.tar.gz 2. Add the app to `INSTALLED_APPS`: .. code-block:: python INSTALLED_APPS = [ # ... 'model_permissions', ] 3. Replace `AUTHENTICATION_BACKENDS`: .. code-block:: python AUTHENTICATION_BACKENDS = [ 'model_permissions.backends.ObjectModelBackend', ] This **replaces** the default backend with an extended version. (See :ref:`manual-permission-function`) If you **don't** want to retain django's user and group permissions, use the `ObjectBackend` instead: .. code-block:: python AUTHENTICATION_BACKENDS = [ 'model_permissions.backends.ObjectBackend', ] 4. *Optional:* Redirect all `PermissionDenied` errors to :setting:`LOGIN_URL`: .. code-block:: python MIDDLEWARE = [ # ... 'model_permissions.middleware.RedirectMiddleware', ] .. _quickstart-usage: Usage ===== 1. Create a :ref:`manual-permission-function` called `get_permissions` as a method on your model: It should return a list of permissions the given user has for this object. .. code-block:: python class MyModel(models.Model): owner = models.ForeignKey(settings.AUTH_USER_MODEL, models.CASCADE) def get_permissions(self, user): if user.is_anonymous: return permissions = ['myapp.add_mymodel'] if not user.is_staff and not user == self.owner: return permissions return permissions + [ 'myapp.change_mymodel', 'myapp.delete_mymodel', ] 2. Use the model_permissions views or mixins: Since it seems to be very hard to inject the object permissions in a context_processor, *django-model-permissions* comes with *ready-to-use* views and mixins: .. code-block:: python from model_permissions.views import CreateView, UpdateView, DeleteView class MyModelCreateView(CreateView): model = MyModel class MyModelCreateView(UpdateView): model = MyModel fields = ('name', 'description', 'owner') required_permission = 'myapp.change_mymodel' class MyModelCreateView(DeleteView): model = MyModel required_permission = 'myapp.delete_mymodel' The main functionality is split into 2 mixins. .. tip:: Use the :class:`model_permissions.views.PermissionMixin` if you want both. The :class:`model_permissions.views.PermissionContextMixin` adds a ``'object_perms'`` variable to the template context. Use it if your view is public and you just want to access the permissions in the template. .. code-block:: python from model_permissions.views import PermissionContextMixin from django.views.generic import DetailView from myapp.models import MyModel class MyModelDetailView(PermissionContextMixin, DetailView): model = MyModel fields = ('name', 'description', 'owner') Use the :class:`model_permissions.views.RequirePermissionMixin` to restrict access to a view based on object permissions: .. code-block:: python from model_permissions.views import UpdateView from myapp.models import MyModel class MyModelDetailView(UpdateView): model = MyModel required_permission = 'myapp.change_mymodel' fields = ('name', 'description', 'owner') 3. Use permissions in your templates: If you're using the :class:`model_permissions.views.PermissionContextMixin` or one of its subclasses your context will contain ``object_perms`` and ``_perms`` variables: .. note:: The second example also shows the usage of :ref:`manual-related-permissions`. .. code-block:: jinja {# forum_detail.html #} {% if forum_perms.myforum.change_forum %} Edit {% endif %} {# or #} {% if object_perms.myforum.add_thread %} Add Thread {% endif %} To get permissions for another object or in views that are not subclassing :class:`model_permissions.views.PermissionContextMixin` you can use the ``get_perms`` template tag: Without argument it will use the ``object`` variable in the context. The resulting perms lookup dict will **not** contain any object permissions if there is no object. .. code-block:: jinja {# thread_detail.html #} {% load model_permissions %} {% get_perms as thread_perms %}

{% if thread_perms.myforum.change_thread %} {{ thread }} {% else %} {{ thread }} {% endif %}

For more information see the :ref:`manual` and :ref:`modules`. .. _Python: https://python.org/ .. _tox: https://tox.readthedocs.io/en/latest/