etesync-server/myauth/models.py

52 lines
1.4 KiB
Python
Raw Normal View History

2020-12-29 11:22:36 +00:00
import typing as t
from django.contrib.auth.models import AbstractUser, UserManager as DjangoUserManager
2020-05-15 08:01:56 +00:00
from django.core import validators
from django.db import models
from django.utils.deconstruct import deconstructible
from django.utils.translation import gettext_lazy as _
@deconstructible
class UnicodeUsernameValidator(validators.RegexValidator):
regex = r"^[\w.-]+\Z"
message = _("Enter a valid username. This value may contain only letters, " "numbers, and ./-/_ characters.")
2020-05-15 08:01:56 +00:00
flags = 0
class UserManager(DjangoUserManager):
def get_by_natural_key(self, username):
return self.get(**{self.model.USERNAME_FIELD + "__iexact": username})
class User(AbstractUser):
2020-12-29 14:06:59 +00:00
id: int
2020-05-15 08:01:56 +00:00
username_validator = UnicodeUsernameValidator()
2020-12-29 14:06:59 +00:00
objects: UserManager = UserManager()
2020-05-15 08:01:56 +00:00
username = models.CharField(
_("username"),
2020-05-15 08:01:56 +00:00
max_length=150,
unique=True,
help_text=_("Required. 150 characters or fewer. Letters, digits and ./-/_ only."),
2020-05-15 08:01:56 +00:00
validators=[username_validator],
2020-12-29 11:22:36 +00:00
error_messages={
"unique": _("A user with that username already exists."),
},
2020-05-15 08:01:56 +00:00
)
@classmethod
def normalize_username(cls, username):
return super().normalize_username(username).lower()
2020-12-29 11:22:36 +00:00
2020-12-29 12:04:17 +00:00
UserType = User
2020-12-29 11:22:36 +00:00
def get_typed_user_model() -> UserType:
from django.contrib.auth import get_user_model
ret: t.Any = get_user_model()
return ret