33 lines
1.3 KiB
Python
33 lines
1.3 KiB
Python
from django.contrib.auth.base_user import BaseUserManager
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class CustomUserManager(BaseUserManager):
|
|
"""
|
|
Custom user model manager where email is the unique identifiers
|
|
for authentication instead of usernames.
|
|
"""
|
|
def create_user(self, login, password, **extra_fields):
|
|
"""
|
|
Create and save a user with the given email and password.
|
|
"""
|
|
if not login:
|
|
raise ValueError(_("The login must be set"))
|
|
user = self.model(login=login, **extra_fields)
|
|
user.set_password(password)
|
|
user.save()
|
|
return user
|
|
|
|
def create_superuser(self, login, password, **extra_fields):
|
|
"""
|
|
Create and save a SuperUser with the given email and password.
|
|
"""
|
|
extra_fields.setdefault("is_staff", True)
|
|
extra_fields.setdefault("is_superuser", True)
|
|
extra_fields.setdefault("is_active", True)
|
|
|
|
if extra_fields.get("is_staff") is not True:
|
|
raise ValueError(_("Superuser must have is_staff=True."))
|
|
if extra_fields.get("is_superuser") is not True:
|
|
raise ValueError(_("Superuser must have is_superuser=True."))
|
|
return self.create_user(login, password, **extra_fields) |