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.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2019-04-09 23:22:00 +00:00
|
|
|
"""
|
|
|
|
This module contains views to manage Groups
|
|
|
|
"""
|
|
|
|
|
2016-05-11 15:54:00 +00:00
|
|
|
from django.views.generic.edit import UpdateView, CreateView, DeleteView
|
2019-04-09 23:22:00 +00:00
|
|
|
from django.views.generic import ListView
|
|
|
|
from django.views.generic.edit import FormView
|
2016-05-11 15:54:00 +00:00
|
|
|
from django.core.urlresolvers import reverse_lazy
|
2019-04-09 23:22:00 +00:00
|
|
|
from django.shortcuts import get_object_or_404
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from django import forms
|
|
|
|
|
|
|
|
from ajax_select.fields import AutoCompleteSelectMultipleField
|
2015-11-26 16:40:31 +00:00
|
|
|
|
2019-04-10 10:32:04 +00:00
|
|
|
from core.models import RealGroup, User
|
2019-04-10 11:21:34 +00:00
|
|
|
from core.views import CanEditMixin, DetailFormView
|
2015-11-26 16:40:31 +00:00
|
|
|
|
2019-04-09 23:22:00 +00:00
|
|
|
# Forms
|
|
|
|
|
|
|
|
|
|
|
|
class EditMembersForm(forms.Form):
|
|
|
|
"""
|
|
|
|
Add and remove members from a Group
|
|
|
|
"""
|
|
|
|
|
2019-04-10 10:32:04 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.current_users = kwargs.pop("users", [])
|
|
|
|
super(EditMembersForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields["users_removed"] = forms.ModelMultipleChoiceField(
|
|
|
|
User.objects.filter(id__in=self.current_users).all(),
|
2019-04-10 12:11:31 +00:00
|
|
|
label=_("Users to delete"),
|
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",
|
|
|
|
label=_("Users to add"),
|
|
|
|
help_text=_("Search users to add (one or more)."),
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
|
2019-04-10 10:32:04 +00:00
|
|
|
def clean_users_added(self):
|
2019-04-10 12:11:31 +00:00
|
|
|
"""
|
|
|
|
Check that the user is not trying to add an user already in the group
|
|
|
|
"""
|
2019-04-10 10:32:04 +00:00
|
|
|
cleaned_data = super(EditMembersForm, self).clean()
|
|
|
|
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):
|
2015-11-26 16:40:31 +00:00
|
|
|
"""
|
2019-04-09 23:22:00 +00:00
|
|
|
Displays the Group list
|
2015-11-26 16:40:31 +00:00
|
|
|
"""
|
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):
|
2019-04-09 23:22:00 +00:00
|
|
|
"""
|
|
|
|
Edit infos of a Group
|
|
|
|
"""
|
|
|
|
|
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
|
|
|
|
2016-05-11 15:54:00 +00:00
|
|
|
class GroupCreateView(CanEditMixin, CreateView):
|
2019-04-09 23:22:00 +00:00
|
|
|
"""
|
|
|
|
Add a new Group
|
|
|
|
"""
|
|
|
|
|
2016-05-11 15:54:00 +00:00
|
|
|
model = RealGroup
|
|
|
|
template_name = "core/group_edit.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):
|
2019-04-09 23:22:00 +00:00
|
|
|
"""
|
|
|
|
Display all users in a given Group
|
|
|
|
Allow adding and removing users from it
|
|
|
|
"""
|
|
|
|
|
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 dispatch(self, request, *args, **kwargs):
|
|
|
|
|
2019-04-10 10:32:04 +00:00
|
|
|
self.users = self.get_object().users.all()
|
2019-04-10 11:21:34 +00:00
|
|
|
resp = super(GroupTemplateView, self).dispatch(request, *args, **kwargs)
|
|
|
|
return resp
|
2019-04-09 23:22:00 +00:00
|
|
|
|
|
|
|
def form_valid(self, form):
|
2019-04-10 10:32:04 +00:00
|
|
|
resp = super(GroupTemplateView, self).form_valid(form)
|
|
|
|
|
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):
|
|
|
|
kwargs = super(GroupTemplateView, self).get_form_kwargs()
|
|
|
|
kwargs["users"] = self.users
|
|
|
|
return kwargs
|
|
|
|
|
2018-04-26 16:33:10 +00:00
|
|
|
|
2016-05-11 15:54:00 +00:00
|
|
|
class GroupDeleteView(CanEditMixin, DeleteView):
|
2019-04-09 23:22:00 +00:00
|
|
|
"""
|
|
|
|
Delete a Group
|
|
|
|
"""
|
|
|
|
|
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")
|