2019-05-16 14:51:30 +00:00
|
|
|
#
|
2019-09-04 18:49:17 +00:00
|
|
|
# Copyright 2019
|
2019-05-16 14:51:30 +00:00
|
|
|
# - Sli <antoine@bartuccio.fr>
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.conf import settings
|
2024-07-18 18:23:30 +00:00
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
2024-10-15 09:36:26 +00:00
|
|
|
from django.core.exceptions import PermissionDenied
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.shortcuts import get_object_or_404
|
|
|
|
from django.urls import reverse, reverse_lazy
|
2019-06-15 22:04:36 +00:00
|
|
|
from django.views.generic import (
|
|
|
|
CreateView,
|
|
|
|
DeleteView,
|
|
|
|
FormView,
|
2024-07-18 18:23:30 +00:00
|
|
|
TemplateView,
|
2024-06-24 11:07:36 +00:00
|
|
|
UpdateView,
|
2019-06-15 22:04:36 +00:00
|
|
|
)
|
2019-07-05 18:11:33 +00:00
|
|
|
|
2024-06-24 11:07:36 +00:00
|
|
|
from core.models import Notification, RealGroup
|
2019-06-15 15:01:25 +00:00
|
|
|
from core.views import (
|
|
|
|
CanCreateMixin,
|
|
|
|
CanEditPropMixin,
|
2024-06-24 11:07:36 +00:00
|
|
|
CanViewMixin,
|
|
|
|
DetailFormView,
|
2024-07-18 18:23:30 +00:00
|
|
|
FormerSubscriberMixin,
|
2019-06-15 15:01:25 +00:00
|
|
|
)
|
2019-06-20 10:15:12 +00:00
|
|
|
from pedagogy.forms import (
|
|
|
|
UVCommentForm,
|
|
|
|
UVCommentModerationForm,
|
2024-06-24 11:07:36 +00:00
|
|
|
UVCommentReportForm,
|
|
|
|
UVForm,
|
2019-06-20 10:15:12 +00:00
|
|
|
)
|
2024-07-18 18:23:30 +00:00
|
|
|
from pedagogy.models import UV, UVComment, UVCommentReport
|
2019-06-15 22:04:36 +00:00
|
|
|
|
|
|
|
# Acutal views
|
|
|
|
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2024-07-18 18:23:30 +00:00
|
|
|
class UVDetailFormView(CanViewMixin, DetailFormView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Display every comment of an UV and detailed infos about it.
|
|
|
|
|
|
|
|
Allow to comment the UV.
|
2019-05-16 14:51:30 +00:00
|
|
|
"""
|
|
|
|
|
2019-06-16 00:19:56 +00:00
|
|
|
model = UV
|
|
|
|
pk_url_kwarg = "uv_id"
|
|
|
|
template_name = "pedagogy/uv_detail.jinja"
|
|
|
|
form_class = UVCommentForm
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-16 15:02:45 +00:00
|
|
|
def get_form_kwargs(self):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_form_kwargs()
|
2019-06-16 15:02:45 +00:00
|
|
|
kwargs["author_id"] = self.request.user.id
|
|
|
|
kwargs["uv_id"] = self.get_object().id
|
2019-09-04 18:49:17 +00:00
|
|
|
kwargs["is_creation"] = True
|
2019-06-16 15:02:45 +00:00
|
|
|
return kwargs
|
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
form.save()
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().form_valid(form)
|
2019-06-16 15:02:45 +00:00
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy(
|
|
|
|
"pedagogy:uv_detail", kwargs={"uv_id": self.get_object().id}
|
|
|
|
)
|
|
|
|
|
2024-07-18 18:23:30 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
user = self.request.user
|
|
|
|
return super().get_context_data(**kwargs) | {
|
|
|
|
"can_create_uv": (
|
|
|
|
user.is_root
|
|
|
|
or user.is_in_group(pk=settings.SITH_GROUP_PEDAGOGY_ADMIN_ID)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-16 15:02:45 +00:00
|
|
|
class UVCommentUpdateView(CanEditPropMixin, UpdateView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Allow edit of a given comment."""
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-16 15:02:45 +00:00
|
|
|
model = UVComment
|
|
|
|
form_class = UVCommentForm
|
|
|
|
pk_url_kwarg = "comment_id"
|
|
|
|
template_name = "core/edit.jinja"
|
|
|
|
|
|
|
|
def get_form_kwargs(self):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_form_kwargs()
|
2019-06-16 16:34:11 +00:00
|
|
|
obj = self.get_object()
|
|
|
|
kwargs["author_id"] = obj.author.id
|
|
|
|
kwargs["uv_id"] = obj.uv.id
|
2019-09-04 18:49:17 +00:00
|
|
|
kwargs["is_creation"] = False
|
2019-06-16 15:02:45 +00:00
|
|
|
|
|
|
|
return kwargs
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy("pedagogy:uv_detail", kwargs={"uv_id": self.object.uv.id})
|
|
|
|
|
|
|
|
|
|
|
|
class UVCommentDeleteView(CanEditPropMixin, DeleteView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Allow delete of a given comment."""
|
2019-06-16 15:02:45 +00:00
|
|
|
|
|
|
|
model = UVComment
|
|
|
|
pk_url_kwarg = "comment_id"
|
|
|
|
template_name = "core/delete_confirm.jinja"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy("pedagogy:uv_detail", kwargs={"uv_id": self.object.uv.id})
|
2019-05-16 14:51:30 +00:00
|
|
|
|
|
|
|
|
2024-07-18 18:23:30 +00:00
|
|
|
class UVGuideView(LoginRequiredMixin, FormerSubscriberMixin, TemplateView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""UV guide main page."""
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-15 21:31:31 +00:00
|
|
|
template_name = "pedagogy/guide.jinja"
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2024-07-18 18:23:30 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
user = self.request.user
|
|
|
|
return super().get_context_data(**kwargs) | {
|
|
|
|
"can_create_uv": (
|
|
|
|
user.is_root
|
|
|
|
or user.is_in_group(pk=settings.SITH_GROUP_PEDAGOGY_ADMIN_ID)
|
2019-06-18 19:41:11 +00:00
|
|
|
)
|
2024-07-18 18:23:30 +00:00
|
|
|
}
|
2019-06-18 19:41:11 +00:00
|
|
|
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-19 23:29:12 +00:00
|
|
|
class UVCommentReportCreateView(CanCreateMixin, CreateView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Create a new report for an inapropriate comment."""
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-19 23:29:12 +00:00
|
|
|
model = UVCommentReport
|
|
|
|
form_class = UVCommentReportForm
|
|
|
|
template_name = "core/edit.jinja"
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-19 23:29:12 +00:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
self.uv_comment = get_object_or_404(UVComment, pk=kwargs["comment_id"])
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().dispatch(request, *args, **kwargs)
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-19 23:29:12 +00:00
|
|
|
def get_form_kwargs(self):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_form_kwargs()
|
2019-06-19 23:29:12 +00:00
|
|
|
kwargs["reporter_id"] = self.request.user.id
|
|
|
|
kwargs["comment_id"] = self.uv_comment.id
|
|
|
|
return kwargs
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-07-04 13:32:00 +00:00
|
|
|
def form_valid(self, form):
|
2024-06-27 12:46:43 +00:00
|
|
|
resp = super().form_valid(form)
|
2019-07-04 13:32:00 +00:00
|
|
|
|
|
|
|
# Send a message to moderation admins
|
|
|
|
for user in (
|
|
|
|
RealGroup.objects.filter(id=settings.SITH_GROUP_PEDAGOGY_ADMIN_ID)
|
|
|
|
.first()
|
|
|
|
.users.all()
|
|
|
|
):
|
|
|
|
if not user.notifications.filter(
|
|
|
|
type="PEDAGOGY_MODERATION", viewed=False
|
|
|
|
).exists():
|
|
|
|
Notification(
|
|
|
|
user=user,
|
|
|
|
url=reverse("pedagogy:moderation"),
|
|
|
|
type="PEDAGOGY_MODERATION",
|
|
|
|
).save()
|
|
|
|
|
|
|
|
return resp
|
|
|
|
|
2019-06-19 23:29:12 +00:00
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy(
|
|
|
|
"pedagogy:uv_detail", kwargs={"uv_id": self.uv_comment.uv.id}
|
|
|
|
)
|
2019-05-16 14:51:30 +00:00
|
|
|
|
|
|
|
|
2019-06-20 10:15:12 +00:00
|
|
|
class UVModerationFormView(FormView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Moderation interface (Privileged)."""
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-20 10:15:12 +00:00
|
|
|
form_class = UVCommentModerationForm
|
|
|
|
template_name = "pedagogy/moderation.jinja"
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
if not request.user.is_owner(UV()):
|
|
|
|
raise PermissionDenied
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().dispatch(request, *args, **kwargs)
|
2019-06-20 10:15:12 +00:00
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
form_clean = form.clean()
|
2024-10-15 09:36:26 +00:00
|
|
|
accepted = form_clean.get("accepted_reports", [])
|
|
|
|
if len(accepted) > 0: # delete the reported comments
|
|
|
|
UVComment.objects.filter(reports__in=accepted).delete()
|
|
|
|
denied = form_clean.get("denied_reports", [])
|
|
|
|
if len(denied) > 0: # delete the comments themselves
|
|
|
|
UVCommentReport.objects.filter(id__in={d.id for d in denied}).delete()
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().form_valid(form)
|
2019-06-20 10:15:12 +00:00
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy("pedagogy:moderation")
|
2019-05-16 14:51:30 +00:00
|
|
|
|
|
|
|
|
2019-06-15 15:01:25 +00:00
|
|
|
class UVCreateView(CanCreateMixin, CreateView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Add a new UV (Privileged)."""
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-15 15:01:25 +00:00
|
|
|
model = UV
|
|
|
|
form_class = UVForm
|
2019-10-21 15:10:16 +00:00
|
|
|
template_name = "pedagogy/uv_edit.jinja"
|
2019-06-15 15:01:25 +00:00
|
|
|
|
|
|
|
def get_form_kwargs(self):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_form_kwargs()
|
2019-06-15 15:01:25 +00:00
|
|
|
kwargs["author_id"] = self.request.user.id
|
|
|
|
return kwargs
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy("pedagogy:uv_detail", kwargs={"uv_id": self.object.id})
|
2019-05-16 14:51:30 +00:00
|
|
|
|
|
|
|
|
2019-06-15 22:04:36 +00:00
|
|
|
class UVDeleteView(CanEditPropMixin, DeleteView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Allow to delete an UV (Privileged)."""
|
2019-05-16 14:51:30 +00:00
|
|
|
|
2019-06-15 22:04:36 +00:00
|
|
|
model = UV
|
|
|
|
pk_url_kwarg = "uv_id"
|
|
|
|
template_name = "core/delete_confirm.jinja"
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy("pedagogy:guide")
|
|
|
|
|
|
|
|
|
|
|
|
class UVUpdateView(CanEditPropMixin, UpdateView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Allow to edit an UV (Privilegied)."""
|
2019-06-15 22:04:36 +00:00
|
|
|
|
|
|
|
model = UV
|
|
|
|
form_class = UVForm
|
|
|
|
pk_url_kwarg = "uv_id"
|
2019-10-21 15:10:16 +00:00
|
|
|
template_name = "pedagogy/uv_edit.jinja"
|
2019-06-15 22:04:36 +00:00
|
|
|
|
|
|
|
def get_form_kwargs(self):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_form_kwargs()
|
2019-08-27 20:46:41 +00:00
|
|
|
obj = self.get_object()
|
|
|
|
kwargs["author_id"] = obj.author.id
|
2019-06-15 22:04:36 +00:00
|
|
|
return kwargs
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy("pedagogy:uv_detail", kwargs={"uv_id": self.object.id})
|