Я не понимаю, как работает создание пользовательского пользователя

#python #django #django-models

Вопрос:

Я читаю документацию Django 3.2 (пользовательская аутентификация), и есть некоторые строки кода, которые я не могу понять.

Я постараюсь прочитать и объяснить то, что я могу понять, или то, что, как мне кажется, я понимаю. Пожалуйста, поправьте меня, если я ошибаюсь

Ссылка на ресурс: https://docs.djangoproject.com/es/3.2/topics/auth/customizing/

Код:

 from django.db import models
from django.contrib.auth.models import (
    BaseUserManager, AbstractBaseUser
)


class MyUserManager(BaseUserManager):
    def create_user(self, email, date_of_birth, password=None):
        """
        Creates and saves a User with the given email, date of
        birth and password.
        """
        if not email:
            raise ValueError('Users must have an email address')

        user = self.model(
            email=self.normalize_email(email),
            date_of_birth=date_of_birth,
        )

        user.set_password(password)
        user.save(using=self._db)
        return user

    def create_superuser(self, email, date_of_birth, password=None):
        """
        Creates and saves a superuser with the given email, date of
        birth and password.
        """
        user = self.create_user(
            email,
            password=password,
            date_of_birth=date_of_birth,
        )
        user.is_admin = True
        user.save(using=self._db)
        return user


class MyUser(AbstractBaseUser):
    email = models.EmailField(
        verbose_name='email address',
        max_length=255,
        unique=True,
    )
    date_of_birth = models.DateField()
    is_active = models.BooleanField(default=True)
    is_admin = models.BooleanField(default=False)

    objects = MyUserManager()

    USERNAME_FIELD = 'email'
    REQUIRED_FIELDS = ['date_of_birth']

    def __str__(self):
        return self.email

    def has_perm(self, perm, obj=None):
        "Does the user have a specific permission?"
        # Simplest possible answer: Yes, always
        return True

    def has_module_perms(self, app_label):
        "Does the user have permissions to view the app `app_label`?"
        # Simplest possible answer: Yes, always
        return True

    @property
    def is_staff(self):
        "Is the user a member of staff?"
        # Simplest possible answer: All admins are staff
        return self.is_admin
 

Этот метод используется для создания стандартного пользователя, он получает 2 основных параметра: адрес электронной почты и пароль.

 def create_user(self, email, password=None):
    if not email:
        raise ValueError("Users must have an email address")

    user = self.model(
        email=self.normalize_email(email),
    )

    user.set_password(password)
    user.save(using=self._db)
    return user
 

Если поле не относится к типу электронной почты, выполните ошибку:

 if not email:
    raise ValueError("Users must have an email address")
 

I dont understand; I know that the normalize_email method puts all text in lowercase. But I don’t understand the self.model (): this is not a method, is it? Shouldn’t it be like this: user.email = self.normalize_email (email)?

 user = self.model(
    email=self.normalize_email(email),
)
 

The set_password method takes as an argument ‘password’ that the user entered, encrypts it and stores it in a structure or instance called user.

 user.set_password(password)
 

The «save» method stores the record we have entered in the database. I have no idea how using = self._db works. Wouldn’t it be enough to just call the save method? example user.save()

 user.save(using=self._db)
 

create_superuser
This method creates an Admin, receives an email and a password. But I don’t understand why you are referring to the create_user method.

 user = self.create_user(...)
 

В модели есть строка кода, в которой я тоже не понимаю ее функциональности. Зачем создавать экземпляр класса MyUserManager в переменной с именем objects?

 objects = MyUserManager()
 

Пожалуйста, объясните мне это простым способом