emile 1 year ago
parent 17a19c2482
commit 16515ad7ce

@ -6,6 +6,7 @@ from osinacore.models import *
from .serializers import * from .serializers import *
from django.contrib.auth import authenticate, login from django.contrib.auth import authenticate, login
from django.http import JsonResponse from django.http import JsonResponse
from django.contrib.auth import AuthenticationFailed
@api_view(['POST']) @api_view(['POST'])
@ -32,10 +33,13 @@ def authenticate_customer(request):
if request.method == 'POST': if request.method == 'POST':
email = request.POST.get('email') email = request.POST.get('email')
password = request.POST.get('password') password = request.POST.get('password')
user = authenticate(request, username=email, password=password) try:
if user is not None: user = authenticate(request, username=email, password=password)
login(request, user) if user is not None:
return JsonResponse({'success': True}) login(request, user)
else: return JsonResponse({'success': True})
# Return the original email along with the error message else:
return JsonResponse({'success': False, 'error': 'Invalid credentials', 'email': email, 'password':password}) return JsonResponse({'success': False, 'error': 'Invalid credentials'})
except AuthenticationFailed as e:
# Return the error message provided by the authentication system
return JsonResponse({'success': False, 'error': str(e)})
Loading…
Cancel
Save