2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# Copyright 2023 © AE UTBM
|
|
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
|
|
# https://ae.utbm.fr.
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2024-09-22 23:37:25 +00:00
|
|
|
# You can find the source code of the website at https://github.com/ae-utbm/sith
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
2024-09-23 08:25:27 +00:00
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE
|
2023-04-04 16:39:45 +00:00
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.core.exceptions import PermissionDenied
|
2024-12-06 23:06:33 +00:00
|
|
|
from django.shortcuts import get_object_or_404
|
|
|
|
from django.urls import reverse_lazy
|
|
|
|
from django.views.generic.edit import DeleteView, FormView
|
2016-03-28 12:54:35 +00:00
|
|
|
|
2024-12-06 23:06:33 +00:00
|
|
|
from core.views import CanEditMixin
|
|
|
|
from counter.forms import StudentCardForm
|
|
|
|
from counter.models import Customer, StudentCard
|
2024-10-06 11:22:09 +00:00
|
|
|
|
2017-06-12 07:47:24 +00:00
|
|
|
|
2018-11-11 21:56:51 +00:00
|
|
|
class StudentCardDeleteView(DeleteView, CanEditMixin):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""View used to delete a card from a user."""
|
2018-10-19 17:25:55 +00:00
|
|
|
|
|
|
|
model = StudentCard
|
|
|
|
template_name = "core/delete_confirm.jinja"
|
|
|
|
pk_url_kwarg = "card_id"
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
self.customer = get_object_or_404(Customer, pk=kwargs["customer_id"])
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().dispatch(request, *args, **kwargs)
|
2018-10-19 17:25:55 +00:00
|
|
|
|
|
|
|
def get_success_url(self, **kwargs):
|
|
|
|
return reverse_lazy(
|
|
|
|
"core:user_prefs", kwargs={"user_id": self.customer.user.pk}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class StudentCardFormView(FormView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Add a new student card."""
|
2018-10-19 17:25:55 +00:00
|
|
|
|
|
|
|
form_class = StudentCardForm
|
|
|
|
template_name = "core/create.jinja"
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
self.customer = get_object_or_404(Customer, pk=kwargs["customer_id"])
|
2018-11-11 21:56:51 +00:00
|
|
|
if not StudentCard.can_create(self.customer, request.user):
|
|
|
|
raise PermissionDenied
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().dispatch(request, *args, **kwargs)
|
2018-10-19 17:25:55 +00:00
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
data = form.clean()
|
|
|
|
res = super(FormView, self).form_valid(form)
|
2018-11-11 21:56:51 +00:00
|
|
|
StudentCard(customer=self.customer, uid=data["uid"]).save()
|
2018-10-19 17:25:55 +00:00
|
|
|
return res
|
|
|
|
|
|
|
|
def get_success_url(self, **kwargs):
|
|
|
|
return reverse_lazy(
|
|
|
|
"core:user_prefs", kwargs={"user_id": self.customer.user.pk}
|
|
|
|
)
|