Implements a function to test whether a given url is currently visible to a given user.
Project description
django_page_visibility
This package implements a standard protocol allowing developers to ask "can user X currently access page Y?".
Rather than duplicating the permission checks performed in that view, you ask the view itself whether or not the user can access it.
Conforming Views
Conforming views must implement a .test_page_visibilty(request, *args, **kwargs)
method. This will be called with the same args
and kwargs
that the actual view would be called with.
This method must return a truthy value if the user can access the page, and False otherwise. It may also raise an exception, to indicate that the user cannot access the page. See PAGE_VISIBILITY_EXCEPTIONS
below.
The Test Function
Developers can call django_page_visibility.is_visible_to_user(path, user)
(see the code for details) to test visibility. Or, in a template, you can use our is_permitted_to_see
filter or permitted_link
tag.
PAGE_VISIBILITY_EXCEPTIONS
setting
By default, we return False
if either django.http.Http404
or django.core.exceptions.PermissionDenied
are raised. You can override this by setting (in your django settings) PAGE_VISIBILITY_EXCEPTIONS
to a list of exception classes.
We expect most users to override this setting. For example, if you are using exceptional_auth
and django_early_return
, then you'll want to set:
PAGE_VISIBILITY_EXCEPTIONS = [
'django.core.exceptions.PermissionDenied',
'django.http.Http404',
'django_early_return.EarlyReturn',
'exceptional_auth.AuthException',
]
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
Built Distribution
File details
Details for the file django_page_visibility-0.1.2.tar.gz
.
File metadata
- Download URL: django_page_visibility-0.1.2.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 653013602ec081575fba8ded94501e3034f8f27c2f7eb5b2f3e10835097e347f |
|
MD5 | 2c3f1ee6435461466c282aad407c672d |
|
BLAKE2b-256 | dfc16d9edab2f76da76658f67b2fd20e083d4aaf1a9aa514b2c45e4c91adaaf4 |
File details
Details for the file django_page_visibility-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: django_page_visibility-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08868e807e93f4ee0930dbc3ecd6f34bfae8ac86c9039a6e5d4ba78600381442 |
|
MD5 | 88866967265ffaa6d9f612d26c519a72 |
|
BLAKE2b-256 | cc728cf06808157aa2986b67e4889650798efdef46f046e4e0856a3bd4617feb |