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)
|
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE
|
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Views to manage Groups."""
|
2019-04-09 23:22:00 +00:00
|
|
|
|
2024-06-24 11:07:36 +00:00
|
|
|
from ajax_select.fields import AutoCompleteSelectMultipleField
|
|
|
|
from django import forms
|
2019-10-06 11:28:56 +00:00
|
|
|
from django.urls import reverse_lazy
|
2022-08-03 22:26:43 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.views.generic import ListView
|
|
|
|
from django.views.generic.edit import CreateView, DeleteView, UpdateView
|
2015-11-26 16:40:31 +00:00
|
|
|
|
2019-04-10 10:32:04 +00:00
|
|
|
from core.models import RealGroup, User
|
2021-11-30 16:54:51 +00:00
|
|
|
from core.views import CanCreateMixin, CanEditMixin, DetailFormView
|
2015-11-26 16:40:31 +00:00
|
|
|
|
2019-04-09 23:22:00 +00:00
|
|
|
# Forms
|
|
|
|
|
|
|
|
|
|
|
|
class EditMembersForm(forms.Form):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Add and remove members from a Group."""
|
2019-04-09 23:22:00 +00:00
|
|
|
|
2019-04-10 10:32:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.current_users = kwargs.pop("users", [])
|
2024-06-27 12:46:43 +00:00
|
|
|
super().__init__(*args, **kwargs)
|
2019-04-10 10:32:04 +00:00
|
|
|
self.fields["users_removed"] = forms.ModelMultipleChoiceField(
|
|
|
|
User.objects.filter(id__in=self.current_users).all(),
|
2019-04-10 23:45:42 +00:00
|
|
|
label=_("Users to remove from group"),
|
2019-04-10 10:32:04 +00:00
|
|
|
required=False,
|
|
|
|
widget=forms.CheckboxSelectMultiple,
|
|
|
|
)
|
|
|
|
|
2019-04-09 23:22:00 +00:00
|
|
|
users_added = AutoCompleteSelectMultipleField(
|
|
|
|
"users",
|
2019-04-10 23:45:42 +00:00
|
|
|
label=_("Users to add to group"),
|
2019-04-09 23:22:00 +00:00
|
|
|
help_text=_("Search users to add (one or more)."),
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
|
2019-04-10 10:32:04 +00:00
|
|
|
def clean_users_added(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Check that the user is not trying to add an user already in the group."""
|
2024-06-27 12:46:43 +00:00
|
|
|
cleaned_data = super().clean()
|
2019-04-10 10:32:04 +00:00
|
|
|
users_added = cleaned_data.get("users_added", None)
|
|
|
|
if not users_added:
|
|
|
|
return users_added
|
|
|
|
|
|
|
|
current_users = [
|
|
|
|
str(id_) for id_ in self.current_users.values_list("id", flat=True)
|
|
|
|
]
|
|
|
|
for user in users_added:
|
|
|
|
if user in current_users:
|
|
|
|
raise forms.ValidationError(
|
|
|
|
_("You can not add the same user twice"), code="invalid"
|
|
|
|
)
|
|
|
|
|
|
|
|
return users_added
|
|
|
|
|
2019-04-09 23:22:00 +00:00
|
|
|
|
|
|
|
# Views
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-01-29 14:20:00 +00:00
|
|
|
class GroupListView(CanEditMixin, ListView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Displays the Group list."""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
model = RealGroup
|
2018-04-26 16:33:10 +00:00
|
|
|
ordering = ["name"]
|
2016-02-02 10:00:08 +00:00
|
|
|
template_name = "core/group_list.jinja"
|
2015-11-26 16:40:31 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-01-29 14:20:00 +00:00
|
|
|
class GroupEditView(CanEditMixin, UpdateView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Edit infos of a Group."""
|
2019-04-09 23:22:00 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
model = RealGroup
|
2015-11-26 16:40:31 +00:00
|
|
|
pk_url_kwarg = "group_id"
|
2016-02-02 10:00:08 +00:00
|
|
|
template_name = "core/group_edit.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = ["name", "description"]
|
2015-11-26 16:40:31 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2021-11-30 16:54:51 +00:00
|
|
|
class GroupCreateView(CanCreateMixin, CreateView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Add a new Group."""
|
2019-04-09 23:22:00 +00:00
|
|
|
|
2016-05-11 15:54:00 +00:00
|
|
|
model = RealGroup
|
2021-11-30 16:54:51 +00:00
|
|
|
template_name = "core/create.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = ["name", "description"]
|
2016-05-11 15:54:00 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2019-04-10 11:21:34 +00:00
|
|
|
class GroupTemplateView(CanEditMixin, DetailFormView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Display all users in a given Group
|
|
|
|
Allow adding and removing users from it.
|
2019-04-09 23:22:00 +00:00
|
|
|
"""
|
|
|
|
|
2018-04-26 16:33:10 +00:00
|
|
|
model = RealGroup
|
2019-04-09 23:22:00 +00:00
|
|
|
form_class = EditMembersForm
|
2018-04-26 16:33:10 +00:00
|
|
|
pk_url_kwarg = "group_id"
|
|
|
|
template_name = "core/group_detail.jinja"
|
|
|
|
|
2019-04-09 23:22:00 +00:00
|
|
|
def form_valid(self, form):
|
2024-06-27 12:46:43 +00:00
|
|
|
resp = super().form_valid(form)
|
2019-04-10 10:32:04 +00:00
|
|
|
|
2019-04-09 23:22:00 +00:00
|
|
|
data = form.clean()
|
|
|
|
group = self.get_object()
|
2019-04-10 10:32:04 +00:00
|
|
|
for user in data["users_removed"]:
|
|
|
|
group.users.remove(user)
|
2019-04-09 23:22:00 +00:00
|
|
|
for user in data["users_added"]:
|
|
|
|
group.users.add(user)
|
|
|
|
group.save()
|
|
|
|
|
2019-04-10 10:32:04 +00:00
|
|
|
return resp
|
2019-04-09 23:22:00 +00:00
|
|
|
|
|
|
|
def get_success_url(self):
|
2019-04-10 11:21:34 +00:00
|
|
|
return reverse_lazy(
|
|
|
|
"core:group_detail", kwargs={"group_id": self.get_object().id}
|
|
|
|
)
|
2019-04-09 23:22:00 +00:00
|
|
|
|
2019-04-10 10:32:04 +00:00
|
|
|
def get_form_kwargs(self):
|
2024-06-27 12:46:43 +00:00
|
|
|
kwargs = super().get_form_kwargs()
|
2019-04-18 09:16:34 +00:00
|
|
|
kwargs["users"] = self.get_object().users.all()
|
2019-04-10 10:32:04 +00:00
|
|
|
return kwargs
|
|
|
|
|
2018-04-26 16:33:10 +00:00
|
|
|
|
2016-05-11 15:54:00 +00:00
|
|
|
class GroupDeleteView(CanEditMixin, DeleteView):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Delete a Group."""
|
2019-04-09 23:22:00 +00:00
|
|
|
|
2016-05-11 15:54:00 +00:00
|
|
|
model = RealGroup
|
|
|
|
pk_url_kwarg = "group_id"
|
|
|
|
template_name = "core/delete_confirm.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
success_url = reverse_lazy("core:group_list")
|