ungleich-otp/ungleichotp/otpauth/views.py

26 lines
758 B
Python
Raw Normal View History

2018-10-26 19:08:01 +00:00
from django.shortcuts import render
2018-11-17 21:15:17 +00:00
2018-11-17 10:21:35 +00:00
from rest_framework import viewsets
2018-11-17 21:15:17 +00:00
from rest_framework.decorators import action
from rest_framework.response import Response
2018-10-26 19:08:01 +00:00
2018-11-18 12:42:16 +00:00
from django.http import JsonResponse
from otpauth.serializer import VerifySerializer, OTPSerializer
from otpauth.models import OTPSeed
2018-11-17 10:39:42 +00:00
2018-11-18 12:42:16 +00:00
class OTPVerifyViewSet(viewsets.ModelViewSet):
serializer_class = OTPSerializer
queryset = OTPSeed.objects.all()
2018-11-17 17:48:12 +00:00
2018-11-17 21:15:17 +00:00
@action(detail=False, methods=['post'])
def verify(self, request):
serializer = VerifySerializer(data=request.data)
if serializer.is_valid():
2018-11-18 12:42:16 +00:00
# print(serializer)
2018-11-17 21:53:51 +00:00
serializer.save()
2018-11-17 21:15:17 +00:00
return Response({'status': 'OK'})
return JsonResponse(serializer.errors, status=400)