ungleich-otp/ungleichotp/otpauth/models.py

30 lines
775 B
Python
Raw Normal View History

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-10-26 19:48:21 +00:00
class OTPSeed(models.Model):
2018-11-17 09:01:24 +00:00
id = models.AutoField(primary_key=True)
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)
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
# class OTPUser(AbstractUser, OTPSeed):
# @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