|
@@ -1,7 +1,7 @@
|
|
|
import datetime
|
|
|
import json
|
|
|
from django.db import IntegrityError
|
|
|
-from django.http import HttpResponseNotFound, HttpResponseRedirect, JsonResponse, HttpResponseNotAllowed
|
|
|
+from django.http import HttpResponseForbidden, HttpResponseNotFound, HttpResponseRedirect, JsonResponse, HttpResponseNotAllowed
|
|
|
from django.shortcuts import render
|
|
|
from django.contrib.auth import authenticate, login as auth_login, logout as auth_logout
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
|
@@ -19,8 +19,12 @@ def index(request):
|
|
|
return render(request, 'zitap/index.html')
|
|
|
|
|
|
def my_events(request):
|
|
|
- if not request.user.is_authenticated:
|
|
|
- return HttpResponseRedirect('/my-events/login')
|
|
|
+ if not request.session.get('user_id'):
|
|
|
+ form = LoginForm({'username': request.session.get('username', '')})
|
|
|
+ form.add_error('password', _('Please enter a password.'))
|
|
|
+ return render(request, 'zitap/login.html', {'form': form, 'url': 'my-events', 'text': _('Login to My Events')})
|
|
|
+
|
|
|
+ print(request.session.get('user_id'))
|
|
|
events = Event.objects.filter(participant__user=request.user).prefetch_related('date_set', 'participant_set', 'participant_set__user')
|
|
|
return render(request, 'zitap/my-events.html', {
|
|
|
'events': events,
|
|
@@ -65,9 +69,10 @@ def event(request, url):
|
|
|
return render(request, 'zitap/event-not-found.html')
|
|
|
|
|
|
# Check if the user is logged in
|
|
|
- if 'user_id' in request.session:
|
|
|
+ participant = None
|
|
|
+ if 'username' in request.session:
|
|
|
for participant in participants:
|
|
|
- if participant.user_id == request.session['user_id']:
|
|
|
+ if participant.name == request.session['username']:
|
|
|
break
|
|
|
else:
|
|
|
participant = None
|
|
@@ -93,29 +98,35 @@ def login(request, url):
|
|
|
|
|
|
if request.method == 'POST':
|
|
|
form = LoginForm(request.POST)
|
|
|
- elif request.user.is_authenticated:
|
|
|
+ elif 'username' in request.session:
|
|
|
return HttpResponseRedirect(f'/{url}')
|
|
|
else:
|
|
|
form = LoginForm()
|
|
|
if form.is_valid():
|
|
|
data = form.cleaned_data
|
|
|
user = authenticate(request, username=data['username'], password=data.get('password'))
|
|
|
- if user is None:
|
|
|
+ if user is None and data.get('password'):
|
|
|
try:
|
|
|
user = User.objects.create_user(data['username'], password=data.get('password'))
|
|
|
except IntegrityError:
|
|
|
- form.add_error('username', _('Username already exists'))
|
|
|
+ form.add_error('password', _('Wrong password'))
|
|
|
return render(request, 'zitap/login.html', {'form': form, 'url': url, 'text': text})
|
|
|
-
|
|
|
- auth_login(request, user)
|
|
|
- request.session['user_id'] = user.id
|
|
|
+ elif user is None and User.objects.filter(username=data['username']).exists():
|
|
|
+ form.add_error('username', _('Username already exists'))
|
|
|
+ return render(request, 'zitap/login.html', {'form': form, 'url': url, 'text': text})
|
|
|
+ if user:
|
|
|
+ auth_login(request, user)
|
|
|
+ request.session['user_id'] = user.id
|
|
|
+ elif 'user_id' in request.session:
|
|
|
+ del request.session['user_id']
|
|
|
+ request.session['username'] = data['username']
|
|
|
return HttpResponseRedirect(f'/{url}')
|
|
|
return render(request, 'zitap/login.html', {'form': form, 'url': url, 'text': text})
|
|
|
|
|
|
def logout(request, url):
|
|
|
auth_logout(request)
|
|
|
if url == 'my-events':
|
|
|
- return HttpResponseRedirect(f'/{url}')
|
|
|
+ return HttpResponseRedirect(f'/my-events/login')
|
|
|
elif Event.objects.filter(url=url).exists():
|
|
|
return HttpResponseRedirect(f'/{url}')
|
|
|
else:
|
|
@@ -130,16 +141,19 @@ def update_slots(request, url):
|
|
|
|
|
|
if request.method != 'POST':
|
|
|
return HttpResponseNotAllowed(['POST'])
|
|
|
+
|
|
|
+ if 'username' not in request.session:
|
|
|
+ return HttpResponseForbidden()
|
|
|
|
|
|
slot_count = get_slot_count(event)
|
|
|
- participant = event.participant_set.filter(user_id=request.session['user_id'], event=event).first()
|
|
|
+ participant = event.participant_set.filter(name=request.session['username'], event=event).first()
|
|
|
form = UpdateSlotsForm(request.POST, event=event, n_slots=slot_count, participant=participant)
|
|
|
if form.is_valid():
|
|
|
data = form.cleaned_data
|
|
|
if data['slots'] == '0' * slot_count and participant:
|
|
|
participant.delete()
|
|
|
elif not participant:
|
|
|
- participant = Participant.objects.create(user_id=request.session['user_id'], event=event, slots=string2slots(data['slots'], slot_count))
|
|
|
+ participant = Participant.objects.create(name=request.session['username'], user_id=request.session['user_id'], event=event, slots=string2slots(data['slots'], slot_count))
|
|
|
else:
|
|
|
participant.slots = string2slots(data['slots'], slot_count)
|
|
|
participant.save()
|
|
@@ -180,9 +194,9 @@ def slots_api(request, url):
|
|
|
slot_count = get_slot_count(event)
|
|
|
|
|
|
# Check if the user is logged in and wants to update their slots
|
|
|
- if 'user_id' in request.session and request.method == 'POST':
|
|
|
+ if 'username' in request.session and request.method == 'POST':
|
|
|
for participant in participants:
|
|
|
- if participant.user_id == request.session['user_id']:
|
|
|
+ if participant.name == request.session['username']:
|
|
|
break
|
|
|
else:
|
|
|
participant = None
|
|
@@ -194,15 +208,18 @@ def slots_api(request, url):
|
|
|
if data['slots'] == '0' * slot_count and participant:
|
|
|
participant.delete()
|
|
|
elif not participant:
|
|
|
- participant = Participant.objects.create(user_id=request.session['user_id'], event=event, slots=string2slots(data['slots'], slot_count))
|
|
|
+ participant = Participant.objects.create(name=request.session['username'], user_id=request.session.get('user_id'), event=event, slots=string2slots(data['slots'], slot_count))
|
|
|
else:
|
|
|
participant.slots = string2slots(data['slots'], slot_count)
|
|
|
participant.save()
|
|
|
|
|
|
# Get the slots of each participant
|
|
|
- data = {}
|
|
|
- for participant in participants:
|
|
|
- data[participant.user.username] = slots2string(participant, slot_count)
|
|
|
+ data = {
|
|
|
+ 'username': request.session.get('username'),
|
|
|
+ 'n_slots': slot_count,
|
|
|
+ 'participants': [participant.name for participant in participants],
|
|
|
+ 'slots': [slots2string(participant, slot_count) for participant in participants],
|
|
|
+ }
|
|
|
|
|
|
return JsonResponse(data)
|
|
|
|