2017-04-24 15:51:12 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
|
|
|
# Copyright 2016,2017
|
|
|
|
# - Skia <skia@libskia.so>
|
2017-11-05 23:22:25 +00:00
|
|
|
# - Sli <antoine@bartuccio.fr>
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2015-11-24 15:09:46 +00:00
|
|
|
# This file contains all the views that concern the user model
|
|
|
|
from django.shortcuts import render, redirect, get_object_or_404
|
2017-06-12 07:42:03 +00:00
|
|
|
from django.contrib.auth import views
|
2016-08-22 00:56:27 +00:00
|
|
|
from django.utils.translation import ugettext as _
|
2015-11-25 15:20:28 +00:00
|
|
|
from django.core.urlresolvers import reverse
|
2017-06-12 07:42:03 +00:00
|
|
|
from django.core.exceptions import PermissionDenied, ValidationError
|
2017-10-11 10:30:33 +00:00
|
|
|
from django.http import Http404, HttpResponse
|
2015-11-26 15:32:56 +00:00
|
|
|
from django.views.generic.edit import UpdateView
|
2018-10-04 19:29:19 +00:00
|
|
|
from django.views.generic import (
|
|
|
|
ListView,
|
|
|
|
DetailView,
|
|
|
|
TemplateView,
|
|
|
|
CreateView,
|
|
|
|
DeleteView,
|
|
|
|
)
|
2016-07-17 22:47:56 +00:00
|
|
|
from django.forms.models import modelform_factory
|
|
|
|
from django.forms import CheckboxSelectMultiple
|
2017-11-05 23:22:25 +00:00
|
|
|
from django.core.urlresolvers import reverse_lazy
|
2016-08-13 15:15:45 +00:00
|
|
|
from django.template.response import TemplateResponse
|
2016-08-05 07:52:19 +00:00
|
|
|
from django.conf import settings
|
2016-09-06 19:47:15 +00:00
|
|
|
from django.views.generic.dates import YearMixin, MonthMixin
|
2016-08-18 19:32:18 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
from datetime import timedelta, date
|
2015-11-24 15:09:46 +00:00
|
|
|
import logging
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
from core.views import (
|
|
|
|
CanViewMixin,
|
|
|
|
CanEditMixin,
|
|
|
|
CanEditPropMixin,
|
|
|
|
TabedViewMixin,
|
|
|
|
QuickNotifMixin,
|
|
|
|
)
|
|
|
|
from core.views.forms import (
|
|
|
|
RegisteringForm,
|
|
|
|
UserProfileForm,
|
|
|
|
LoginForm,
|
|
|
|
UserGodfathersForm,
|
|
|
|
GiftForm,
|
|
|
|
)
|
2017-11-05 23:22:25 +00:00
|
|
|
from core.models import User, SithFile, Preferences, Gift
|
2016-09-15 09:07:03 +00:00
|
|
|
from subscription.models import Subscription
|
2017-05-10 20:17:05 +00:00
|
|
|
from trombi.views import UserTrombiForm
|
2015-11-24 15:09:46 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-11-25 16:03:18 +00:00
|
|
|
def login(request):
|
|
|
|
"""
|
|
|
|
The login view
|
|
|
|
|
|
|
|
Needs to be improve with correct handling of form exceptions
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return views.login(
|
|
|
|
request, template_name="core/login.jinja", authentication_form=LoginForm
|
|
|
|
)
|
2015-11-25 16:03:18 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-11-25 16:03:18 +00:00
|
|
|
def logout(request):
|
|
|
|
"""
|
|
|
|
The logout view
|
|
|
|
"""
|
|
|
|
return views.logout_then_login(request)
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-11-25 16:03:18 +00:00
|
|
|
def password_change(request):
|
|
|
|
"""
|
|
|
|
Allows a user to change its password
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return views.password_change(
|
|
|
|
request,
|
|
|
|
template_name="core/password_change.jinja",
|
|
|
|
post_change_redirect=reverse("core:password_change_done"),
|
|
|
|
)
|
2015-11-25 16:03:18 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-11-25 16:03:18 +00:00
|
|
|
def password_change_done(request):
|
|
|
|
"""
|
|
|
|
Allows a user to change its password
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return views.password_change_done(
|
|
|
|
request, template_name="core/password_change_done.jinja"
|
|
|
|
)
|
2015-11-25 16:03:18 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-13 15:15:45 +00:00
|
|
|
def password_root_change(request, user_id):
|
|
|
|
"""
|
|
|
|
Allows a root user to change someone's password
|
|
|
|
"""
|
2016-08-14 02:35:08 +00:00
|
|
|
if not request.user.is_root:
|
2016-08-13 15:15:45 +00:00
|
|
|
raise PermissionDenied
|
|
|
|
user = User.objects.filter(id=user_id).first()
|
|
|
|
if not user:
|
|
|
|
raise Http404("User not found")
|
|
|
|
if request.method == "POST":
|
|
|
|
form = views.SetPasswordForm(user=user, data=request.POST)
|
|
|
|
if form.is_valid():
|
|
|
|
form.save()
|
|
|
|
return redirect("core:password_change_done")
|
|
|
|
else:
|
|
|
|
form = views.SetPasswordForm(user=user)
|
2018-10-04 19:29:19 +00:00
|
|
|
return TemplateResponse(
|
|
|
|
request, "core/password_change.jinja", {"form": form, "target": user}
|
|
|
|
)
|
2016-08-13 15:15:45 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-11-26 09:57:26 +00:00
|
|
|
def password_reset(request):
|
2015-11-26 10:27:52 +00:00
|
|
|
"""
|
|
|
|
Allows someone to enter an email adresse for resetting password
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return views.password_reset(
|
|
|
|
request,
|
|
|
|
template_name="core/password_reset.jinja",
|
|
|
|
email_template_name="core/password_reset_email.jinja",
|
|
|
|
post_reset_redirect="core:password_reset_done",
|
|
|
|
)
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-11-25 16:03:18 +00:00
|
|
|
|
|
|
|
def password_reset_done(request):
|
2015-11-26 10:27:52 +00:00
|
|
|
"""
|
|
|
|
Confirm that the reset email has been sent
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return views.password_reset_done(
|
|
|
|
request, template_name="core/password_reset_done.jinja"
|
|
|
|
)
|
2015-11-25 16:03:18 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-11-26 09:57:26 +00:00
|
|
|
def password_reset_confirm(request, uidb64=None, token=None):
|
2015-11-26 10:27:52 +00:00
|
|
|
"""
|
|
|
|
Provide a reset password formular
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return views.password_reset_confirm(
|
|
|
|
request,
|
|
|
|
uidb64=uidb64,
|
|
|
|
token=token,
|
|
|
|
post_reset_redirect="core:password_reset_complete",
|
|
|
|
template_name="core/password_reset_confirm.jinja",
|
|
|
|
)
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-11-26 09:57:26 +00:00
|
|
|
|
|
|
|
def password_reset_complete(request):
|
2015-11-26 10:27:52 +00:00
|
|
|
"""
|
|
|
|
Confirm the password has sucessfully been reset
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return views.password_reset_complete(
|
|
|
|
request, template_name="core/password_reset_complete.jinja"
|
|
|
|
)
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-11-25 16:03:18 +00:00
|
|
|
|
2015-11-24 15:09:46 +00:00
|
|
|
def register(request):
|
2016-07-19 17:03:16 +00:00
|
|
|
context = {}
|
2018-10-04 19:29:19 +00:00
|
|
|
if request.method == "POST":
|
2015-11-24 15:09:46 +00:00
|
|
|
form = RegisteringForm(request.POST)
|
|
|
|
if form.is_valid():
|
2018-10-04 19:29:19 +00:00
|
|
|
logging.debug(
|
|
|
|
"Registering "
|
|
|
|
+ form.cleaned_data["first_name"]
|
|
|
|
+ form.cleaned_data["last_name"]
|
|
|
|
)
|
2015-11-24 15:09:46 +00:00
|
|
|
u = form.save()
|
2018-10-04 19:29:19 +00:00
|
|
|
context["user_registered"] = u
|
|
|
|
context["tests"] = "TEST_REGISTER_USER_FORM_OK"
|
2015-11-24 15:09:46 +00:00
|
|
|
form = RegisteringForm()
|
|
|
|
else:
|
2018-10-04 19:29:19 +00:00
|
|
|
context["error"] = "Erreur"
|
|
|
|
context["tests"] = "TEST_REGISTER_USER_FORM_FAIL"
|
2015-11-24 15:09:46 +00:00
|
|
|
else:
|
|
|
|
form = RegisteringForm()
|
2018-10-04 19:29:19 +00:00
|
|
|
context["form"] = form.as_p()
|
2016-02-01 16:35:55 +00:00
|
|
|
return render(request, "core/register.jinja", context)
|
2015-11-24 15:09:46 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-09-04 17:24:53 +00:00
|
|
|
class UserTabsMixin(TabedViewMixin):
|
|
|
|
def get_tabs_title(self):
|
|
|
|
return self.object.get_display_name()
|
|
|
|
|
|
|
|
def get_list_of_tabs(self):
|
|
|
|
tab_list = []
|
2018-10-04 19:29:19 +00:00
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse("core:user_profile", kwargs={"user_id": self.object.id}),
|
|
|
|
"slug": "infos",
|
|
|
|
"name": _("Infos"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse(
|
|
|
|
"core:user_godfathers", kwargs={"user_id": self.object.id}
|
|
|
|
),
|
|
|
|
"slug": "godfathers",
|
|
|
|
"name": _("Godfathers"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse(
|
|
|
|
"core:user_pictures", kwargs={"user_id": self.object.id}
|
|
|
|
),
|
|
|
|
"slug": "pictures",
|
|
|
|
"name": _("Pictures"),
|
|
|
|
}
|
|
|
|
)
|
2016-09-04 17:24:53 +00:00
|
|
|
if self.request.user == self.object:
|
2018-10-04 19:29:19 +00:00
|
|
|
tab_list.append(
|
|
|
|
{"url": reverse("core:user_tools"), "slug": "tools", "name": _("Tools")}
|
|
|
|
)
|
2016-09-04 17:24:53 +00:00
|
|
|
if self.request.user.can_edit(self.object):
|
2018-10-04 19:29:19 +00:00
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse(
|
|
|
|
"core:user_edit", kwargs={"user_id": self.object.id}
|
|
|
|
),
|
|
|
|
"slug": "edit",
|
|
|
|
"name": _("Edit"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse(
|
|
|
|
"core:user_prefs", kwargs={"user_id": self.object.id}
|
|
|
|
),
|
|
|
|
"slug": "prefs",
|
|
|
|
"name": _("Preferences"),
|
|
|
|
}
|
|
|
|
)
|
2016-10-05 11:08:51 +00:00
|
|
|
if self.request.user.can_view(self.object):
|
2018-10-04 19:29:19 +00:00
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse(
|
|
|
|
"core:user_clubs", kwargs={"user_id": self.object.id}
|
|
|
|
),
|
|
|
|
"slug": "clubs",
|
|
|
|
"name": _("Clubs"),
|
|
|
|
}
|
|
|
|
)
|
2016-09-04 17:24:53 +00:00
|
|
|
if self.request.user.is_owner(self.object):
|
2018-10-04 19:29:19 +00:00
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse(
|
|
|
|
"core:user_groups", kwargs={"user_id": self.object.id}
|
|
|
|
),
|
|
|
|
"slug": "groups",
|
|
|
|
"name": _("Groups"),
|
|
|
|
}
|
|
|
|
)
|
2016-09-04 17:24:53 +00:00
|
|
|
try:
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.object.customer and (
|
|
|
|
self.object == self.request.user
|
|
|
|
or self.request.user.is_in_group(
|
|
|
|
settings.SITH_GROUP_ACCOUNTING_ADMIN_ID
|
|
|
|
)
|
|
|
|
or self.request.user.is_in_group(
|
|
|
|
settings.SITH_BAR_MANAGER["unix_name"] + settings.SITH_BOARD_SUFFIX
|
|
|
|
)
|
|
|
|
or self.request.user.is_root
|
|
|
|
):
|
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse(
|
|
|
|
"core:user_stats", kwargs={"user_id": self.object.id}
|
|
|
|
),
|
|
|
|
"slug": "stats",
|
|
|
|
"name": _("Stats"),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
tab_list.append(
|
|
|
|
{
|
|
|
|
"url": reverse(
|
|
|
|
"core:user_account", kwargs={"user_id": self.object.id}
|
|
|
|
),
|
|
|
|
"slug": "account",
|
|
|
|
"name": _("Account") + " (%s €)" % self.object.customer.amount,
|
|
|
|
}
|
|
|
|
)
|
2017-06-12 07:42:03 +00:00
|
|
|
except:
|
|
|
|
pass
|
2016-09-04 17:24:53 +00:00
|
|
|
return tab_list
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-09-04 17:24:53 +00:00
|
|
|
class UserView(UserTabsMixin, CanViewMixin, DetailView):
|
2015-11-24 15:09:46 +00:00
|
|
|
"""
|
|
|
|
Display a user's profile
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2015-11-26 15:32:56 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
context_object_name = "profile"
|
2016-02-01 16:35:55 +00:00
|
|
|
template_name = "core/user_detail.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
current_tab = "infos"
|
2015-11-26 15:32:56 +00:00
|
|
|
|
2017-11-05 23:22:25 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["gift_form"] = GiftForm(
|
|
|
|
user_id=self.object.id, initial={"user": self.object}
|
|
|
|
)
|
2017-11-05 23:22:25 +00:00
|
|
|
return kwargs
|
2016-09-29 13:04:43 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-11-20 09:40:49 +00:00
|
|
|
class UserPicturesView(UserTabsMixin, CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Display a user's pictures
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-11-20 09:40:49 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
context_object_name = "profile"
|
|
|
|
template_name = "core/user_pictures.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
current_tab = "pictures"
|
2016-09-29 13:04:43 +00:00
|
|
|
|
2017-08-02 18:12:36 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserPicturesView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["albums"] = []
|
|
|
|
kwargs["pictures"] = {}
|
|
|
|
picture_qs = (
|
|
|
|
self.object.pictures.exclude(picture=None)
|
|
|
|
.order_by("-picture__parent__date", "id")
|
|
|
|
.select_related("picture__parent")
|
|
|
|
)
|
2017-08-02 18:12:36 +00:00
|
|
|
last_album = None
|
|
|
|
for pict_relation in picture_qs:
|
|
|
|
album = pict_relation.picture.parent
|
|
|
|
if album.id != last_album:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["albums"].append(album)
|
|
|
|
kwargs["pictures"][album.id] = []
|
2017-08-02 18:12:36 +00:00
|
|
|
last_album = album.id
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["pictures"][album.id].append(pict_relation.picture)
|
2017-08-02 18:12:36 +00:00
|
|
|
return kwargs
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2018-06-10 16:43:39 +00:00
|
|
|
|
2017-10-11 10:30:33 +00:00
|
|
|
def DeleteUserGodfathers(request, user_id, godfather_id, is_father):
|
|
|
|
user = User.objects.get(id=user_id)
|
2018-10-04 19:29:19 +00:00
|
|
|
if (user == request.user) or request.user.is_root or request.user.is_board_member:
|
2017-10-11 10:30:33 +00:00
|
|
|
ud = get_object_or_404(User, id=godfather_id)
|
|
|
|
if is_father == "True":
|
|
|
|
user.godfathers.remove(ud)
|
|
|
|
else:
|
|
|
|
user.godchildren.remove(ud)
|
|
|
|
else:
|
|
|
|
raise PermissionDenied
|
2018-10-04 19:29:19 +00:00
|
|
|
return redirect("core:user_godfathers", user_id=user_id)
|
2017-10-11 10:30:33 +00:00
|
|
|
|
2018-06-10 16:43:39 +00:00
|
|
|
|
2016-09-19 18:29:43 +00:00
|
|
|
class UserGodfathersView(UserTabsMixin, CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Display a user's godfathers
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-19 18:29:43 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
context_object_name = "profile"
|
|
|
|
template_name = "core/user_godfathers.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
current_tab = "godfathers"
|
2016-09-19 18:29:43 +00:00
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
self.form = UserGodfathersForm(request.POST)
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.form.is_valid() and self.form.cleaned_data["user"] != self.object:
|
|
|
|
if self.form.cleaned_data["type"] == "godfather":
|
|
|
|
self.object.godfathers.add(self.form.cleaned_data["user"])
|
2016-09-19 18:29:43 +00:00
|
|
|
self.object.save()
|
|
|
|
else:
|
2018-10-04 19:29:19 +00:00
|
|
|
self.object.godchildren.add(self.form.cleaned_data["user"])
|
2016-09-19 18:29:43 +00:00
|
|
|
self.object.save()
|
|
|
|
self.form = UserGodfathersForm()
|
|
|
|
return super(UserGodfathersView, self).get(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserGodfathersView, self).get_context_data(**kwargs)
|
|
|
|
try:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["form"] = self.form
|
2016-09-19 18:29:43 +00:00
|
|
|
except:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["form"] = UserGodfathersForm()
|
2016-09-19 18:29:43 +00:00
|
|
|
return kwargs
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-10-11 10:30:33 +00:00
|
|
|
class UserGodfathersTreeView(UserTabsMixin, CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Display a user's family tree
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-10-11 10:30:33 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
context_object_name = "profile"
|
|
|
|
template_name = "core/user_godfathers_tree.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
current_tab = "godfathers"
|
2017-10-11 10:30:33 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserGodfathersTreeView, self).get_context_data(**kwargs)
|
|
|
|
if "descent" in self.request.GET:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["param"] = "godchildren"
|
2017-10-11 10:30:33 +00:00
|
|
|
else:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["param"] = "godfathers"
|
|
|
|
kwargs["members_set"] = set()
|
2017-10-11 10:30:33 +00:00
|
|
|
return kwargs
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-10-11 10:30:33 +00:00
|
|
|
class UserGodfathersTreePictureView(CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Display a user's tree as a picture
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-10-11 10:30:33 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
|
|
|
|
def build_complex_graph(self):
|
|
|
|
import pygraphviz as pgv
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-10-11 10:30:33 +00:00
|
|
|
self.depth = int(self.request.GET.get("depth", 4))
|
|
|
|
if self.param == "godfathers":
|
|
|
|
self.graph = pgv.AGraph(strict=False, directed=True, rankdir="BT")
|
|
|
|
else:
|
|
|
|
self.graph = pgv.AGraph(strict=False, directed=True)
|
|
|
|
family = set()
|
|
|
|
self.level = 1
|
|
|
|
# Since the tree isn't very deep, we can build it recursively
|
|
|
|
def crawl_family(user):
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.level > self.depth:
|
|
|
|
return
|
2017-10-11 10:30:33 +00:00
|
|
|
self.level += 1
|
|
|
|
for u in user.__getattribute__(self.param).all():
|
|
|
|
self.graph.add_edge(user.get_short_name(), u.get_short_name())
|
|
|
|
if u not in family:
|
|
|
|
family.add(u)
|
|
|
|
crawl_family(u)
|
|
|
|
self.level -= 1
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-10-11 10:30:33 +00:00
|
|
|
self.graph.add_node(self.object.get_short_name())
|
|
|
|
family.add(self.object)
|
|
|
|
crawl_family(self.object)
|
|
|
|
|
|
|
|
def build_family_graph(self):
|
|
|
|
import pygraphviz as pgv
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-10-11 10:30:33 +00:00
|
|
|
self.graph = pgv.AGraph(strict=False, directed=True)
|
|
|
|
self.graph.add_node(self.object.get_short_name())
|
|
|
|
for u in self.object.godfathers.all():
|
|
|
|
self.graph.add_edge(u.get_short_name(), self.object.get_short_name())
|
|
|
|
for u in self.object.godchildren.all():
|
|
|
|
self.graph.add_edge(self.object.get_short_name(), u.get_short_name())
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
if "descent" in self.request.GET:
|
|
|
|
self.param = "godchildren"
|
|
|
|
elif "ancestors" in self.request.GET:
|
|
|
|
self.param = "godfathers"
|
|
|
|
else:
|
|
|
|
self.param = "family"
|
|
|
|
|
|
|
|
if self.param == "family":
|
|
|
|
self.build_family_graph()
|
|
|
|
else:
|
|
|
|
self.build_complex_graph()
|
|
|
|
# Pimp the graph before display
|
2018-10-04 19:29:19 +00:00
|
|
|
self.graph.node_attr["color"] = "lightblue"
|
|
|
|
self.graph.node_attr["style"] = "filled"
|
2017-10-11 10:30:33 +00:00
|
|
|
main_node = self.graph.get_node(self.object.get_short_name())
|
2018-10-04 19:29:19 +00:00
|
|
|
main_node.attr["color"] = "sandybrown"
|
|
|
|
main_node.attr["shape"] = "rect"
|
2017-10-11 10:30:33 +00:00
|
|
|
if self.param == "godchildren":
|
2018-10-04 19:29:19 +00:00
|
|
|
self.graph.graph_attr["label"] = _("Godchildren")
|
2017-10-11 10:30:33 +00:00
|
|
|
elif self.param == "godfathers":
|
2018-10-04 19:29:19 +00:00
|
|
|
self.graph.graph_attr["label"] = _("Godfathers")
|
2017-10-11 10:30:33 +00:00
|
|
|
else:
|
2018-10-04 19:29:19 +00:00
|
|
|
self.graph.graph_attr["label"] = _("Family")
|
2017-10-11 10:30:33 +00:00
|
|
|
img = self.graph.draw(format="png", prog="dot")
|
|
|
|
return HttpResponse(img, content_type="image/png")
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-04 17:24:53 +00:00
|
|
|
class UserStatsView(UserTabsMixin, CanViewMixin, DetailView):
|
2016-08-18 19:32:18 +00:00
|
|
|
"""
|
|
|
|
Display a user's stats
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-18 19:32:18 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
context_object_name = "profile"
|
|
|
|
template_name = "core/user_stats.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
current_tab = "stats"
|
2016-08-18 19:32:18 +00:00
|
|
|
|
2017-03-27 23:03:31 +00:00
|
|
|
def dispatch(self, request, *arg, **kwargs):
|
|
|
|
profile = self.get_object()
|
|
|
|
|
2017-03-28 12:39:52 +00:00
|
|
|
if not hasattr(profile, "customer"):
|
|
|
|
raise Http404
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
if not (
|
|
|
|
profile == request.user
|
|
|
|
or request.user.is_in_group(settings.SITH_GROUP_ACCOUNTING_ADMIN_ID)
|
|
|
|
or request.user.is_in_group(
|
|
|
|
settings.SITH_BAR_MANAGER["unix_name"] + settings.SITH_BOARD_SUFFIX
|
|
|
|
)
|
|
|
|
or request.user.is_root
|
|
|
|
):
|
2017-03-27 23:03:31 +00:00
|
|
|
raise PermissionDenied
|
|
|
|
|
|
|
|
return super(UserStatsView, self).dispatch(request, *arg, **kwargs)
|
|
|
|
|
2016-08-18 19:32:18 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserStatsView, self).get_context_data(**kwargs)
|
2017-06-12 07:42:03 +00:00
|
|
|
from counter.models import Counter
|
2016-09-22 09:09:15 +00:00
|
|
|
from django.db.models import Sum
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-19 00:53:44 +00:00
|
|
|
foyer = Counter.objects.filter(name="Foyer").first()
|
|
|
|
mde = Counter.objects.filter(name="MDE").first()
|
|
|
|
gommette = Counter.objects.filter(name="La Gommette").first()
|
2017-06-12 07:42:03 +00:00
|
|
|
semester_start = Subscription.compute_start(d=date.today(), duration=3)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["total_perm_time"] = sum(
|
|
|
|
[p.end - p.start for p in self.object.permanencies.exclude(end=None)],
|
|
|
|
timedelta(),
|
|
|
|
)
|
|
|
|
kwargs["total_foyer_time"] = sum(
|
|
|
|
[
|
|
|
|
p.end - p.start
|
|
|
|
for p in self.object.permanencies.filter(counter=foyer).exclude(
|
|
|
|
end=None
|
|
|
|
)
|
|
|
|
],
|
|
|
|
timedelta(),
|
|
|
|
)
|
|
|
|
kwargs["total_mde_time"] = sum(
|
|
|
|
[
|
|
|
|
p.end - p.start
|
|
|
|
for p in self.object.permanencies.filter(counter=mde).exclude(end=None)
|
|
|
|
],
|
|
|
|
timedelta(),
|
|
|
|
)
|
|
|
|
kwargs["total_gommette_time"] = sum(
|
|
|
|
[
|
|
|
|
p.end - p.start
|
|
|
|
for p in self.object.permanencies.filter(counter=gommette).exclude(
|
|
|
|
end=None
|
|
|
|
)
|
|
|
|
],
|
|
|
|
timedelta(),
|
|
|
|
)
|
|
|
|
kwargs["total_foyer_buyings"] = sum(
|
|
|
|
[
|
|
|
|
b.unit_price * b.quantity
|
|
|
|
for b in self.object.customer.buyings.filter(
|
|
|
|
counter=foyer, date__gte=semester_start
|
|
|
|
)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
kwargs["total_mde_buyings"] = sum(
|
|
|
|
[
|
|
|
|
b.unit_price * b.quantity
|
|
|
|
for b in self.object.customer.buyings.filter(
|
|
|
|
counter=mde, date__gte=semester_start
|
|
|
|
)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
kwargs["total_gommette_buyings"] = sum(
|
|
|
|
[
|
|
|
|
b.unit_price * b.quantity
|
|
|
|
for b in self.object.customer.buyings.filter(
|
|
|
|
counter=gommette, date__gte=semester_start
|
|
|
|
)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
kwargs["top_product"] = (
|
|
|
|
self.object.customer.buyings.values("product__name")
|
|
|
|
.annotate(product_sum=Sum("quantity"))
|
|
|
|
.exclude(product_sum=None)
|
|
|
|
.order_by("-product_sum")
|
|
|
|
.all()[:10]
|
|
|
|
)
|
2016-08-18 19:32:18 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-14 17:28:14 +00:00
|
|
|
class UserMiniView(CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Display a user's profile
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-14 17:28:14 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
context_object_name = "profile"
|
|
|
|
template_name = "core/user_mini.jinja"
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-10-27 16:39:40 +00:00
|
|
|
class UserListView(ListView, CanEditPropMixin):
|
2015-11-26 15:32:56 +00:00
|
|
|
"""
|
|
|
|
Displays the user list
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2015-11-26 15:32:56 +00:00
|
|
|
model = User
|
2016-02-01 16:35:55 +00:00
|
|
|
template_name = "core/user_list.jinja"
|
2015-11-26 15:32:56 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-22 00:56:27 +00:00
|
|
|
class UserUploadProfilePictView(CanEditMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Handle the upload of the profile picture taken with webcam in navigator
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-22 00:56:27 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
template_name = "core/user_edit.jinja"
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
from core.utils import resize_image
|
|
|
|
from io import BytesIO
|
|
|
|
from PIL import Image
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-22 00:56:27 +00:00
|
|
|
self.object = self.get_object()
|
|
|
|
if self.object.profile_pict:
|
|
|
|
raise ValidationError(_("User already has a profile picture"))
|
2018-10-04 19:29:19 +00:00
|
|
|
f = request.FILES["new_profile_pict"]
|
2016-08-22 00:56:27 +00:00
|
|
|
parent = SithFile.objects.filter(parent=None, name="profiles").first()
|
2017-06-12 07:42:03 +00:00
|
|
|
name = str(self.object.id) + "_profile.jpg" # Webcamejs uploads JPGs
|
2016-08-22 00:56:27 +00:00
|
|
|
im = Image.open(BytesIO(f.read()))
|
2018-10-04 19:29:19 +00:00
|
|
|
new_file = SithFile(
|
|
|
|
parent=parent,
|
|
|
|
name=name,
|
|
|
|
file=resize_image(im, 400, f.content_type.split("/")[-1]),
|
|
|
|
owner=self.object,
|
|
|
|
is_folder=False,
|
|
|
|
mime_type=f.content_type,
|
|
|
|
size=f._size,
|
|
|
|
)
|
2016-08-22 00:56:27 +00:00
|
|
|
new_file.file.name = name
|
|
|
|
new_file.save()
|
|
|
|
self.object.profile_pict = new_file
|
|
|
|
self.object.save()
|
|
|
|
return redirect("core:user_edit", user_id=self.object.id)
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-09-04 17:24:53 +00:00
|
|
|
class UserUpdateProfileView(UserTabsMixin, CanEditMixin, UpdateView):
|
2015-11-26 15:32:56 +00:00
|
|
|
"""
|
|
|
|
Edit a user's profile
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2015-11-26 15:32:56 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
2016-02-01 16:35:55 +00:00
|
|
|
template_name = "core/user_edit.jinja"
|
2016-08-11 02:24:32 +00:00
|
|
|
form_class = UserProfileForm
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "edit"
|
2018-10-04 19:29:19 +00:00
|
|
|
edit_once = ["profile_pict", "date_of_birth", "first_name", "last_name"]
|
2016-10-16 01:45:06 +00:00
|
|
|
board_only = []
|
2016-10-13 20:58:26 +00:00
|
|
|
|
2016-10-15 00:33:38 +00:00
|
|
|
def remove_restricted_fields(self, request):
|
|
|
|
"""
|
|
|
|
Removes edit_once and board_only fields
|
|
|
|
"""
|
2016-10-13 20:58:26 +00:00
|
|
|
for i in self.edit_once:
|
2018-10-04 19:29:19 +00:00
|
|
|
if getattr(self.form.instance, i) and not (
|
|
|
|
request.user.is_board_member or request.user.is_root
|
|
|
|
):
|
2016-10-13 20:58:26 +00:00
|
|
|
self.form.fields.pop(i, None)
|
2016-10-15 00:33:38 +00:00
|
|
|
for i in self.board_only:
|
|
|
|
if not (request.user.is_board_member or request.user.is_root):
|
|
|
|
self.form.fields.pop(i, None)
|
2016-08-11 02:24:32 +00:00
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
self.form = self.get_form()
|
2016-10-15 00:33:38 +00:00
|
|
|
self.remove_restricted_fields(request)
|
2016-08-11 02:24:32 +00:00
|
|
|
return self.render_to_response(self.get_context_data(form=self.form))
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
self.form = self.get_form()
|
2016-10-15 00:33:38 +00:00
|
|
|
self.remove_restricted_fields(request)
|
2016-08-11 02:24:32 +00:00
|
|
|
files = request.FILES.items()
|
|
|
|
self.form.process(files)
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
request.user.is_authenticated()
|
|
|
|
and request.user.can_edit(self.object)
|
|
|
|
and self.form.is_valid()
|
|
|
|
):
|
2016-08-11 02:24:32 +00:00
|
|
|
return super(UserUpdateProfileView, self).form_valid(self.form)
|
|
|
|
return self.form_invalid(self.form)
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserUpdateProfileView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["profile"] = self.form.instance
|
|
|
|
kwargs["form"] = self.form
|
2016-08-11 02:24:32 +00:00
|
|
|
return kwargs
|
2015-11-26 15:32:56 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-10-05 11:08:51 +00:00
|
|
|
class UserClubView(UserTabsMixin, CanViewMixin, DetailView):
|
|
|
|
"""
|
|
|
|
Display the user's club(s)
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-10-05 11:08:51 +00:00
|
|
|
model = User
|
|
|
|
context_object_name = "profile"
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
template_name = "core/user_clubs.jinja"
|
|
|
|
current_tab = "clubs"
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2017-01-11 00:34:16 +00:00
|
|
|
class UserPreferencesView(UserTabsMixin, CanEditMixin, UpdateView):
|
|
|
|
"""
|
|
|
|
Edit a user's preferences
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-01-15 21:56:21 +00:00
|
|
|
model = User
|
2017-01-11 00:34:16 +00:00
|
|
|
pk_url_kwarg = "user_id"
|
2017-05-09 21:42:01 +00:00
|
|
|
template_name = "core/user_preferences.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
form_class = modelform_factory(
|
|
|
|
Preferences, fields=["receive_weekmail", "notify_on_click", "notify_on_refill"]
|
|
|
|
)
|
2017-01-11 00:34:16 +00:00
|
|
|
context_object_name = "profile"
|
|
|
|
current_tab = "prefs"
|
|
|
|
|
|
|
|
def get_object(self, queryset=None):
|
2018-10-04 19:29:19 +00:00
|
|
|
user = get_object_or_404(User, pk=self.kwargs["user_id"])
|
2017-01-15 21:56:21 +00:00
|
|
|
return user
|
|
|
|
|
|
|
|
def get_form_kwargs(self):
|
|
|
|
kwargs = super(UserPreferencesView, self).get_form_kwargs()
|
2017-09-02 10:42:07 +00:00
|
|
|
pref = self.object.preferences
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs.update({"instance": pref})
|
2017-01-15 21:56:21 +00:00
|
|
|
return kwargs
|
2017-01-11 00:34:16 +00:00
|
|
|
|
2017-05-09 21:42:01 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserPreferencesView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
if not hasattr(self.object, "trombi_user"):
|
|
|
|
kwargs["trombi_form"] = UserTrombiForm()
|
2017-05-09 21:42:01 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-09-04 17:24:53 +00:00
|
|
|
class UserUpdateGroupView(UserTabsMixin, CanEditPropMixin, UpdateView):
|
2015-11-26 15:32:56 +00:00
|
|
|
"""
|
|
|
|
Edit a user's groups
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2015-11-26 15:32:56 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
2016-07-17 22:47:56 +00:00
|
|
|
template_name = "core/user_group.jinja"
|
2018-10-04 19:29:19 +00:00
|
|
|
form_class = modelform_factory(
|
|
|
|
User, fields=["groups"], widgets={"groups": CheckboxSelectMultiple}
|
|
|
|
)
|
2016-02-01 16:35:55 +00:00
|
|
|
context_object_name = "profile"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "groups"
|
2015-11-26 15:32:56 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2017-01-11 11:18:42 +00:00
|
|
|
class UserToolsView(QuickNotifMixin, UserTabsMixin, TemplateView):
|
2015-12-08 16:22:50 +00:00
|
|
|
"""
|
|
|
|
Displays the logged user's tools
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-02-01 16:35:55 +00:00
|
|
|
template_name = "core/user_tools.jinja"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "tools"
|
2016-08-05 07:52:19 +00:00
|
|
|
|
2016-08-13 14:39:09 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
2016-09-04 17:24:53 +00:00
|
|
|
self.object = self.request.user
|
2016-08-13 14:39:09 +00:00
|
|
|
from launderette.models import Launderette
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-13 14:39:09 +00:00
|
|
|
kwargs = super(UserToolsView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["launderettes"] = Launderette.objects.all()
|
|
|
|
kwargs["profile"] = self.request.user
|
|
|
|
kwargs["object"] = self.request.user
|
2016-08-13 14:39:09 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-09-06 19:47:15 +00:00
|
|
|
class UserAccountBase(UserTabsMixin, DetailView):
|
2016-08-05 07:52:19 +00:00
|
|
|
"""
|
2016-09-06 19:47:15 +00:00
|
|
|
Base class for UserAccount
|
2016-08-05 07:52:19 +00:00
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-05 07:52:19 +00:00
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
2016-09-04 17:24:53 +00:00
|
|
|
current_tab = "account"
|
2016-08-05 07:52:19 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
def dispatch(self, request, *arg, **kwargs): # Manually validates the rights
|
2016-09-06 19:47:15 +00:00
|
|
|
res = super(UserAccountBase, self).dispatch(request, *arg, **kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
self.object == request.user
|
|
|
|
or request.user.is_in_group(settings.SITH_GROUP_ACCOUNTING_ADMIN_ID)
|
|
|
|
or request.user.is_in_group(
|
|
|
|
settings.SITH_BAR_MANAGER["unix_name"] + settings.SITH_BOARD_SUFFIX
|
|
|
|
)
|
|
|
|
or request.user.is_root
|
|
|
|
):
|
2016-08-05 07:52:19 +00:00
|
|
|
return res
|
|
|
|
raise PermissionDenied
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-09-06 19:47:15 +00:00
|
|
|
class UserAccountView(UserAccountBase):
|
|
|
|
"""
|
|
|
|
Display a user's account
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-06 19:47:15 +00:00
|
|
|
template_name = "core/user_account.jinja"
|
|
|
|
|
|
|
|
def expense_by_month(self, obj, calc):
|
2016-09-06 16:43:39 +00:00
|
|
|
stats = []
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
for year in obj.datetimes("date", "year", order="DESC"):
|
2016-09-06 16:43:39 +00:00
|
|
|
stats.append([])
|
2016-09-08 01:21:39 +00:00
|
|
|
i = 0
|
|
|
|
for month in obj.filter(date__year=year.year).datetimes(
|
2018-10-04 19:29:19 +00:00
|
|
|
"date", "month", order="DESC"
|
|
|
|
):
|
|
|
|
q = obj.filter(date__year=month.year, date__month=month.month)
|
|
|
|
stats[i].append({"sum": sum([calc(p) for p in q]), "date": month})
|
2016-09-08 01:21:39 +00:00
|
|
|
i += 1
|
2016-09-06 16:43:39 +00:00
|
|
|
return stats
|
|
|
|
|
2016-09-06 19:47:15 +00:00
|
|
|
def invoices_calc(self, query):
|
|
|
|
t = 0
|
|
|
|
for it in query.items.all():
|
|
|
|
t += it.quantity * it.product_unit_price
|
|
|
|
return t
|
|
|
|
|
2016-08-05 07:52:19 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserAccountView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["profile"] = self.object
|
2016-08-05 07:52:19 +00:00
|
|
|
try:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["customer"] = self.object.customer
|
|
|
|
kwargs["buyings_month"] = self.expense_by_month(
|
|
|
|
self.object.customer.buyings, (lambda q: q.unit_price * q.quantity)
|
2016-09-06 19:47:15 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["invoices_month"] = self.expense_by_month(
|
|
|
|
self.object.customer.user.invoices, self.invoices_calc
|
2016-09-06 19:47:15 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["refilling_month"] = self.expense_by_month(
|
|
|
|
self.object.customer.refillings, (lambda q: q.amount)
|
2016-09-06 19:47:15 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["etickets"] = self.object.customer.buyings.exclude(
|
|
|
|
product__eticket=None
|
|
|
|
).all()
|
2017-02-22 23:27:53 +00:00
|
|
|
except Exception as e:
|
|
|
|
print(repr(e))
|
2016-08-05 07:52:19 +00:00
|
|
|
return kwargs
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-09-06 19:47:15 +00:00
|
|
|
class UserAccountDetailView(UserAccountBase, YearMixin, MonthMixin):
|
|
|
|
"""
|
|
|
|
Display a user's account for month
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-09-06 19:47:15 +00:00
|
|
|
template_name = "core/user_account_detail.jinja"
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserAccountDetailView, self).get_context_data(**kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["profile"] = self.object
|
|
|
|
kwargs["year"] = self.get_year()
|
|
|
|
kwargs["month"] = self.get_month()
|
2016-09-06 19:47:15 +00:00
|
|
|
try:
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["customer"] = self.object.customer
|
2016-09-06 19:47:15 +00:00
|
|
|
except:
|
|
|
|
pass
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["tab"] = "account"
|
2016-09-06 19:47:15 +00:00
|
|
|
return kwargs
|
2017-11-05 23:22:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
class GiftCreateView(CreateView):
|
|
|
|
form_class = GiftForm
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/create.jinja"
|
2017-11-05 23:22:25 +00:00
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
if not (request.user.is_board_member or request.user.is_root):
|
|
|
|
raise PermissionDenied
|
2018-10-04 19:29:19 +00:00
|
|
|
self.user = get_object_or_404(User, pk=kwargs["user_id"])
|
2017-11-05 23:22:25 +00:00
|
|
|
return super(GiftCreateView, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_initial(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return {"user": self.user}
|
2017-11-05 23:22:25 +00:00
|
|
|
|
|
|
|
def get_form_kwargs(self):
|
|
|
|
kwargs = super(GiftCreateView, self).get_form_kwargs()
|
2018-10-04 19:29:19 +00:00
|
|
|
kwargs["user_id"] = self.user.id
|
2017-11-05 23:22:25 +00:00
|
|
|
return kwargs
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse_lazy("core:user_profile", kwargs={"user_id": self.user.id})
|
2017-11-05 23:22:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
class GiftDeleteView(CanEditPropMixin, DeleteView):
|
|
|
|
model = Gift
|
|
|
|
pk_url_kwarg = "gift_id"
|
2018-10-04 19:29:19 +00:00
|
|
|
template_name = "core/delete_confirm.jinja"
|
2017-11-05 23:22:25 +00:00
|
|
|
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.user = get_object_or_404(User, pk=kwargs["user_id"])
|
2017-11-05 23:22:25 +00:00
|
|
|
return super(GiftDeleteView, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_success_url(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse_lazy("core:user_profile", kwargs={"user_id": self.user.id})
|