Skip to main content

Perms for iscore library

Project description

https://badge.fury.io/py/django-fperms-iscore.svg https://travis-ci.org/Formulka/django-fperms-iscore.svg?branch=master https://codecov.io/gh/Formulka/django-fperms-iscore/branch/master/graph/badge.svg

Perms for iscore library

Documentation

The full documentation is at https://django-perms-iscore.readthedocs.io.

Quickstart

Install django-fperms-iscore:

pip install skip-django-fperms-iscore

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'fperms_iscore.apps.FPermsConfig',
    ...
)

It includes all the basic permissions from http://github.com/formulka/django-fperms and adds a new type:

  • core: for iscore specific resources

Usage

A superuser has for all intents and purposes permission to do everything. For regular users you can assign permissions directly or via a user group.

Creating a new permission:

You can create a new permission directly via its model or via a specially formated string:

from fperms_iscore import enums
from fperms_iscore.models import IsCorePerm

IsCorePerm.objects.create(
    type=enums.PERM_TYPE_CORE,
    codename='create',
    core='issue_tracker.IssueIsCore',
)
IsCorePerm.objects.create_from_str('core.issue_tracker.IssueIsCore.create')

Assigning a permission:

You can assign existing permission via the custom perms manager available for both User (including custom ones) and Group models. You can add single permission or multiple both directly via its instance or using the formated string:

from django.auth.models import User, Group

from fperms_iscore.models import IsCorePerm

perm = IsCorePerm.objects.create_from_str('core.issue_tracker.IssueIsCore.create')

user = User.objects.get(pk=1)
user.perms.add_perm(perm)

group = Group.objects.get(pk=1)
group.perms.add_perm('core.issue_tracker.IssueIsCore.create')

By default if said permission does not exist, it will raise an exception. You can override this behavior by setting PERM_AUTO_CREATE variable in your project settings to True, assigning a permission will then create it as well if it does not exist.

Retrieving permission instance:

You can get a permission instance directly from the model or via the string representation.

perm = IsCorePerm.objects.get(
    type=enums.PERM_TYPE_CORE,
    codename='create',
    core='issue_tracker.IssueIsCore',
)
perm = IsCorePerm.objects.get_from_str('core.issue_tracker.IssueIsCore.create')

Checking permission:

You can check whether the user or group has a required permission via has_perm method of the perms manager again using both the permission instance or the string representation.

...
perm = IsCorePerm.objects.create(
    type=enums.PERM_TYPE_CORE,
    codename='create',
    core='issue_tracker.IssueIsCore',
)

assert user.perms.has_perm(perm)
assert user.perms.has_perm('core.issue_tracker.IssueIsCore.create')

New perm type

core

  • permission for iscore specific resources

  • type is defined as fperms_iscore.enums.PERM_TYPE_CORE

  • codename is usually one of the CRUD operations (create, read, update, delete)

  • it requires type, codename and core fields

  • string representation is 'core.<app_label>.<core_name>.<codename>'

...
# equivalent results:
IsCorePerm.objects.create(
    type=enums.PERM_TYPE_CORE,
    codename='create',
    core='issue_tracker.IssueIsCore',
)
IsCorePerm.objects.create_from_str('core.issue_tracker.IssueIsCore.create')

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

History

0.2.16 (2020-11-03)

  • Better cache for user permissions

0.2.15 (2020-10-24)

  • New django-fperms library and related changes

0.2.14 (2020-10-22)

  • Better verbose name of default permission

  • Improved sync_permissions command, unchanged permissions are not printed as updated

0.1.0 (2018-03-13)

  • First release on PyPI.

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

skip_django_fperms_iscore-0.4.0.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

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

skip_django_fperms_iscore-0.4.0-py2.py3-none-any.whl (12.5 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

File hashes

Hashes for skip_django_fperms_iscore-0.4.0.tar.gz
Algorithm Hash digest
SHA256 b7b588fd0f9a259865dee09cb40c7d1798296ba7bced2f8d25e21fdfd8fadce4
MD5 18cb6a9e060fe142a22e91cb752ca997
BLAKE2b-256 3412dd6fa67cc2b48feea1605d117f6c691048bb9c6fa221f845e63525168c95

See more details on using hashes here.

File details

Details for the file skip_django_fperms_iscore-0.4.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for skip_django_fperms_iscore-0.4.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 fb301aad3bcfc8bdc81b44d361b552368bcb14bfea2b8bfb2f4e893ff55a86c1
MD5 9931aaaf59a03b16cc4a42230ea52ef5
BLAKE2b-256 4a869ca476fdc4dd79f0256fb7b6f38af8d70a2ccf8fb8e3291fd347bff77b81

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