2017-04-24 15:51:12 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
|
|
|
# Copyright 2016,2017
|
|
|
|
# - Skia <skia@libskia.so>
|
|
|
|
#
|
|
|
|
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
|
|
|
|
# http://ae.utbm.fr.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License a published by the Free Software
|
|
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
|
|
|
|
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2016-12-14 17:05:19 +00:00
|
|
|
import types
|
2015-11-27 14:39:42 +00:00
|
|
|
|
2015-12-07 16:23:52 +00:00
|
|
|
from django.shortcuts import render
|
2016-05-02 09:33:38 +00:00
|
|
|
from django.http import HttpResponseForbidden, HttpResponseNotFound
|
2016-09-04 17:24:53 +00:00
|
|
|
from django.core.exceptions import PermissionDenied, ObjectDoesNotExist, ImproperlyConfigured
|
2015-11-27 14:39:42 +00:00
|
|
|
from django.views.generic.base import View
|
2017-02-05 14:22:52 +00:00
|
|
|
from django.db.models import Count
|
2015-11-27 14:39:42 +00:00
|
|
|
|
2015-12-07 15:08:24 +00:00
|
|
|
from core.models import Group
|
2016-08-31 00:43:49 +00:00
|
|
|
from core.views.forms import LoginForm
|
2015-12-07 15:08:24 +00:00
|
|
|
|
2015-12-07 16:23:52 +00:00
|
|
|
def forbidden(request):
|
2016-08-11 02:24:32 +00:00
|
|
|
try:
|
|
|
|
return HttpResponseForbidden(render(request, "core/403.jinja", context={'next': request.path, 'form':
|
2016-08-31 00:43:49 +00:00
|
|
|
LoginForm(), 'popup': request.resolver_match.kwargs['popup'] or ""}))
|
2016-08-11 02:24:32 +00:00
|
|
|
except:
|
2016-08-31 00:43:49 +00:00
|
|
|
return HttpResponseForbidden(render(request, "core/403.jinja", context={'next': request.path, 'form': LoginForm()}))
|
2015-12-07 16:23:52 +00:00
|
|
|
|
|
|
|
def not_found(request):
|
2016-05-02 09:33:38 +00:00
|
|
|
return HttpResponseNotFound(render(request, "core/404.jinja"))
|
2015-12-07 16:23:52 +00:00
|
|
|
|
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)
|
2015-12-07 16:23:52 +00:00
|
|
|
|
2016-06-20 13:47:19 +00:00
|
|
|
class CanCreateMixin(View):
|
|
|
|
"""
|
|
|
|
This view is made to protect any child view that would create an object, and thus, that can not be protected by any
|
|
|
|
of the following mixin
|
|
|
|
"""
|
2016-11-05 12:37:30 +00:00
|
|
|
def dispatch(self, request, *arg, **kwargs):
|
|
|
|
res = super(CanCreateMixin, self).dispatch(request, *arg, **kwargs)
|
|
|
|
if not request.user.is_authenticated():
|
|
|
|
raise PermissionDenied
|
|
|
|
return res
|
|
|
|
|
2016-06-24 19:07:59 +00:00
|
|
|
def form_valid(self, form):
|
|
|
|
obj = form.instance
|
|
|
|
if can_edit_prop(obj, self.request.user):
|
|
|
|
return super(CanCreateMixin, self).form_valid(form)
|
2016-06-20 13:47:19 +00:00
|
|
|
raise PermissionDenied
|
|
|
|
|
2015-11-27 14:39:42 +00:00
|
|
|
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):
|
2016-12-14 17:05:19 +00:00
|
|
|
try:
|
|
|
|
self.object = self.get_object()
|
|
|
|
if can_edit_prop(self.object, request.user):
|
|
|
|
return super(CanEditPropMixin, self).dispatch(request, *arg, **kwargs)
|
2016-12-18 10:55:03 +00:00
|
|
|
return forbidden(request)
|
2015-12-08 10:10:29 +00:00
|
|
|
except: pass
|
2016-12-14 17:05:19 +00:00
|
|
|
# If we get here, it's a ListView
|
|
|
|
l_id = [o.id for o in self.get_queryset() if can_edit_prop(o, request.user)]
|
2017-02-06 21:18:44 +00:00
|
|
|
if not l_id and self.get_queryset().count() != 0:
|
2016-12-14 17:05:19 +00:00
|
|
|
raise PermissionDenied
|
|
|
|
self._get_queryset = self.get_queryset
|
|
|
|
def get_qs(self2):
|
|
|
|
return self2._get_queryset().filter(id__in=l_id)
|
|
|
|
self.get_queryset = types.MethodType(get_qs, self)
|
|
|
|
return super(CanEditPropMixin, self).dispatch(request, *arg, **kwargs)
|
2015-11-27 14:39:42 +00:00
|
|
|
|
2015-12-08 10:10:29 +00:00
|
|
|
class CanEditMixin(View):
|
2015-11-27 14:39:42 +00:00
|
|
|
"""
|
2016-08-01 17:59:22 +00:00
|
|
|
This view makes exactly the same thing as its direct parent, but checks the group on the edit_groups field of the
|
2015-11-27 14:39:42 +00:00
|
|
|
object
|
|
|
|
"""
|
|
|
|
def dispatch(self, request, *arg, **kwargs):
|
2016-12-14 17:05:19 +00:00
|
|
|
try:
|
|
|
|
self.object = self.get_object()
|
|
|
|
if can_edit(self.object, request.user):
|
|
|
|
return super(CanEditMixin, self).dispatch(request, *arg, **kwargs)
|
2016-12-18 10:55:03 +00:00
|
|
|
return forbidden(request)
|
2015-12-08 10:10:29 +00:00
|
|
|
except: pass
|
2016-12-14 17:05:19 +00:00
|
|
|
# If we get here, it's a ListView
|
|
|
|
l_id = [o.id for o in self.get_queryset() if can_edit(o, request.user)]
|
2017-02-06 21:18:44 +00:00
|
|
|
if not l_id and self.get_queryset().count() != 0:
|
2016-12-14 17:05:19 +00:00
|
|
|
raise PermissionDenied
|
|
|
|
self._get_queryset = self.get_queryset
|
|
|
|
def get_qs(self2):
|
|
|
|
return self2._get_queryset().filter(id__in=l_id)
|
|
|
|
self.get_queryset = types.MethodType(get_qs, self)
|
|
|
|
return super(CanEditMixin, self).dispatch(request, *arg, **kwargs)
|
2015-11-27 14:39:42 +00:00
|
|
|
|
2015-12-08 10:10:29 +00:00
|
|
|
class CanViewMixin(View):
|
2015-11-27 14:39:42 +00:00
|
|
|
"""
|
2016-08-01 17:59:22 +00:00
|
|
|
This view still makes exactly the same thing as its direct parent, but checks the group on the view_groups field of
|
2015-11-27 14:39:42 +00:00
|
|
|
the object
|
|
|
|
"""
|
|
|
|
def dispatch(self, request, *arg, **kwargs):
|
2016-12-14 17:05:19 +00:00
|
|
|
try:
|
|
|
|
self.object = self.get_object()
|
|
|
|
if can_view(self.object, request.user):
|
|
|
|
return super(CanViewMixin, self).dispatch(request, *arg, **kwargs)
|
2016-12-18 10:55:03 +00:00
|
|
|
return forbidden(request)
|
2015-12-08 10:10:29 +00:00
|
|
|
except: pass
|
2016-12-14 17:05:19 +00:00
|
|
|
# If we get here, it's a ListView
|
|
|
|
l_id = [o.id for o in self.get_queryset() if can_view(o, request.user)]
|
2017-02-06 21:18:44 +00:00
|
|
|
if not l_id and self.get_queryset().count() != 0:
|
2016-12-14 17:05:19 +00:00
|
|
|
raise PermissionDenied
|
|
|
|
self._get_queryset = self.get_queryset
|
|
|
|
def get_qs(self2):
|
|
|
|
return self2._get_queryset().filter(id__in=l_id)
|
|
|
|
self.get_queryset = types.MethodType(get_qs, self)
|
|
|
|
return super(CanViewMixin, self).dispatch(request, *arg, **kwargs)
|
2016-08-24 17:50:22 +00:00
|
|
|
|
2016-09-04 17:24:53 +00:00
|
|
|
class TabedViewMixin(View):
|
|
|
|
"""
|
|
|
|
This view provide the basic functions for displaying tabs in the template
|
|
|
|
"""
|
|
|
|
def get_tabs_title(self):
|
|
|
|
try:
|
|
|
|
return self.tabs_title
|
|
|
|
except:
|
|
|
|
raise ImproperlyConfigured("tabs_title is required")
|
|
|
|
|
|
|
|
def get_current_tab(self):
|
|
|
|
try:
|
|
|
|
return self.current_tab
|
|
|
|
except:
|
|
|
|
raise ImproperlyConfigured("current_tab is required")
|
|
|
|
|
|
|
|
def get_list_of_tabs(self):
|
|
|
|
try:
|
|
|
|
return self.list_of_tabs
|
|
|
|
except:
|
|
|
|
raise ImproperlyConfigured("list_of_tabs is required")
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(TabedViewMixin, self).get_context_data(**kwargs)
|
|
|
|
kwargs['tabs_title'] = self.get_tabs_title()
|
|
|
|
kwargs['current_tab'] = self.get_current_tab()
|
|
|
|
kwargs['list_of_tabs'] = self.get_list_of_tabs()
|
|
|
|
return kwargs
|
|
|
|
|
2017-01-10 16:45:49 +00:00
|
|
|
class QuickNotifMixin:
|
2017-01-07 14:07:28 +00:00
|
|
|
quick_notif_list = []
|
2017-01-10 16:45:49 +00:00
|
|
|
|
|
|
|
def dispatch(self, request, *arg, **kwargs):
|
|
|
|
self.quick_notif_list = [] # In some cases, the class can stay instanciated, so we need to reset the list
|
|
|
|
return super(QuickNotifMixin, self).dispatch(request, *arg, **kwargs)
|
|
|
|
|
2017-01-07 14:07:28 +00:00
|
|
|
def get_success_url(self):
|
|
|
|
ret = super(QuickNotifMixin, self).get_success_url()
|
|
|
|
try:
|
|
|
|
if '?' in ret:
|
|
|
|
ret += '&' + self.quick_notif_url_arg
|
|
|
|
else:
|
|
|
|
ret += '?' + self.quick_notif_url_arg
|
|
|
|
except: pass
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
"""Add quick notifications to context"""
|
|
|
|
kwargs = super(QuickNotifMixin, self).get_context_data(**kwargs)
|
|
|
|
kwargs['quick_notifs'] = []
|
|
|
|
for n in self.quick_notif_list:
|
|
|
|
kwargs['quick_notifs'].append(settings.SITH_QUICK_NOTIF[n])
|
|
|
|
for k,v in settings.SITH_QUICK_NOTIF.items():
|
|
|
|
for gk in self.request.GET.keys():
|
|
|
|
if k == gk:
|
|
|
|
kwargs['quick_notifs'].append(v)
|
|
|
|
return kwargs
|
|
|
|
|
|
|
|
|
2015-11-24 15:09:46 +00:00
|
|
|
from .user import *
|
|
|
|
from .page import *
|
2016-08-10 03:48:06 +00:00
|
|
|
from .files import *
|
2015-11-24 15:09:46 +00:00
|
|
|
from .site import *
|
2015-11-26 16:40:31 +00:00
|
|
|
from .group import *
|
2016-09-04 17:24:53 +00:00
|
|
|
|
|
|
|
|