Sith/core/views/__init__.py

92 lines
3.0 KiB
Python
Raw Normal View History

from django.shortcuts import render
from django.http import HttpResponseForbidden
2015-12-08 08:46:48 +00:00
from django.core.exceptions import PermissionDenied, ObjectDoesNotExist
from django.views.generic.base import View
from core.models import Group
def forbidden(request):
2016-02-01 16:35:55 +00:00
return render(request, "core/403.jinja")
def not_found(request):
2016-02-01 16:35:55 +00:00
return render(request, "core/404.jinja")
2016-02-05 15:59:42 +00:00
def can_edit_prop(obj, user):
if obj is None or user.is_owner(obj):
return True
return False
def can_edit(obj, user):
if obj is None or user.can_edit(obj):
return True
return can_edit_prop(obj, user)
def can_view(obj, user):
if obj is None or user.can_view(obj):
return True
return can_edit(obj, user)
class CanEditPropMixin(View):
"""
This view is made to protect any child view that would be showing some properties of an object that are restricted
to only the owner group of the given object.
In other word, you can make a view with this view as parent, and it would be retricted to the users that are in the
object's owner_group
"""
def dispatch(self, request, *arg, **kwargs):
res = super(CanEditPropMixin, self).dispatch(request, *arg, **kwargs)
2016-02-05 15:59:42 +00:00
if hasattr(self, 'object'):
obj = self.object
elif hasattr(self, 'object_list'):
obj = self.object_list[0] if self.object_list else None
if can_edit_prop(obj, self.request.user):
return res
2015-12-08 10:10:29 +00:00
try: # Always unlock when 403
self.object.unset_lock()
except: pass
raise PermissionDenied
2015-12-08 10:10:29 +00:00
class CanEditMixin(View):
"""
2016-02-05 15:59:42 +00:00
This view makes exactly the same this as its direct parent, but checks the group on the edit_groups field of the
object
"""
def dispatch(self, request, *arg, **kwargs):
2015-12-08 10:10:29 +00:00
res = super(CanEditMixin, self).dispatch(request, *arg, **kwargs)
2016-02-05 15:59:42 +00:00
if hasattr(self, 'object'):
obj = self.object
elif hasattr(self, 'object_list'):
obj = self.object_list[0] if self.object_list else None
if can_edit(obj, self.request.user):
2015-12-08 08:46:48 +00:00
return res
2015-12-08 10:10:29 +00:00
try: # Always unlock when 403
self.object.unset_lock()
except: pass
raise PermissionDenied
2015-12-08 10:10:29 +00:00
class CanViewMixin(View):
"""
2016-02-05 15:59:42 +00:00
This view still makes exactly the same this as its direct parent, but checks the group on the view_groups field of
the object
"""
def dispatch(self, request, *arg, **kwargs):
2015-12-08 10:10:29 +00:00
res = super(CanViewMixin, self).dispatch(request, *arg, **kwargs)
2016-02-05 15:59:42 +00:00
if hasattr(self, 'object'):
obj = self.object
elif hasattr(self, 'object_list'):
obj = self.object_list[0] if self.object_list else None
if can_view(obj, self.request.user):
return res
2015-12-08 10:10:29 +00:00
try: # Always unlock when 403
self.object.unset_lock()
except: pass
raise PermissionDenied
2015-11-24 15:09:46 +00:00
from .user import *
from .page import *
from .site import *
from .group import *
from .api import *