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
|
2015-11-25 16:03:18 +00:00
|
|
|
from django.contrib.auth import logout as auth_logout, views
|
2015-11-25 15:20:28 +00:00
|
|
|
from django.core.urlresolvers import reverse
|
2016-07-17 10:38:02 +00:00
|
|
|
from django.core.exceptions import PermissionDenied, ObjectDoesNotExist
|
2015-11-26 15:32:56 +00:00
|
|
|
from django.views.generic.edit import UpdateView
|
2015-12-08 16:22:50 +00:00
|
|
|
from django.views.generic import ListView, DetailView, TemplateView
|
2016-07-17 22:47:56 +00:00
|
|
|
from django.forms.models import modelform_factory
|
|
|
|
from django.forms import CheckboxSelectMultiple
|
2016-08-05 07:52:19 +00:00
|
|
|
from django.conf import settings
|
2015-11-24 15:09:46 +00:00
|
|
|
import logging
|
|
|
|
|
2015-12-03 15:47:03 +00:00
|
|
|
from core.views import CanViewMixin, CanEditMixin, CanEditPropMixin
|
2016-08-11 02:24:32 +00:00
|
|
|
from core.views.forms import RegisteringForm, UserPropForm, UserProfileForm
|
2015-11-24 19:09:44 +00:00
|
|
|
from core.models import User
|
2015-11-24 15:09:46 +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
|
|
|
|
"""
|
2016-02-01 16:35:55 +00:00
|
|
|
return views.login(request, template_name="core/login.jinja")
|
2015-11-25 16:03:18 +00:00
|
|
|
|
|
|
|
def logout(request):
|
|
|
|
"""
|
|
|
|
The logout view
|
|
|
|
"""
|
|
|
|
return views.logout_then_login(request)
|
|
|
|
|
|
|
|
def password_change(request):
|
|
|
|
"""
|
|
|
|
Allows a user to change its password
|
|
|
|
"""
|
2016-02-01 16:35:55 +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
|
|
|
|
|
|
|
def password_change_done(request):
|
|
|
|
"""
|
|
|
|
Allows a user to change its password
|
|
|
|
"""
|
2016-02-01 16:35:55 +00:00
|
|
|
return views.password_change_done(request, template_name="core/password_change_done.jinja")
|
2015-11-25 16:03:18 +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
|
|
|
|
"""
|
2015-11-26 09:57:26 +00:00
|
|
|
return views.password_reset(request,
|
2016-02-01 16:35:55 +00:00
|
|
|
template_name="core/password_reset.jinja",
|
|
|
|
email_template_name="core/password_reset_email.jinja",
|
2015-11-26 10:27:52 +00:00
|
|
|
post_reset_redirect="core:password_reset_done",
|
2015-11-26 09:57:26 +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
|
|
|
|
"""
|
2016-02-01 16:35:55 +00:00
|
|
|
return views.password_reset_done(request, template_name="core/password_reset_done.jinja")
|
2015-11-25 16:03:18 +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
|
|
|
|
"""
|
2015-11-26 09:57:26 +00:00
|
|
|
return views.password_reset_confirm(request, uidb64=uidb64, token=token,
|
|
|
|
post_reset_redirect="core:password_reset_complete",
|
2016-02-01 16:35:55 +00:00
|
|
|
template_name="core/password_reset_confirm.jinja",
|
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
|
|
|
|
"""
|
2015-11-26 09:57:26 +00:00
|
|
|
return views.password_reset_complete(request,
|
2016-02-01 16:35:55 +00:00
|
|
|
template_name="core/password_reset_complete.jinja",
|
2015-11-26 09:57:26 +00:00
|
|
|
)
|
2015-11-25 16:03:18 +00:00
|
|
|
|
2015-11-26 15:32:56 +00:00
|
|
|
|
2015-11-24 15:09:46 +00:00
|
|
|
def register(request):
|
2016-07-19 17:03:16 +00:00
|
|
|
context = {}
|
2015-11-24 15:09:46 +00:00
|
|
|
if request.method == 'POST':
|
|
|
|
form = RegisteringForm(request.POST)
|
|
|
|
if form.is_valid():
|
|
|
|
logging.debug("Registering "+form.cleaned_data['first_name']+form.cleaned_data['last_name'])
|
|
|
|
u = form.save()
|
|
|
|
context['user_registered'] = u
|
|
|
|
context['tests'] = 'TEST_REGISTER_USER_FORM_OK'
|
|
|
|
form = RegisteringForm()
|
|
|
|
else:
|
|
|
|
context['error'] = 'Erreur'
|
|
|
|
context['tests'] = 'TEST_REGISTER_USER_FORM_FAIL'
|
|
|
|
else:
|
|
|
|
form = RegisteringForm()
|
|
|
|
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
|
|
|
|
2015-12-03 15:47:03 +00:00
|
|
|
class UserView(CanViewMixin, DetailView):
|
2015-11-24 15:09:46 +00:00
|
|
|
"""
|
|
|
|
Display a user's profile
|
|
|
|
"""
|
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"
|
2015-11-26 15:32:56 +00:00
|
|
|
|
|
|
|
class UserListView(ListView):
|
|
|
|
"""
|
|
|
|
Displays the user list
|
|
|
|
"""
|
|
|
|
model = User
|
2016-02-01 16:35:55 +00:00
|
|
|
template_name = "core/user_list.jinja"
|
2015-11-26 15:32:56 +00:00
|
|
|
|
2015-12-03 15:47:03 +00:00
|
|
|
class UserUpdateProfileView(CanEditMixin, UpdateView):
|
2015-11-26 15:32:56 +00:00
|
|
|
"""
|
|
|
|
Edit a user's profile
|
|
|
|
"""
|
|
|
|
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
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
self.object = self.get_object()
|
|
|
|
self.form = self.get_form()
|
|
|
|
if self.form.instance.profile_pict and not request.user.is_in_group(settings.SITH_MAIN_BOARD_GROUP):
|
|
|
|
self.form.fields.pop('profile_pict', None)
|
|
|
|
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()
|
|
|
|
if self.form.instance.profile_pict and not request.user.is_in_group(settings.SITH_MAIN_BOARD_GROUP):
|
|
|
|
self.form.fields.pop('profile_pict', None)
|
|
|
|
files = request.FILES.items()
|
|
|
|
self.form.process(files)
|
|
|
|
if request.user.is_authenticated() and request.user.can_edit(self.object) and self.form.is_valid():
|
|
|
|
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)
|
|
|
|
kwargs['profile'] = self.form.instance
|
|
|
|
kwargs['form'] = self.form
|
|
|
|
return kwargs
|
2015-11-26 15:32:56 +00:00
|
|
|
|
2016-07-17 22:47:56 +00:00
|
|
|
class UserUpdateGroupView(CanEditPropMixin, UpdateView):
|
2015-11-26 15:32:56 +00:00
|
|
|
"""
|
|
|
|
Edit a user's groups
|
|
|
|
"""
|
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
2016-07-17 22:47:56 +00:00
|
|
|
template_name = "core/user_group.jinja"
|
|
|
|
form_class = modelform_factory(User, fields=['groups'],
|
|
|
|
widgets={'groups':CheckboxSelectMultiple})
|
2016-02-01 16:35:55 +00:00
|
|
|
context_object_name = "profile"
|
2015-11-26 15:32:56 +00:00
|
|
|
|
2015-12-08 16:22:50 +00:00
|
|
|
class UserToolsView(TemplateView):
|
|
|
|
"""
|
|
|
|
Displays the logged user's tools
|
|
|
|
"""
|
2016-02-01 16:35:55 +00:00
|
|
|
template_name = "core/user_tools.jinja"
|
2016-08-05 07:52:19 +00:00
|
|
|
|
|
|
|
class UserAccountView(DetailView):
|
|
|
|
"""
|
|
|
|
Display a user's account
|
|
|
|
"""
|
|
|
|
model = User
|
|
|
|
pk_url_kwarg = "user_id"
|
|
|
|
template_name = "core/user_account.jinja"
|
|
|
|
|
|
|
|
def dispatch(self, request, *arg, **kwargs): # Manually validates the rights
|
|
|
|
res = super(UserAccountView, self).dispatch(request, *arg, **kwargs)
|
|
|
|
if (self.object == request.user
|
|
|
|
or request.user.is_in_group(settings.SITH_GROUPS['accounting-admin']['name'])
|
|
|
|
or request.user.is_in_group(settings.SITH_GROUPS['root']['name'])):
|
|
|
|
return res
|
|
|
|
raise PermissionDenied
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
kwargs = super(UserAccountView, self).get_context_data(**kwargs)
|
|
|
|
kwargs['profile'] = self.object
|
|
|
|
try:
|
|
|
|
kwargs['customer'] = self.object.customer
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
# TODO: add list of month where account has activity
|
|
|
|
return kwargs
|
|
|
|
|
|
|
|
|