Skip to main content

Basic user model, authenticator and authorizer for lribeiro.cherrypy.authorizer and mongoengine

Project description

Basic user model, authenticator and authorizer for lribeiro.cherrypy.authorizer and mongoengine

Usage:

import cherrypy

from lribeiro.cherrypy.authorizer import authorize
from lribeiro.cherrypy.authorizer.authentication import AuthControllerDefaultDispatcher

from lribeiro.cherrypy.authorizer.mongoengine.auth import authenticator, authorizer


class Root:
    @cherrypy.expose
    def index(self):
        return 'index'

    @cherrypy.expose
    @authorize
    def auth_required(self):
        return 'auth required'

    @cherrypy.expose
    @authorize({'read': 'page', 'write': 'log'})
    def authorized(self):
        return 'authorized'

    @cherrypy.expose
    @authorize({'edit': ['page', 'site']})
    def unauthorized(self):
        return 'unauthorized'

config = {
    '/': {
        'tools.sessions.on': True,
        'tools.authorizer.on': True,
        'auth.authenticator': authenticator,
        'auth.authorizer': authorizer,
        'auth.login_page': '/login'
    }
}

if __name__ == '__main__':
    root = Root()
    root.auth = AuthControllerDefaultDispatcher()

    cherrypy.quickstart(root, '/', config)

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

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