2013-05-28 15:20:06 +02:00
|
|
|
|
|
|
|
from django.views.generic.edit import UpdateView
|
|
|
|
from django.views.generic import ListView
|
|
|
|
from musicians.models import Musician
|
|
|
|
from django import forms
|
|
|
|
from django.http import HttpResponseRedirect
|
|
|
|
from django.shortcuts import render
|
|
|
|
from django.shortcuts import get_object_or_404
|
|
|
|
|
|
|
|
|
|
|
|
class MusicianList( ListView):
|
|
|
|
model = Musician
|
|
|
|
|
|
|
|
|
2013-09-22 11:11:48 +02:00
|
|
|
class UserEditForm( forms.ModelForm ):
|
2013-05-28 15:20:06 +02:00
|
|
|
|
|
|
|
email = forms.EmailField()
|
|
|
|
|
|
|
|
def __init__(self, *args, **kw):
|
|
|
|
|
|
|
|
if 'instance' in kw.keys():
|
|
|
|
user = kw['instance'].user
|
2013-06-30 11:01:12 +02:00
|
|
|
initVals = { 'email': user.email }
|
2013-05-28 15:20:06 +02:00
|
|
|
if not 'initial' in kw.keys():
|
|
|
|
kw['initial'] = initVals
|
|
|
|
else:
|
|
|
|
kw['initial'].update(initVals)
|
|
|
|
|
2013-06-30 11:01:12 +02:00
|
|
|
super(UserEditForm, self).__init__( *args, **kw )
|
2013-05-28 15:20:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
self.fields.keyOrder.remove('email')
|
|
|
|
|
|
|
|
self.fields.keyOrder.insert(2, 'email')
|
|
|
|
|
|
|
|
def save(self):
|
|
|
|
if self.is_valid():
|
|
|
|
super(UserEditForm,self).save()
|
2013-09-29 16:22:42 +02:00
|
|
|
self.instance.user.email = self.cleaned_data['email']
|
2013-05-28 15:20:06 +02:00
|
|
|
self.instance.user.save()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = Musician
|
2013-09-29 16:22:42 +02:00
|
|
|
exclude = [ 'user','image', 'small_image', 'instrument', 'position', 'public_description' ]
|
2013-05-28 15:20:06 +02:00
|
|
|
#fields = '__all__'
|
|
|
|
|
|
|
|
|
2013-09-29 16:22:42 +02:00
|
|
|
def own_profile( request ):
|
|
|
|
return user_edit( request, request.user )
|
|
|
|
|
|
|
|
|
2013-05-28 15:20:06 +02:00
|
|
|
def user_edit( request, username ):
|
2013-06-30 11:01:12 +02:00
|
|
|
musician = get_object_or_404( Musician, user__username=username )
|
2013-05-28 15:20:06 +02:00
|
|
|
|
|
|
|
if request.method == 'POST': # If the form has been submitted...
|
|
|
|
form = UserEditForm(request.POST) # A form bound to the POST data
|
|
|
|
form.instance = musician
|
|
|
|
if form.is_valid(): # All validation rules pass
|
|
|
|
form.save()
|
2013-09-29 16:22:42 +02:00
|
|
|
return HttpResponseRedirect('/') # Redirect after POST
|
2013-05-28 15:20:06 +02:00
|
|
|
else:
|
|
|
|
form = UserEditForm( instance= musician )
|
|
|
|
|
2013-09-29 16:22:42 +02:00
|
|
|
return render(request, 'musicians/musician_edit.html', { 'form': form, 'musician': musician } )
|
2013-05-28 15:20:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MusicianUpdate( UpdateView ):
|
|
|
|
model = Musician
|
|
|
|
#fields = []
|
|
|
|
template_name = "musicians/musician_edit.html"
|
2013-09-22 11:11:48 +02:00
|
|
|
success_url = '/books/'
|
|
|
|
|
|
|
|
|
|
|
|
def addressbook( request ):
|
|
|
|
context = dict()
|
2013-10-15 21:51:05 +02:00
|
|
|
context['musicians'] = Musician.objects.all().order_by('user__first_name')
|
2013-09-22 11:11:48 +02:00
|
|
|
|
|
|
|
return render( request, 'musicians/addressbook.html', context )
|
|
|
|
|
|
|
|
|
2014-01-11 15:01:40 +01:00
|
|
|
############################################################################################################
|
|
|
|
######################### User Management Views ############################################################
|
|
|
|
############################################################################################################
|
|
|
|
|
|
|
|
from django.contrib.auth.views import password_change
|
|
|
|
from django.contrib.auth import authenticate, login, logout
|
|
|
|
from django.shortcuts import redirect
|
|
|
|
from django.http import HttpResponse
|
|
|
|
from django.utils import simplejson
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
from datetime import timedelta
|
|
|
|
|
|
|
|
|
|
|
|
def change_password( request ):
|
|
|
|
return password_change(request, "musicians/change_password.html", post_change_redirect= "/" )
|
2013-09-22 11:11:48 +02:00
|
|
|
|
2014-01-11 15:01:40 +01:00
|
|
|
|
|
|
|
def logout_view(request):
|
|
|
|
logout( request )
|
|
|
|
return redirect( login_view )
|
|
|
|
|
|
|
|
|
|
|
|
def userlistForAutocompletion(request):
|
|
|
|
result = [ u.username for u in User.objects.all() ]
|
|
|
|
return HttpResponse( simplejson.dumps(result), mimetype='application/json' )
|
|
|
|
|
|
|
|
|
|
|
|
def login_view( request ):
|
|
|
|
if request.method == 'POST': # If the form has been submitted...
|
|
|
|
raiseFirstLetter = lambda s: s[:1].upper() + s[1:] if s else ''
|
|
|
|
username = raiseFirstLetter( request.POST['username'] )
|
|
|
|
password = request.POST['password']
|
|
|
|
user = authenticate( username=username, password=password )
|
|
|
|
result = dict()
|
|
|
|
result['err'] = ""
|
|
|
|
if user is not None:
|
|
|
|
if user.is_active:
|
|
|
|
if not request.POST.get('remember', None):
|
|
|
|
# Expire in one year
|
|
|
|
request.session.set_expiry( timedelta( weeks=52 ) )
|
|
|
|
else:
|
|
|
|
# Expire on browser close
|
|
|
|
request.session.set_expiry( 0 )
|
|
|
|
|
|
|
|
login(request, user)
|
|
|
|
result['redirect'] = "/"
|
|
|
|
print ( "Setting Redirect" )
|
|
|
|
if 'next' in request.POST :
|
|
|
|
result['redirect'] = request.POST["next"]
|
|
|
|
print ( "Using " + request.POST["next"] )
|
|
|
|
else:
|
|
|
|
result['err'] = "Dein Account wurde deaktiviert."
|
|
|
|
# Return a 'disabled account' error message
|
|
|
|
else:
|
|
|
|
result['err'] = "Falscher Benutzername oder falsches Kennwort."
|
|
|
|
|
|
|
|
return HttpResponse( simplejson.dumps(result), mimetype='application/json' )
|
2013-09-22 11:11:48 +02:00
|
|
|
|
2014-01-11 15:01:40 +01:00
|
|
|
else:
|
|
|
|
# Check if user already logged in
|
|
|
|
if request.user.is_authenticated():
|
|
|
|
return redirect( "/")
|
|
|
|
|
|
|
|
if 'next' in request.GET:
|
|
|
|
nextPage = request.GET['next']
|
|
|
|
else:
|
|
|
|
nextPage = "/"
|
|
|
|
return render( request, 'musicians/login.html', { 'next' : nextPage } )
|
|
|
|
|
|
|
|
|
2013-09-22 11:11:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|