2021-12-19 16:59:24 +01:00
|
|
|
from django.http import HttpResponseRedirect
|
2021-12-05 13:50:34 +01:00
|
|
|
from rest_framework import viewsets
|
|
|
|
|
|
|
|
from users.models import User
|
|
|
|
from users.serializers import UserSerializer
|
2021-12-11 22:01:14 +01:00
|
|
|
from rest_framework import views, exceptions, status, viewsets, permissions, generics
|
|
|
|
from tools.tools import PasswordResetShortcut, PasswordResetConfirmShortcut
|
|
|
|
from django.contrib.auth.tokens import default_token_generator
|
2021-12-12 23:04:19 +01:00
|
|
|
from .serializers import UserPasswordResetSerializer, UserPasswordResetConfirmSerializer, RegisterSerializer
|
|
|
|
from rest_framework.response import Response
|
2021-12-14 16:35:17 +01:00
|
|
|
from django.shortcuts import render, redirect
|
|
|
|
from django.template import loader
|
2021-12-20 20:37:32 +01:00
|
|
|
from .forms import RegistrationForm
|
2021-12-19 16:59:24 +01:00
|
|
|
from django.contrib.auth.forms import AuthenticationForm
|
|
|
|
from django.contrib.auth import login as auth_login
|
|
|
|
from config.authh import SettingsBackend
|
|
|
|
from django.contrib.auth.decorators import login_required
|
2022-01-13 23:24:24 +01:00
|
|
|
from django.contrib.auth import logout as django_logout
|
2021-12-05 13:50:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
class UserModelViewSet(viewsets.ModelViewSet):
|
|
|
|
queryset = User.objects.all()
|
|
|
|
serializer_class = UserSerializer
|
2021-12-11 22:01:14 +01:00
|
|
|
|
|
|
|
|
2021-12-12 23:04:19 +01:00
|
|
|
class RegisterViewSet(generics.GenericAPIView):
|
|
|
|
serializer_class = RegisterSerializer
|
|
|
|
permission_classes = (permissions.AllowAny, )
|
|
|
|
|
|
|
|
def post(self, request):
|
|
|
|
serializer = self.get_serializer(data=request.data)
|
|
|
|
if serializer.is_valid():
|
2021-12-12 23:20:04 +01:00
|
|
|
data = self.request.data
|
|
|
|
User.objects.create(
|
|
|
|
email=data["email"],
|
|
|
|
first_name=data["first_name"],
|
|
|
|
last_name=data["last_name"],
|
|
|
|
password=data["password"]
|
|
|
|
)
|
2021-12-14 00:18:30 +01:00
|
|
|
return Response({"detail": "Konto zostało pomyślnie założone. Możesz się zalogować!"}, status=status.HTTP_200_OK)
|
2021-12-12 23:04:19 +01:00
|
|
|
else:
|
|
|
|
return Response(data=serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
|
|
|
|
|
2021-12-11 22:01:14 +01:00
|
|
|
class PasswordReset(PasswordResetShortcut, generics.GenericAPIView):
|
|
|
|
"""
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"email": "testowymail@gmail.com"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
"""
|
|
|
|
serializer_class = UserPasswordResetSerializer
|
|
|
|
permission_classes = (permissions.AllowAny, )
|
|
|
|
|
|
|
|
|
|
|
|
class UserPasswordResetConfirmView(PasswordResetConfirmShortcut, generics.GenericAPIView):
|
|
|
|
"""
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"uid": "NYz",
|
|
|
|
"token": "asdasdasd",
|
|
|
|
"code": 123456,
|
|
|
|
"newPassword": "testowe",
|
|
|
|
"repeatNewPassword": "testowe"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
"""
|
|
|
|
serializer_class = UserPasswordResetConfirmSerializer
|
|
|
|
permission_classes = (permissions.AllowAny, )
|
2021-12-14 16:35:17 +01:00
|
|
|
token_generator = default_token_generator
|
|
|
|
|
|
|
|
|
|
|
|
def logout(request):
|
2022-01-13 23:24:24 +01:00
|
|
|
django_logout(request)
|
2021-12-14 16:35:17 +01:00
|
|
|
return render(request, 'logout.html')
|
|
|
|
|
2021-12-15 16:46:50 +01:00
|
|
|
def register_success(request):
|
|
|
|
return render(request, 'registerSuccess.html')
|
|
|
|
|
2021-12-14 16:35:17 +01:00
|
|
|
def register(request):
|
2021-12-15 16:46:50 +01:00
|
|
|
context = {}
|
|
|
|
if request.POST:
|
|
|
|
form = RegistrationForm(request.POST)
|
|
|
|
if form.is_valid():
|
|
|
|
User.objects.create(
|
|
|
|
email=form.cleaned_data["email"],
|
|
|
|
first_name=form.cleaned_data["first_name"],
|
|
|
|
last_name=form.cleaned_data["last_name"],
|
|
|
|
password=form.cleaned_data["password1"]
|
|
|
|
)
|
|
|
|
return redirect('register_success')
|
|
|
|
else:
|
|
|
|
context['registration_form'] = form
|
|
|
|
else:
|
|
|
|
form = RegistrationForm()
|
|
|
|
context['registration_form'] = form
|
|
|
|
return render(request, 'register.html', context)
|
2021-12-19 16:59:24 +01:00
|
|
|
|
|
|
|
|
2022-01-13 23:24:24 +01:00
|
|
|
@login_required
|
2021-12-19 16:59:24 +01:00
|
|
|
def login_success(request):
|
|
|
|
return render(request, 'great.html')
|
|
|
|
|
|
|
|
|
2021-12-20 19:40:24 +01:00
|
|
|
def login(request):
|
|
|
|
context = {}
|
2021-12-19 16:59:24 +01:00
|
|
|
if request.POST:
|
2021-12-20 20:37:32 +01:00
|
|
|
form = AuthenticationForm(request.POST)
|
2021-12-19 16:59:24 +01:00
|
|
|
username = request.POST.get("username")
|
|
|
|
password = request.POST.get("password")
|
|
|
|
|
|
|
|
user = SettingsBackend().authenticate(request, email=username, password=password)
|
|
|
|
if user is not None:
|
|
|
|
auth_login(request, user)
|
2021-12-20 19:40:24 +01:00
|
|
|
return redirect('home')
|
2021-12-20 20:37:32 +01:00
|
|
|
context['login_form'] = form
|
|
|
|
else:
|
|
|
|
form = AuthenticationForm()
|
|
|
|
context['login_form'] = form
|
2021-12-19 16:59:24 +01:00
|
|
|
return render(request, 'login.html', context)
|
2022-01-13 23:24:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
@login_required
|
|
|
|
def account(request):
|
|
|
|
context = {}
|
|
|
|
context['user'] = request.user
|
|
|
|
return render(request, 'account.html', context)
|
|
|
|
|
|
|
|
|
|
|
|
@login_required
|
|
|
|
def changeEmail(request):
|
|
|
|
if request.POST:
|
|
|
|
email = request.POST.get("email")
|
|
|
|
|
|
|
|
u = request.user
|
|
|
|
u.email = email
|
|
|
|
u.save()
|
|
|
|
return redirect('account')
|
|
|
|
return render(request, 'changeEmail.html')
|
|
|
|
|
|
|
|
|
|
|
|
@login_required
|
|
|
|
def changeName(request):
|
|
|
|
if request.POST:
|
|
|
|
firstName = request.POST.get("firstName")
|
|
|
|
lastName = request.POST.get("lastName")
|
|
|
|
|
|
|
|
u = request.user
|
|
|
|
u.first_name = firstName
|
|
|
|
u.last_name = lastName
|
|
|
|
u.save()
|
|
|
|
return redirect('account')
|
|
|
|
return render(request, 'changeName.html')
|