~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/base/views.py

Implement an authorization system in the new framework. This breaks the REST
views, but the rest have authorization information now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
    """
22
22
    Abstract base class for all view objects.
23
23
    """
24
 
    def __init__(self, req, **kwargs):
25
 
        pass
26
24
    def render(self, req):
27
 
        pass
 
25
        raise NotImplementedError()
 
26
 
 
27
    def get_permissions(self, user):
 
28
        return self.context.get_permissions(user)
 
29
 
 
30
    def authorize(self, req):
 
31
        perms = self.get_permissions(req.user)
 
32
 
 
33
        return self.permission is None or self.permission in perms