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.functional import cached_property
|
|
|
|
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
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
from core.models import RealGroup
|
2016-01-29 14:20:00 +00:00
|
|
|
from core.views import CanEditMixin
|
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
|
|
|
|
"""
|
|
|
|
|
|
|
|
users_added = AutoCompleteSelectMultipleField(
|
|
|
|
"users",
|
|
|
|
label=_("Users to add"),
|
|
|
|
help_text=_("Search users to add (one or more)."),
|
|
|
|
required=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
# 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-09 23:22:00 +00:00
|
|
|
class GroupTemplateView(CanEditMixin, FormView):
|
|
|
|
"""
|
|
|
|
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 get_object(self):
|
|
|
|
"""
|
|
|
|
Get current group from id in url
|
|
|
|
"""
|
|
|
|
return self.cached_object
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def cached_object(self):
|
|
|
|
"""
|
|
|
|
Optimisation on group retrieval
|
|
|
|
"""
|
|
|
|
return get_object_or_404(self.model, pk=self.group_id)
|
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
|
|
|
|
self.group_id = kwargs[self.pk_url_kwarg]
|
|
|
|
return super(GroupTemplateView, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
data = form.clean()
|
|
|
|
group = self.get_object()
|
|
|
|
for user in data["users_added"]:
|
|
|
|
group.users.add(user)
|
|
|
|
group.save()
|
|
|
|
|
|
|
|
return super(GroupTemplateView, self).form_valid(form)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
|
|
|
return reverse_lazy("core:group_detail", kwargs={"group_id": self.group_id})
|
|
|
|
|
|
|
|
def get_context_data(self):
|
|
|
|
kwargs = super(GroupTemplateView, self).get_context_data()
|
|
|
|
kwargs["object"] = self.get_object()
|
|
|
|
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")
|