2013-06-18 22:49:01 +02:00
|
|
|
|
|
|
|
from django.shortcuts import render, get_object_or_404
|
|
|
|
from django.http import HttpResponse
|
|
|
|
|
|
|
|
from models import Event, EventParticipation
|
|
|
|
from musicians.models import Musician
|
|
|
|
|
|
|
|
from serializers import ParticipationSerializer
|
|
|
|
|
|
|
|
import datetime
|
|
|
|
|
|
|
|
|
|
|
|
from rest_framework.decorators import api_view
|
|
|
|
from rest_framework.response import Response
|
|
|
|
from rest_framework import status
|
2013-06-30 11:01:12 +02:00
|
|
|
from django.forms.models import ModelForm
|
|
|
|
|
2013-06-18 22:49:01 +02:00
|
|
|
|
2013-06-30 16:55:00 +02:00
|
|
|
from django.conf.urls import patterns, url
|
|
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
from django.utils.decorators import method_decorator
|
|
|
|
|
|
|
|
|
2013-06-18 22:49:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-30 16:55:00 +02:00
|
|
|
# ---------------------------------------- API ---------------------------------------------------------
|
2013-06-18 22:49:01 +02:00
|
|
|
|
2013-06-30 11:01:12 +02:00
|
|
|
|
2013-06-18 22:49:01 +02:00
|
|
|
@api_view( ['GET', 'PUT'] )
|
2013-06-30 16:55:00 +02:00
|
|
|
def event_api( request, username = None, eventId = None ):
|
2013-06-18 22:49:01 +02:00
|
|
|
try:
|
2013-06-30 11:01:12 +02:00
|
|
|
participationQs = EventParticipation.objects.filter( event__date__gte = datetime.date.today() )
|
|
|
|
if username:
|
|
|
|
participationQs = EventParticipation.objects.filter( musician__user__username = username )
|
2013-06-18 22:49:01 +02:00
|
|
|
if eventId:
|
|
|
|
participationQs = participationQs.filter( event__pk = eventId )
|
|
|
|
|
|
|
|
except EventParticipation.DoesNotExist:
|
2013-06-30 16:55:00 +02:00
|
|
|
return HttpResponse( status=404 )
|
2013-06-18 22:49:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
if request.method == 'GET':
|
|
|
|
serializer = ParticipationSerializer( participationQs )
|
|
|
|
return Response( serializer.data )
|
|
|
|
|
|
|
|
elif request.method == 'PUT':
|
|
|
|
serializer = ParticipationSerializer ( participationQs, data = request.DATA, many=True )
|
|
|
|
if serializer.is_valid():
|
2013-06-30 16:55:00 +02:00
|
|
|
for serializedObject in serializer.object:
|
|
|
|
if serializedObject.musician.user != request.user:
|
|
|
|
if not request.user.has_perm('change_others_participation') :
|
|
|
|
return Response( status = status.HTTP_403_FORBIDDEN )
|
|
|
|
|
2013-06-18 22:49:01 +02:00
|
|
|
serializer.save()
|
|
|
|
return Response( serializer.data )
|
|
|
|
else:
|
|
|
|
return Response( status = status.HTTP_400_BAD_REQUEST )
|
|
|
|
|
|
|
|
|
2013-06-30 11:01:12 +02:00
|
|
|
|
2013-06-18 22:49:01 +02:00
|
|
|
# ------------------------------------ Normal Views ----------------------------------------------------
|
|
|
|
|
2013-06-30 16:55:00 +02:00
|
|
|
@login_required
|
|
|
|
def main_view( request ):
|
|
|
|
if request.user.has_perm( 'eventplanner.change_others_participation'):
|
|
|
|
return events_grid( request )
|
|
|
|
else:
|
|
|
|
return eventplanning( request )
|
|
|
|
|
|
|
|
@login_required
|
|
|
|
def eventplanning( request ):
|
2013-06-30 11:01:12 +02:00
|
|
|
"""
|
|
|
|
View for a specific user, to edit his events
|
|
|
|
"""
|
2013-06-18 22:49:01 +02:00
|
|
|
# All events in the future sorted by date
|
|
|
|
all_future_events = list ( Event.objects.filter( date__gte = datetime.date.today() ) )
|
|
|
|
|
|
|
|
|
|
|
|
musician = get_object_or_404( Musician, user=request.user )
|
|
|
|
|
|
|
|
for e in all_future_events:
|
2013-06-30 16:55:00 +02:00
|
|
|
e.participation = EventParticipation.get_or_create( event = e, musician = musician )
|
2013-06-18 22:49:01 +02:00
|
|
|
|
|
|
|
context = { 'events' : all_future_events }
|
2013-06-30 11:01:12 +02:00
|
|
|
return render ( request, 'eventplanner/eventplanning_view.html', context )
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-30 16:55:00 +02:00
|
|
|
@login_required
|
2013-06-30 11:01:12 +02:00
|
|
|
def events_grid( request ):
|
|
|
|
|
|
|
|
musicians = Musician.objects.all()
|
|
|
|
musicianNames = [ m.user.username for m in musicians ]
|
|
|
|
|
|
|
|
|
|
|
|
all_future_events = list ( Event.objects.filter( date__gte = datetime.date.today() ) )
|
|
|
|
|
|
|
|
for e in all_future_events:
|
2013-06-30 16:55:00 +02:00
|
|
|
e.participation = [ EventParticipation.get_or_create( event = e, musician = m ) for m in musicians ]
|
2013-06-30 11:01:12 +02:00
|
|
|
|
|
|
|
context = { 'events': all_future_events,
|
|
|
|
'musicianNames' : musicianNames }
|
|
|
|
return render ( request, 'eventplanner/events_grid.html', context )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-06-30 16:55:00 +02:00
|
|
|
# ------------------------------------ Detail Views ----------------------------------------------------
|
|
|
|
|
|
|
|
|
2013-06-30 11:01:12 +02:00
|
|
|
from django.views.generic.edit import UpdateView
|
|
|
|
|
|
|
|
|
|
|
|
class EventForm( ModelForm ):
|
|
|
|
class Meta:
|
|
|
|
model = Event
|
|
|
|
fields= ['title', 'date','time','type']
|
|
|
|
|
|
|
|
class EventUpdate( UpdateView ):
|
|
|
|
form_class = EventForm
|
|
|
|
model = Event
|
|
|
|
template_name_suffix = "_update_form"
|
|
|
|
success_url = '/events/grid'
|
2013-06-30 16:55:00 +02:00
|
|
|
|
|
|
|
@method_decorator(login_required)
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
return super(EventUpdate, self).dispatch(request, *args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ------------------------------------ URLS ----------------------------------------------------
|
2013-06-30 11:01:12 +02:00
|
|
|
|
|
|
|
|
2013-06-30 16:55:00 +02:00
|
|
|
urls = patterns('',
|
|
|
|
url(r'^$', main_view ),
|
|
|
|
url(r'^grid$', events_grid ),
|
|
|
|
url(r'^planning$', eventplanning ),
|
|
|
|
url(r'^(?P<pk>\d+)$', EventUpdate.as_view() ),
|
|
|
|
url(r'^api/', event_api, name="event_api" ),
|
|
|
|
url(r'^api/(\w+)/$', event_api, name="event_api_per_user" ),
|
|
|
|
url(r'^api/(\w+)/(\d+)$', event_api, name="event_api_per_user_event"),
|
|
|
|
)
|
2013-06-30 11:01:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|