Skip to main content

Tortoise ORM adapter for AsyncCasbin

Project description

Tortoise ORM Adapter for PyCasbin

GitHub Workflow Status PyPI - Downloads GitHub Buy a tree

This is an asynchronous adapter for pycasbin using Tortoise ORM.

Supports Python 3.7+.

Installation

python3 -m pip install --user casbin-tortoise-adapter
# or via your favorite dependency manager, like PDM

The current supported databases are limited by Tortoise ORM.

Documentation

The only configurable is the underlying Model used by TortoiseAdapter. While simple, it should be plenty to cover most use cases that one could come across. You can change the model by passing the modelclass: CasbinRule keyword argument to the adapter and updating the model in your Tortoise ORM init configuration.

The modelclass value must inherit from casbin_tortoise_adapter.CasbinRule to ensure that all the expected fields are present. A TypeError will throw if this is not the case.

A custom Model, combined with advanced configuration like show in the Tortoise ORM "Two Databases" example, allow you to change where your authorization rules are stored (database, model name, etc.)

Basic example

from casbin import AsyncEnforcer
from tortoise import Tortoise

from casbin_tortoise_adapter import CasbinRule, TortoiseAdapter

async def main()
    # connect to db and generate schemas
    await Tortoise.init(
        db_url="postgres://postgres:password@test-db:5432/my_app",
        modules={"models": ["casbin_tortoise_adapter"]},
    )
    await Tortoise.generate_schemas()

    adapter = casbin_tortoise_adapter.TortoiseAdapter()
    e = AsyncEnforcer('path/to/model.conf', adapter)

    sub = "alice"  # the user that wants to access a resource.
    obj = "data1"  # the resource that is going to be accessed.
    act = "read"  # the operation that the user performs on the resource.

    if e.enforce(sub, obj, act):
        # permit alice to read data1
        pass
    else:
        # deny the request, show an error
        pass

License

This project, like other adapters, is licensed under the Apache 2.0 License.

This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to my forest you’ll be creating employment for local families and restoring wildlife habitats.

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

casbin_tortoise_adapter-2.0.0.tar.gz (11.7 kB view details)

Uploaded Source

Built Distribution

casbin_tortoise_adapter-2.0.0-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file casbin_tortoise_adapter-2.0.0.tar.gz.

File metadata

File hashes

Hashes for casbin_tortoise_adapter-2.0.0.tar.gz
Algorithm Hash digest
SHA256 8d20e8d7a4f3e9c377a76fc611a92da4a06015215372e9b798d6ff3a45cf0755
MD5 55fd5c27f264bc0f4e6900995912e148
BLAKE2b-256 0f816f865c18fdf01f8f0daa44fa42309f8c2416a35f969f9fe872654e780f4a

See more details on using hashes here.

File details

Details for the file casbin_tortoise_adapter-2.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for casbin_tortoise_adapter-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9bfa71498d672ddc6cdb99e52818bedaf10740c93ab7d66198d677c81c696c3f
MD5 66c5cdf7e178b88214670cb9df9a1811
BLAKE2b-256 c792e6bfcbe7eaeb26ad0832596f926f7579f4eb0f186b9a49650095157578ed

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page