2016-07-15 00:02:56 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2016-07-15 00:02:56 +02:00
|
|
|
from __future__ import division
|
|
|
|
from __future__ import print_function
|
2016-05-26 22:44:10 +02:00
|
|
|
from __future__ import unicode_literals
|
2013-09-05 22:20:52 +02:00
|
|
|
|
|
|
|
import unicodecsv
|
|
|
|
|
|
|
|
from django.shortcuts import redirect, get_object_or_404, render
|
|
|
|
from django.http import Http404, HttpResponse
|
2012-06-27 23:28:35 +02:00
|
|
|
from django.contrib.auth.decorators import login_required
|
2013-09-05 22:20:52 +02:00
|
|
|
from django.contrib.auth.views import login as django_login_view
|
2016-05-28 23:54:21 +02:00
|
|
|
from django.contrib.auth.models import User
|
2016-05-26 22:44:10 +02:00
|
|
|
import django.utils.six as six
|
2012-07-11 17:39:20 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
from gestioncof.models import Survey, SurveyAnswer, SurveyQuestion, \
|
|
|
|
SurveyQuestionAnswer
|
|
|
|
from gestioncof.models import Event, EventRegistration, EventOption, \
|
|
|
|
EventOptionChoice
|
2014-08-19 12:54:22 +02:00
|
|
|
from gestioncof.models import EventCommentField, EventCommentValue
|
2016-05-27 17:52:02 +02:00
|
|
|
from gestioncof.shared import send_custom_mail
|
2013-09-05 22:20:52 +02:00
|
|
|
from gestioncof.models import CofProfile, Clipper
|
2016-06-10 23:59:41 +02:00
|
|
|
from gestioncof.decorators import buro_required
|
2016-05-27 17:52:02 +02:00
|
|
|
from gestioncof.forms import UserProfileForm, EventStatusFilterForm, \
|
|
|
|
SurveyForm, SurveyStatusFilterForm, RegistrationUserForm, \
|
|
|
|
RegistrationProfileForm, AdminEventForm, EventForm
|
2012-06-27 23:28:35 +02:00
|
|
|
|
2016-06-06 11:19:27 +02:00
|
|
|
from bda.models import Tirage
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
@login_required
|
|
|
|
def home(request):
|
2016-06-06 11:19:27 +02:00
|
|
|
data = {"surveys": Survey.objects.filter(old=False).all(),
|
|
|
|
"events": Event.objects.filter(old=False).all(),
|
2016-07-09 22:31:56 +02:00
|
|
|
"open_surveys":
|
|
|
|
Survey.objects.filter(survey_open=True, old=False).all(),
|
|
|
|
"open_events":
|
|
|
|
Event.objects.filter(registration_open=True, old=False).all(),
|
2016-06-06 11:19:27 +02:00
|
|
|
"open_tirages": Tirage.objects.filter(active=True).all()}
|
2013-09-05 22:20:52 +02:00
|
|
|
return render(request, "home.html", data)
|
2012-06-27 23:28:35 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
def login(request):
|
|
|
|
if request.user.is_authenticated():
|
|
|
|
return redirect("gestioncof.views.home")
|
2013-09-05 22:20:52 +02:00
|
|
|
return render(request, "login_switch.html", {})
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
def login_ext(request):
|
|
|
|
if request.method == "POST" and "username" in request.POST:
|
|
|
|
try:
|
2016-07-09 21:19:37 +02:00
|
|
|
user = User.objects.get(username=request.POST["username"])
|
|
|
|
if not user.has_usable_password() or user.password in ("", "!"):
|
|
|
|
profile, created = CofProfile.objects.get_or_create(user=user)
|
2013-09-05 22:20:52 +02:00
|
|
|
if profile.login_clipper:
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "error.html",
|
|
|
|
{"error_type": "use_clipper_login"})
|
2013-09-05 22:20:52 +02:00
|
|
|
else:
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "error.html",
|
|
|
|
{"error_type": "no_password"})
|
2013-09-05 22:20:52 +02:00
|
|
|
except User.DoesNotExist:
|
|
|
|
pass
|
2016-07-09 21:19:37 +02:00
|
|
|
return django_login_view(request, template_name='login.html')
|
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
|
|
|
|
@login_required
|
|
|
|
def logout(request):
|
2012-07-11 17:39:20 +02:00
|
|
|
try:
|
2016-05-24 00:02:25 +02:00
|
|
|
profile = request.user.profile
|
2012-07-11 17:39:20 +02:00
|
|
|
except CofProfile.DoesNotExist:
|
2016-07-09 21:19:37 +02:00
|
|
|
profile, created = CofProfile.objects.get_or_create(user=request.user)
|
2012-07-11 17:39:20 +02:00
|
|
|
if profile.login_clipper:
|
2016-05-26 22:20:04 +02:00
|
|
|
return redirect("django_cas_ng.views.logout")
|
2012-06-27 23:28:35 +02:00
|
|
|
else:
|
|
|
|
return redirect("django.contrib.auth.views.logout")
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-06-27 23:28:35 +02:00
|
|
|
@login_required
|
|
|
|
def survey(request, survey_id):
|
2016-07-09 21:19:37 +02:00
|
|
|
survey = get_object_or_404(Survey, id=survey_id)
|
2012-06-27 23:28:35 +02:00
|
|
|
if not survey.survey_open:
|
|
|
|
raise Http404
|
|
|
|
success = False
|
2012-07-11 17:39:20 +02:00
|
|
|
deleted = False
|
2012-06-27 23:28:35 +02:00
|
|
|
if request.method == "POST":
|
2016-07-09 21:19:37 +02:00
|
|
|
form = SurveyForm(request.POST, survey=survey)
|
2012-07-11 17:39:20 +02:00
|
|
|
if request.POST.get('delete'):
|
2012-06-27 23:28:35 +02:00
|
|
|
try:
|
2016-07-09 22:31:56 +02:00
|
|
|
current_answer = SurveyAnswer.objects.get(user=request.user,
|
|
|
|
survey=survey)
|
2012-07-11 17:39:20 +02:00
|
|
|
current_answer.delete()
|
|
|
|
current_answer = None
|
2012-06-27 23:28:35 +02:00
|
|
|
except SurveyAnswer.DoesNotExist:
|
2012-07-11 17:39:20 +02:00
|
|
|
current_answer = None
|
2016-07-09 21:19:37 +02:00
|
|
|
form = SurveyForm(survey=survey)
|
2012-06-27 23:28:35 +02:00
|
|
|
success = True
|
2012-07-11 17:39:20 +02:00
|
|
|
deleted = True
|
|
|
|
else:
|
|
|
|
if form.is_valid():
|
|
|
|
all_answers = []
|
|
|
|
for question_id, answers_ids in form.answers():
|
2016-07-09 22:31:56 +02:00
|
|
|
question = get_object_or_404(SurveyQuestion,
|
|
|
|
id=question_id,
|
2016-07-09 21:19:37 +02:00
|
|
|
survey=survey)
|
2012-07-11 17:39:20 +02:00
|
|
|
if type(answers_ids) != list:
|
|
|
|
answers_ids = [answers_ids]
|
|
|
|
if not question.multi_answers and len(answers_ids) > 1:
|
|
|
|
raise Http404
|
|
|
|
for answer_id in answers_ids:
|
|
|
|
if not answer_id:
|
|
|
|
continue
|
|
|
|
answer_id = int(answer_id)
|
|
|
|
answer = SurveyQuestionAnswer.objects.get(
|
2016-07-09 21:19:37 +02:00
|
|
|
id=answer_id,
|
|
|
|
survey_question=question)
|
2012-07-11 17:39:20 +02:00
|
|
|
all_answers.append(answer)
|
|
|
|
try:
|
2016-07-09 22:31:56 +02:00
|
|
|
current_answer = SurveyAnswer.objects.get(
|
|
|
|
user=request.user, survey=survey)
|
2012-07-11 17:39:20 +02:00
|
|
|
except SurveyAnswer.DoesNotExist:
|
2016-07-09 22:31:56 +02:00
|
|
|
current_answer = SurveyAnswer(user=request.user,
|
|
|
|
survey=survey)
|
2012-07-11 17:39:20 +02:00
|
|
|
current_answer.save()
|
|
|
|
current_answer.answers = all_answers
|
|
|
|
current_answer.save()
|
|
|
|
success = True
|
2012-06-27 23:28:35 +02:00
|
|
|
else:
|
|
|
|
try:
|
2016-07-09 22:31:56 +02:00
|
|
|
current_answer = SurveyAnswer.objects.get(user=request.user,
|
|
|
|
survey=survey)
|
|
|
|
form = SurveyForm(survey=survey,
|
|
|
|
current_answers=current_answer.answers)
|
2012-06-27 23:28:35 +02:00
|
|
|
except SurveyAnswer.DoesNotExist:
|
2012-07-11 17:39:20 +02:00
|
|
|
current_answer = None
|
2016-07-09 21:19:37 +02:00
|
|
|
form = SurveyForm(survey=survey)
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "survey.html", {"survey": survey, "form": form,
|
|
|
|
"success": success,
|
|
|
|
"deleted": deleted,
|
|
|
|
"current_answer": current_answer})
|
2012-07-11 17:39:20 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
def get_event_form_choices(event, form):
|
|
|
|
all_choices = []
|
|
|
|
for option_id, choices_ids in form.choices():
|
2016-07-09 21:19:37 +02:00
|
|
|
option = get_object_or_404(EventOption, id=option_id,
|
|
|
|
event=event)
|
2013-09-05 22:20:52 +02:00
|
|
|
if type(choices_ids) != list:
|
|
|
|
choices_ids = [choices_ids]
|
|
|
|
if not option.multi_choices and len(choices_ids) > 1:
|
|
|
|
raise Http404
|
|
|
|
for choice_id in choices_ids:
|
|
|
|
if not choice_id:
|
|
|
|
continue
|
|
|
|
choice_id = int(choice_id)
|
|
|
|
choice = EventOptionChoice.objects.get(
|
2016-07-09 21:19:37 +02:00
|
|
|
id=choice_id,
|
|
|
|
event_option=option)
|
2013-09-05 22:20:52 +02:00
|
|
|
all_choices.append(choice)
|
|
|
|
return all_choices
|
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2014-08-19 12:54:22 +02:00
|
|
|
def update_event_form_comments(event, form, registration):
|
|
|
|
for commentfield_id, value in form.comments():
|
2016-07-09 21:19:37 +02:00
|
|
|
field = get_object_or_404(EventCommentField, id=commentfield_id,
|
|
|
|
event=event)
|
2014-08-19 12:54:22 +02:00
|
|
|
if value == field.default:
|
|
|
|
continue
|
2016-07-09 22:31:56 +02:00
|
|
|
(storage, _) = EventCommentValue.objects.get_or_create(
|
|
|
|
commentfield=field,
|
|
|
|
registration=registration)
|
2014-08-19 12:54:22 +02:00
|
|
|
storage.content = value
|
|
|
|
storage.save()
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-07-11 17:39:20 +02:00
|
|
|
@login_required
|
|
|
|
def event(request, event_id):
|
2016-07-09 21:19:37 +02:00
|
|
|
event = get_object_or_404(Event, id=event_id)
|
2012-07-11 17:39:20 +02:00
|
|
|
if not event.registration_open:
|
|
|
|
raise Http404
|
|
|
|
success = False
|
|
|
|
if request.method == "POST":
|
2016-07-09 21:19:37 +02:00
|
|
|
form = EventForm(request.POST, event=event)
|
2012-07-11 17:39:20 +02:00
|
|
|
if form.is_valid():
|
2013-09-05 22:20:52 +02:00
|
|
|
all_choices = get_event_form_choices(event, form)
|
2016-07-09 22:31:56 +02:00
|
|
|
(current_registration, _) = \
|
|
|
|
EventRegistration.objects.get_or_create(user=request.user,
|
|
|
|
event=event)
|
2012-07-11 17:39:20 +02:00
|
|
|
current_registration.options = all_choices
|
|
|
|
current_registration.save()
|
|
|
|
success = True
|
|
|
|
else:
|
|
|
|
try:
|
2016-07-09 22:31:56 +02:00
|
|
|
current_registration = \
|
|
|
|
EventRegistration.objects.get(user=request.user, event=event)
|
|
|
|
form = EventForm(event=event,
|
|
|
|
current_choices=current_registration.options)
|
2012-07-11 17:39:20 +02:00
|
|
|
except EventRegistration.DoesNotExist:
|
2016-07-09 21:19:37 +02:00
|
|
|
form = EventForm(event=event)
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "event.html",
|
|
|
|
{"event": event, "form": form, "success": success})
|
|
|
|
|
2012-07-11 17:39:20 +02:00
|
|
|
|
|
|
|
def clean_post_for_status(initial):
|
2013-09-05 22:20:52 +02:00
|
|
|
d = initial.copy()
|
2012-07-11 17:39:20 +02:00
|
|
|
for k, v in d.items():
|
|
|
|
if k.startswith("id_"):
|
|
|
|
del d[k]
|
2013-09-05 22:20:52 +02:00
|
|
|
d[k[3:]] = v
|
2012-07-11 17:39:20 +02:00
|
|
|
return d
|
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
@buro_required
|
2012-07-11 17:39:20 +02:00
|
|
|
def event_status(request, event_id):
|
2016-07-09 21:19:37 +02:00
|
|
|
event = get_object_or_404(Event, id=event_id)
|
|
|
|
registrations_query = EventRegistration.objects.filter(event=event)
|
2012-07-11 17:39:20 +02:00
|
|
|
post_data = clean_post_for_status(request.POST)
|
2016-07-09 21:19:37 +02:00
|
|
|
form = EventStatusFilterForm(post_data or None, event=event)
|
2012-07-11 17:39:20 +02:00
|
|
|
if form.is_valid():
|
|
|
|
for option_id, choice_id, value in form.filters():
|
2013-09-05 22:20:52 +02:00
|
|
|
if option_id == "has_paid":
|
|
|
|
if value == "yes":
|
2016-07-09 21:19:37 +02:00
|
|
|
registrations_query = registrations_query.filter(paid=True)
|
2013-09-05 22:20:52 +02:00
|
|
|
elif value == "no":
|
2016-07-09 22:31:56 +02:00
|
|
|
registrations_query = registrations_query.filter(
|
|
|
|
paid=False)
|
2013-09-05 22:20:52 +02:00
|
|
|
continue
|
2016-07-09 22:31:56 +02:00
|
|
|
choice = get_object_or_404(EventOptionChoice, id=choice_id,
|
|
|
|
event_option__id=option_id)
|
2012-07-11 17:39:20 +02:00
|
|
|
if value == "none":
|
|
|
|
continue
|
|
|
|
if value == "yes":
|
2016-07-09 22:31:56 +02:00
|
|
|
registrations_query = registrations_query.filter(
|
|
|
|
options__id__exact=choice.id)
|
2012-07-11 17:39:20 +02:00
|
|
|
elif value == "no":
|
2016-07-09 22:31:56 +02:00
|
|
|
registrations_query = registrations_query.exclude(
|
|
|
|
options__id__exact=choice.id)
|
2012-07-11 17:39:20 +02:00
|
|
|
user_choices = registrations_query.prefetch_related("user").all()
|
2016-07-09 21:19:37 +02:00
|
|
|
options = EventOption.objects.filter(event=event).all()
|
2012-07-11 17:39:20 +02:00
|
|
|
choices_count = {}
|
|
|
|
for option in options:
|
|
|
|
for choice in option.choices.all():
|
|
|
|
choices_count[choice.id] = 0
|
|
|
|
for user_choice in user_choices:
|
|
|
|
for choice in user_choice.options.all():
|
|
|
|
choices_count[choice.id] += 1
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "event_status.html",
|
|
|
|
{"event": event, "user_choices": user_choices,
|
|
|
|
"options": options, "choices_count": choices_count,
|
|
|
|
"form": form})
|
2012-07-11 17:39:20 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
@buro_required
|
2012-07-11 17:39:20 +02:00
|
|
|
def survey_status(request, survey_id):
|
2016-07-09 21:19:37 +02:00
|
|
|
survey = get_object_or_404(Survey, id=survey_id)
|
|
|
|
answers_query = SurveyAnswer.objects.filter(survey=survey)
|
2012-07-11 17:39:20 +02:00
|
|
|
post_data = clean_post_for_status(request.POST)
|
2016-07-09 21:19:37 +02:00
|
|
|
form = SurveyStatusFilterForm(post_data or None, survey=survey)
|
2012-07-11 17:39:20 +02:00
|
|
|
if form.is_valid():
|
|
|
|
for question_id, answer_id, value in form.filters():
|
2016-07-09 22:31:56 +02:00
|
|
|
answer = get_object_or_404(SurveyQuestionAnswer, id=answer_id,
|
|
|
|
survey_question__id=question_id)
|
2012-07-11 17:39:20 +02:00
|
|
|
if value == "none":
|
|
|
|
continue
|
|
|
|
if value == "yes":
|
2016-07-09 22:31:56 +02:00
|
|
|
answers_query = answers_query.filter(
|
|
|
|
answers__id__exact=answer.id)
|
2012-07-11 17:39:20 +02:00
|
|
|
elif value == "no":
|
2016-07-09 22:31:56 +02:00
|
|
|
answers_query = answers_query.exclude(
|
|
|
|
answers__id__exact=answer.id)
|
2012-07-11 17:39:20 +02:00
|
|
|
user_answers = answers_query.prefetch_related("user").all()
|
2016-07-09 21:19:37 +02:00
|
|
|
questions = SurveyQuestion.objects.filter(survey=survey).all()
|
2012-07-11 17:39:20 +02:00
|
|
|
answers_count = {}
|
|
|
|
for question in questions:
|
|
|
|
for answer in question.answers.all():
|
|
|
|
answers_count[answer.id] = 0
|
|
|
|
for user_answer in user_answers:
|
|
|
|
for answer in user_answer.answers.all():
|
|
|
|
answers_count[answer.id] += 1
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "survey_status.html",
|
|
|
|
{"survey": survey, "user_answers": user_answers,
|
|
|
|
"questions": questions, "answers_count": answers_count,
|
|
|
|
"form": form})
|
2012-07-11 17:39:20 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2012-07-11 17:39:20 +02:00
|
|
|
@login_required
|
|
|
|
def profile(request):
|
|
|
|
success = False
|
|
|
|
if request.method == "POST":
|
2016-07-09 21:19:37 +02:00
|
|
|
form = UserProfileForm(request.POST, instance=request.user.profile)
|
2012-07-11 17:39:20 +02:00
|
|
|
if form.is_valid():
|
|
|
|
form.save()
|
|
|
|
success = True
|
|
|
|
else:
|
2016-07-09 21:19:37 +02:00
|
|
|
form = UserProfileForm(instance=request.user.profile)
|
2013-09-05 22:20:52 +02:00
|
|
|
return render(request, "profile.html", {"form": form, "success": success})
|
2012-07-11 17:39:20 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
def registration_set_ro_fields(user_form, profile_form):
|
|
|
|
user_form.fields['username'].widget.attrs['readonly'] = True
|
|
|
|
profile_form.fields['login_clipper'].widget.attrs['readonly'] = True
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
@buro_required
|
2016-07-09 21:19:37 +02:00
|
|
|
def registration_form(request, login_clipper=None, username=None):
|
2013-09-05 22:20:52 +02:00
|
|
|
member = None
|
|
|
|
if login_clipper:
|
2016-07-09 21:19:37 +02:00
|
|
|
clipper = get_object_or_404(Clipper, username=login_clipper)
|
|
|
|
try: # check if the given user is already registered
|
|
|
|
member = User.objects.filter(username=login_clipper).get()
|
2013-09-05 22:20:52 +02:00
|
|
|
username = member.username
|
|
|
|
login_clipper = None
|
|
|
|
except User.DoesNotExist:
|
|
|
|
# new user, but prefill
|
|
|
|
user_form = RegistrationUserForm()
|
|
|
|
profile_form = RegistrationProfileForm()
|
|
|
|
user_form.fields['username'].initial = login_clipper
|
2016-07-09 22:31:56 +02:00
|
|
|
user_form.fields['email'].initial = \
|
|
|
|
login_clipper + "@clipper.ens.fr"
|
2013-09-05 22:20:52 +02:00
|
|
|
profile_form.fields['login_clipper'].initial = login_clipper
|
|
|
|
if clipper.fullname:
|
|
|
|
bits = clipper.fullname.split(" ")
|
|
|
|
user_form.fields['first_name'].initial = bits[0]
|
|
|
|
if len(bits) > 1:
|
|
|
|
user_form.fields['last_name'].initial = " ".join(bits[1:])
|
|
|
|
registration_set_ro_fields(user_form, profile_form)
|
|
|
|
if username:
|
2016-07-09 21:19:37 +02:00
|
|
|
member = get_object_or_404(User, username=username)
|
|
|
|
(profile, _) = CofProfile.objects.get_or_create(user=member)
|
2013-09-05 22:20:52 +02:00
|
|
|
# already existing, prefill
|
2016-07-09 21:19:37 +02:00
|
|
|
user_form = RegistrationUserForm(instance=member)
|
|
|
|
profile_form = RegistrationProfileForm(instance=profile)
|
2013-09-05 22:20:52 +02:00
|
|
|
registration_set_ro_fields(user_form, profile_form)
|
|
|
|
elif not login_clipper:
|
|
|
|
# new user
|
|
|
|
user_form = RegistrationUserForm()
|
|
|
|
profile_form = RegistrationProfileForm()
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "registration_form.html",
|
|
|
|
{"user_form": user_form, "profile_form": profile_form,
|
|
|
|
"member": member, "login_clipper": login_clipper})
|
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
|
|
|
|
@buro_required
|
2016-07-09 21:19:37 +02:00
|
|
|
def registration_form2(request, login_clipper=None, username=None):
|
|
|
|
events = Event.objects.filter(old=False).all()
|
2013-09-05 22:20:52 +02:00
|
|
|
member = None
|
|
|
|
if login_clipper:
|
2016-07-09 21:19:37 +02:00
|
|
|
clipper = get_object_or_404(Clipper, username=login_clipper)
|
|
|
|
try: # check if the given user is already registered
|
|
|
|
member = User.objects.filter(username=login_clipper).get()
|
2013-09-05 22:20:52 +02:00
|
|
|
username = member.username
|
|
|
|
login_clipper = None
|
|
|
|
except User.DoesNotExist:
|
|
|
|
# new user, but prefill
|
|
|
|
user_form = RegistrationUserForm()
|
|
|
|
profile_form = RegistrationProfileForm()
|
2016-07-09 21:19:37 +02:00
|
|
|
event_forms = [AdminEventForm(event=event) for event in events]
|
2013-09-05 22:20:52 +02:00
|
|
|
user_form.fields['username'].initial = login_clipper
|
2016-07-09 22:31:56 +02:00
|
|
|
user_form.fields['email'].initial = \
|
|
|
|
login_clipper + "@clipper.ens.fr"
|
2013-09-05 22:20:52 +02:00
|
|
|
profile_form.fields['login_clipper'].initial = login_clipper
|
|
|
|
if clipper.fullname:
|
|
|
|
bits = clipper.fullname.split(" ")
|
|
|
|
user_form.fields['first_name'].initial = bits[0]
|
|
|
|
if len(bits) > 1:
|
|
|
|
user_form.fields['last_name'].initial = " ".join(bits[1:])
|
|
|
|
registration_set_ro_fields(user_form, profile_form)
|
|
|
|
if username:
|
2016-07-09 21:19:37 +02:00
|
|
|
member = get_object_or_404(User, username=username)
|
|
|
|
(profile, _) = CofProfile.objects.get_or_create(user=member)
|
2013-09-05 22:20:52 +02:00
|
|
|
# already existing, prefill
|
2016-07-09 21:19:37 +02:00
|
|
|
user_form = RegistrationUserForm(instance=member)
|
|
|
|
profile_form = RegistrationProfileForm(instance=profile)
|
2013-09-05 22:20:52 +02:00
|
|
|
registration_set_ro_fields(user_form, profile_form)
|
|
|
|
event_forms = []
|
|
|
|
for event in events:
|
|
|
|
try:
|
2016-07-09 22:31:56 +02:00
|
|
|
current_registration = EventRegistration.objects.get(
|
|
|
|
user=member, event=event)
|
|
|
|
form = AdminEventForm(
|
|
|
|
event=event,
|
|
|
|
current_registration=current_registration,
|
|
|
|
paid=current_registration.paid)
|
2013-09-05 22:20:52 +02:00
|
|
|
except EventRegistration.DoesNotExist:
|
2016-07-09 21:19:37 +02:00
|
|
|
form = AdminEventForm(event=event)
|
2013-09-05 22:20:52 +02:00
|
|
|
event_forms.append(form)
|
|
|
|
elif not login_clipper:
|
|
|
|
# new user
|
|
|
|
user_form = RegistrationUserForm()
|
|
|
|
profile_form = RegistrationProfileForm()
|
2016-07-09 21:19:37 +02:00
|
|
|
event_forms = [AdminEventForm(event=event) for event in events]
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "registration_form.html",
|
|
|
|
{"user_form": user_form, "profile_form": profile_form,
|
|
|
|
"member": member, "login_clipper": login_clipper,
|
|
|
|
"event_forms": event_forms})
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
@buro_required
|
2012-07-11 17:39:20 +02:00
|
|
|
def registration(request):
|
2013-09-05 22:20:52 +02:00
|
|
|
if request.POST:
|
|
|
|
request_dict = request.POST.copy()
|
|
|
|
if "num" in request_dict:
|
|
|
|
del request_dict["num"]
|
|
|
|
success = False
|
|
|
|
user_form = RegistrationUserForm(request_dict)
|
|
|
|
profile_form = RegistrationProfileForm(request_dict)
|
2016-07-09 21:19:37 +02:00
|
|
|
events = Event.objects.filter(old=False).all()
|
2016-07-09 22:31:56 +02:00
|
|
|
event_forms = \
|
|
|
|
[AdminEventForm(request_dict, event=event) for event in events]
|
2013-09-05 22:20:52 +02:00
|
|
|
user_form.is_valid()
|
|
|
|
profile_form.is_valid()
|
2016-07-09 21:19:37 +02:00
|
|
|
for event_form in event_forms:
|
|
|
|
event_form.is_valid()
|
2013-09-05 22:20:52 +02:00
|
|
|
member = None
|
|
|
|
login_clipper = None
|
|
|
|
if "user_exists" in request_dict and request_dict["user_exists"]:
|
|
|
|
username = request_dict["username"]
|
|
|
|
try:
|
2016-07-09 21:19:37 +02:00
|
|
|
member = User.objects.filter(username=username).get()
|
|
|
|
(profile, _) = CofProfile.objects.get_or_create(user=member)
|
|
|
|
user_form = RegistrationUserForm(request_dict, instance=member)
|
2016-07-09 22:31:56 +02:00
|
|
|
profile_form = RegistrationProfileForm(request_dict,
|
|
|
|
instance=profile)
|
2013-09-05 22:20:52 +02:00
|
|
|
except User.DoesNotExist:
|
|
|
|
try:
|
2016-07-09 21:19:37 +02:00
|
|
|
clipper = Clipper.objects.filter(username=username).get()
|
2013-09-05 22:20:52 +02:00
|
|
|
login_clipper = clipper.username
|
|
|
|
except Clipper.DoesNotExist:
|
|
|
|
pass
|
|
|
|
for form in event_forms:
|
2016-07-09 21:19:37 +02:00
|
|
|
if not form.is_valid():
|
|
|
|
break
|
|
|
|
if form.cleaned_data['status'] == 'no':
|
|
|
|
continue
|
2013-09-05 22:20:52 +02:00
|
|
|
all_choices = get_event_form_choices(form.event, form)
|
2016-07-09 23:59:25 +02:00
|
|
|
if user_form.is_valid() and profile_form.is_valid() \
|
|
|
|
and not any([not form.is_valid() for form in event_forms]):
|
2013-09-05 22:20:52 +02:00
|
|
|
member = user_form.save()
|
2016-07-09 21:19:37 +02:00
|
|
|
(profile, _) = CofProfile.objects.get_or_create(user=member)
|
2014-08-19 12:54:22 +02:00
|
|
|
was_cof = profile.is_cof
|
2013-09-05 22:20:52 +02:00
|
|
|
request_dict["num"] = profile.num
|
2016-07-09 22:31:56 +02:00
|
|
|
profile_form = RegistrationProfileForm(request_dict,
|
|
|
|
instance=profile)
|
2013-09-05 22:20:52 +02:00
|
|
|
profile_form.is_valid()
|
|
|
|
profile_form.save()
|
2016-07-09 21:19:37 +02:00
|
|
|
(profile, _) = CofProfile.objects.get_or_create(user=member)
|
2014-08-19 12:54:22 +02:00
|
|
|
if profile.is_cof and not was_cof:
|
|
|
|
send_custom_mail(member, "bienvenue")
|
2013-09-05 22:20:52 +02:00
|
|
|
for form in event_forms:
|
|
|
|
if form.cleaned_data['status'] == 'no':
|
|
|
|
try:
|
2016-07-09 22:31:56 +02:00
|
|
|
current_registration = EventRegistration.objects.get(
|
|
|
|
user=member, event=form.event)
|
2013-09-05 22:20:52 +02:00
|
|
|
current_registration.delete()
|
|
|
|
except EventRegistration.DoesNotExist:
|
|
|
|
pass
|
|
|
|
continue
|
|
|
|
all_choices = get_event_form_choices(form.event, form)
|
2016-07-09 22:31:56 +02:00
|
|
|
(current_registration, created_reg) = \
|
|
|
|
EventRegistration.objects.get_or_create(user=member,
|
|
|
|
event=form.event)
|
2016-07-16 20:54:52 +02:00
|
|
|
update_event_form_comments(form.event, form,
|
|
|
|
current_registration)
|
2013-09-05 22:20:52 +02:00
|
|
|
current_registration.options = all_choices
|
2016-07-09 22:31:56 +02:00
|
|
|
current_registration.paid = \
|
|
|
|
(form.cleaned_data['status'] == 'paid')
|
2013-09-05 22:20:52 +02:00
|
|
|
current_registration.save()
|
2016-07-15 01:18:31 +02:00
|
|
|
if form.event.title == "Mega 15" and created_reg:
|
|
|
|
field = EventCommentField.objects.get(event=form.event,
|
2016-07-09 22:31:56 +02:00
|
|
|
name="Commentaires")
|
2014-08-19 12:54:22 +02:00
|
|
|
try:
|
2016-07-09 22:31:56 +02:00
|
|
|
comments = EventCommentValue.objects.get(
|
|
|
|
commentfield=field,
|
|
|
|
registration=current_registration).content
|
2014-08-19 12:54:22 +02:00
|
|
|
except EventCommentValue.DoesNotExist:
|
|
|
|
comments = field.default
|
|
|
|
send_custom_mail(member, "mega", {"remarques": comments})
|
2013-09-05 22:20:52 +02:00
|
|
|
success = True
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "registration_post.html",
|
|
|
|
{"success": success,
|
|
|
|
"user_form": user_form,
|
|
|
|
"profile_form": profile_form,
|
|
|
|
"member": member,
|
|
|
|
"login_clipper": login_clipper,
|
|
|
|
"event_forms": event_forms})
|
2013-09-05 22:20:52 +02:00
|
|
|
else:
|
|
|
|
return render(request, "registration.html")
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
@buro_required
|
|
|
|
def export_members(request):
|
2016-07-09 21:19:37 +02:00
|
|
|
response = HttpResponse(content_type='text/csv')
|
2013-09-05 22:20:52 +02:00
|
|
|
response['Content-Disposition'] = 'attachment; filename=membres_cof.csv'
|
|
|
|
|
2016-06-27 19:11:39 +02:00
|
|
|
writer = unicodecsv.writer(response)
|
2016-07-09 21:19:37 +02:00
|
|
|
for profile in CofProfile.objects.filter(is_cof=True).all():
|
2013-09-05 22:20:52 +02:00
|
|
|
user = profile.user
|
2016-07-09 22:31:56 +02:00
|
|
|
bits = [profile.num, user.username, user.first_name, user.last_name,
|
|
|
|
user.email, profile.phone, profile.occupation,
|
|
|
|
profile.departement, profile.type_cotiz]
|
2016-07-15 00:02:56 +02:00
|
|
|
writer.writerow([six.text_type(bit) for bit in bits])
|
2013-09-05 22:20:52 +02:00
|
|
|
|
|
|
|
return response
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2016-05-21 23:57:36 +02:00
|
|
|
@buro_required
|
2014-08-19 12:54:22 +02:00
|
|
|
def csv_export_mega(filename, qs):
|
2016-07-09 21:19:37 +02:00
|
|
|
response = HttpResponse(content_type='text/csv')
|
2014-08-19 12:54:22 +02:00
|
|
|
response['Content-Disposition'] = 'attachment; filename=' + filename
|
2016-06-27 19:13:53 +02:00
|
|
|
writer = unicodecsv.writer(response)
|
2014-08-19 12:54:22 +02:00
|
|
|
|
|
|
|
for reg in qs.all():
|
2013-09-05 22:20:52 +02:00
|
|
|
user = reg.user
|
2016-05-24 00:02:25 +02:00
|
|
|
profile = user.profile
|
2016-07-09 22:31:56 +02:00
|
|
|
comments = "---".join(
|
|
|
|
[comment.content for comment in reg.comments.all()])
|
|
|
|
bits = [user.username, user.first_name, user.last_name, user.email,
|
|
|
|
profile.phone, profile.num,
|
|
|
|
profile.comments if profile.comments else "", comments]
|
|
|
|
|
2016-07-15 00:02:56 +02:00
|
|
|
writer.writerow([six.text_type(bit) for bit in bits])
|
2013-09-05 22:20:52 +02:00
|
|
|
|
|
|
|
return response
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
@buro_required
|
2014-08-19 12:54:22 +02:00
|
|
|
def export_mega_remarksonly(request):
|
2015-09-13 18:23:47 +02:00
|
|
|
filename = 'remarques_mega_2015.csv'
|
2016-07-09 21:19:37 +02:00
|
|
|
response = HttpResponse(content_type='text/csv')
|
2014-08-19 12:54:22 +02:00
|
|
|
response['Content-Disposition'] = 'attachment; filename=' + filename
|
2016-06-27 19:13:53 +02:00
|
|
|
writer = unicodecsv.writer(response)
|
2014-08-19 12:54:22 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
event = Event.objects.get(title="Mega 15")
|
|
|
|
commentfield = event.commentfields.get(name="Commentaires")
|
2014-08-19 12:54:22 +02:00
|
|
|
for val in commentfield.values.all():
|
|
|
|
reg = val.registration
|
2013-09-05 22:20:52 +02:00
|
|
|
user = reg.user
|
2016-05-24 00:02:25 +02:00
|
|
|
profile = user.profile
|
2016-07-09 22:31:56 +02:00
|
|
|
bits = [user.username, user.first_name, user.last_name, user.email,
|
|
|
|
profile.phone, profile.num, profile.comments, val.content]
|
2016-07-15 00:02:56 +02:00
|
|
|
writer.writerow([six.text_type(bit) for bit in bits])
|
2013-09-05 22:20:52 +02:00
|
|
|
|
|
|
|
return response
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
@buro_required
|
2014-08-19 12:54:22 +02:00
|
|
|
def export_mega_bytype(request, type):
|
2015-09-13 18:23:47 +02:00
|
|
|
types = {"orga-actif": "Orga élève",
|
|
|
|
"orga-branleur": "Orga étudiant",
|
2014-08-19 12:54:22 +02:00
|
|
|
"conscrit-eleve": "Conscrit élève",
|
|
|
|
"conscrit-etudiant": "Conscrit étudiant"}
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2014-08-19 12:54:22 +02:00
|
|
|
if type not in types:
|
|
|
|
raise Http404
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
event = Event.objects.get(title="Mega 15")
|
|
|
|
type_option = event.options.get(name="Type")
|
|
|
|
participant_type = type_option.choices.get(value=types[type]).id
|
2016-07-09 22:31:56 +02:00
|
|
|
qs = EventRegistration.objects.filter(event=event).filter(
|
|
|
|
options__id__exact=participant_type)
|
2015-09-13 18:23:47 +02:00
|
|
|
return csv_export_mega(type + '_mega_2015.csv', qs)
|
2014-08-19 12:54:22 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2014-08-19 12:54:22 +02:00
|
|
|
@buro_required
|
|
|
|
def export_mega_orgas(request):
|
2016-07-09 21:19:37 +02:00
|
|
|
event = Event.objects.get(title="Mega 15")
|
|
|
|
type_option = event.options.get(name="Type")
|
|
|
|
participant_type_a = type_option.choices.get(value="Conscrit étudiant").id
|
|
|
|
participant_type_b = type_option.choices.get(value="Conscrit élève").id
|
2016-07-09 22:31:56 +02:00
|
|
|
qs = EventRegistration.objects.filter(event=event).exclude(
|
|
|
|
options__id__in=(participant_type_a, participant_type_b))
|
2015-09-13 18:23:47 +02:00
|
|
|
return csv_export_mega('orgas_mega_15.csv', qs)
|
2014-08-19 12:54:22 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2016-05-21 23:57:36 +02:00
|
|
|
@buro_required
|
2014-08-19 12:54:22 +02:00
|
|
|
def export_mega_participants(request):
|
2016-07-09 21:19:37 +02:00
|
|
|
event = Event.objects.get(title="Mega 15")
|
|
|
|
type_option = event.options.get(name="Type")
|
|
|
|
participant_type_a = type_option.choices.get(value="Conscrit étudiant").id
|
|
|
|
participant_type_b = type_option.choices.get(value="Conscrit élève").id
|
2016-07-09 22:31:56 +02:00
|
|
|
qs = EventRegistration.objects.filter(event=event).filter(
|
|
|
|
options__id__in=(participant_type_a, participant_type_b))
|
2015-09-13 18:23:47 +02:00
|
|
|
return csv_export_mega('participants_mega_15.csv', qs)
|
2014-08-19 12:54:22 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2014-08-19 12:54:22 +02:00
|
|
|
@buro_required
|
|
|
|
def export_mega(request):
|
2016-07-09 21:19:37 +02:00
|
|
|
event = Event.objects.filter(title="Mega 15")
|
2016-07-09 23:59:25 +02:00
|
|
|
qs = EventRegistration.objects.filter(event=event) \
|
|
|
|
.order_by("user__username")
|
2015-09-13 18:23:47 +02:00
|
|
|
return csv_export_mega('all_mega_2015.csv', qs)
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
@buro_required
|
|
|
|
def utile_cof(request):
|
2016-07-09 21:19:37 +02:00
|
|
|
return render(request, "utile_cof.html", {})
|
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
|
|
|
|
@buro_required
|
|
|
|
def utile_bda(request):
|
2016-06-06 18:43:56 +02:00
|
|
|
tirages = Tirage.objects.all()
|
|
|
|
return render(request, "utile_bda.html", {'tirages': tirages})
|
2016-05-21 23:57:36 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2016-05-21 23:57:36 +02:00
|
|
|
@buro_required
|
|
|
|
def liste_bdadiff(request):
|
|
|
|
titre = "BdA diffusion"
|
2016-07-09 21:19:37 +02:00
|
|
|
personnes = CofProfile.objects.filter(mailing_bda=True, is_cof=True).all()
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "liste_mails.html",
|
|
|
|
{"titre": titre, "personnes": personnes})
|
2016-07-09 21:19:37 +02:00
|
|
|
|
|
|
|
|
2016-05-21 23:57:36 +02:00
|
|
|
@buro_required
|
|
|
|
def liste_bdarevente(request):
|
|
|
|
titre = "BdA revente"
|
2016-07-09 22:31:56 +02:00
|
|
|
personnes = CofProfile.objects.filter(mailing_bda_revente=True,
|
|
|
|
is_cof=True).all()
|
|
|
|
return render(request, "liste_mails.html", {"titre": titre,
|
|
|
|
"personnes": personnes})
|
2016-05-21 23:57:36 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2016-05-21 23:57:36 +02:00
|
|
|
@buro_required
|
|
|
|
def liste_diffcof(request):
|
|
|
|
titre = "Diffusion COF"
|
2016-07-09 21:19:37 +02:00
|
|
|
personnes = CofProfile.objects.filter(mailing_cof=True, is_cof=True).all()
|
2016-07-09 22:31:56 +02:00
|
|
|
return render(request, "liste_mails.html", {"titre": titre,
|
|
|
|
"personnes": personnes})
|