GithubHelp home page GithubHelp logo

tidestide's Introduction

tidestide

A trial work of Attribute-based access control lib

Introdution

This is a trial project attempting to implement a Attribute-based access control library.

The main design strategy is to use bitmap and flattened tree data to fast calculate authorization.

This project is not accomplished and is based on the flask framework for trial, but is aimed to work independently.

Usage:

1. Collect resources via decorator

@auth_check(
    filters=Filters(
        ("Owner", DB_MODEL.owner, attrgetter("id")),
        ("Deleted", DB_MODEL.is_del, [("deleted", 0), ("notdel", 1)]),
    )
)
def view_function(self):
    # Biz code
    return data

The auth_check decorator will automatically collect this view function as a resource entity, for more fine-grained auth control, we can use the Filters class to define more filtering details.

When a web request comes to the view_function, the auth_check decorator will check the user's authorization with rules.

2. Add other type resources

3. Add attributes and rules

tidestide's People

Contributors

buyiyihu avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.