2018-10-26 19:08:01 +00:00
|
|
|
from django.db import models
|
2018-11-17 20:45:53 +00:00
|
|
|
from django.contrib.auth.models import AbstractUser
|
2018-10-26 19:08:01 +00:00
|
|
|
|
|
|
|
# Create your models here.
|
2018-11-17 22:00:36 +00:00
|
|
|
class OTPSeed(AbstractUser):
|
2018-11-17 09:01:24 +00:00
|
|
|
id = models.AutoField(primary_key=True)
|
2018-11-17 08:42:34 +00:00
|
|
|
name = models.CharField(max_length=128)
|
|
|
|
realm = models.CharField(max_length=128)
|
2018-10-26 19:48:21 +00:00
|
|
|
seed = models.CharField(max_length=128)
|
2018-11-17 08:42:34 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
unique_together = (('name', 'realm'),)
|
|
|
|
|
2018-11-17 09:14:37 +00:00
|
|
|
def __str__(self):
|
|
|
|
return "'{}'@{}".format(self.name, self.realm)
|
2018-11-17 20:45:53 +00:00
|
|
|
|
|
|
|
# @classmethod
|
|
|
|
# def get_username(cls):
|
|
|
|
# pass
|
|
|
|
|
|
|
|
# @classmethod
|
|
|
|
# def check_password(cls, raw_password):
|
|
|
|
# """ receives a time based token"""
|
|
|
|
# pass
|
|
|
|
|
|
|
|
# @classmethod
|
|
|
|
# def has_usable_password(cls):
|
|
|
|
# pass
|
2018-11-18 11:54:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
from rest_framework import exceptions
|
|
|
|
from rest_framework import authentication
|
|
|
|
from otpauth.models import OTPSeed
|
|
|
|
from otpauth.serializer import TokenSerializer
|
|
|
|
|
|
|
|
class OTPAuthentication(authentication.BaseAuthentication):
|
|
|
|
def authenticate(self, request):
|
|
|
|
serializer = TokenSerializer(data=request.data)
|
|
|
|
|
|
|
|
if serializer.is_valid():
|
|
|
|
print("trying to save... {}".format(serializer))
|
|
|
|
user = serializer.save()
|
|
|
|
else:
|
|
|
|
raise exceptions.AuthenticationFailed()
|
|
|
|
|
|
|
|
return (user, None)
|