Sith/pedagogy/views.py

257 lines
7.5 KiB
Python
Raw Normal View History

2019-05-16 14:51:30 +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-06-24 11:07:36 +00:00
from django.core.exceptions import ObjectDoesNotExist, PermissionDenied
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
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-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
def get_form_kwargs(self):
2024-06-27 12:46:43 +00:00
kwargs = super().get_form_kwargs()
kwargs["author_id"] = self.request.user.id
kwargs["uv_id"] = self.get_object().id
kwargs["is_creation"] = True
return kwargs
def form_valid(self, form):
form.save()
2024-06-27 12:46:43 +00:00
return super().form_valid(form)
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
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
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()
obj = self.get_object()
kwargs["author_id"] = obj.author.id
kwargs["uv_id"] = obj.uv.id
kwargs["is_creation"] = False
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."""
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)
)
2024-07-18 18:23:30 +00:00
}
2019-05-16 14:51:30 +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
model = UVCommentReport
form_class = UVCommentReportForm
template_name = "core/edit.jinja"
2019-05-16 14:51:30 +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
def get_form_kwargs(self):
2024-06-27 12:46:43 +00:00
kwargs = super().get_form_kwargs()
kwargs["reporter_id"] = self.request.user.id
kwargs["comment_id"] = self.uv_comment.id
return kwargs
2019-05-16 14:51:30 +00:00
def form_valid(self, form):
2024-06-27 12:46:43 +00:00
resp = super().form_valid(form)
# 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
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()
for report in form_clean.get("accepted_reports", []):
try:
report.comment.delete() # Delete the related comment
except ObjectDoesNotExist:
# To avoid errors when two reports points the same comment
pass
for report in form_clean.get("denied_reports", []):
try:
report.delete() # Delete the report itself
except ObjectDoesNotExist:
# To avoid errors when two reports points the same comment
pass
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
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
model = UV
form_class = UVForm
template_name = "pedagogy/uv_edit.jinja"
def get_form_kwargs(self):
2024-06-27 12:46:43 +00:00
kwargs = super().get_form_kwargs()
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"
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()
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})