django实操:换用自建mysql用户表(一次失败的经历)

前言

别想了,基础不扎实的话,还是老老实实用django自带的用户模块吧!这是一次耗时而且失败了的经历。

因为是一次失败的经历,这里我给出一些残酷的经验。

实操

重写用户模型

这是我唯一成功的案例,你需要建一个类似如下的django-orm模型

mysql_models.py

python 复制代码
from django.db import models
from django.contrib.auth.models import AbstractBaseUser, BaseUserManager

class TpUserManager(BaseUserManager):
    def create_user(self, username, password=None, **extra_fields):
        if not username:
            raise ValueError('The Username field must be set')
        user = self.model(username=username, **extra_fields)
        user.set_password(password)
        user.save(using=self._db)
        return user

    def create_superuser(self, username, password=None, **extra_fields):
        extra_fields.setdefault('is_staff', True)
        extra_fields.setdefault('is_superuser', True)
        return self.create_user(username, password, **extra_fields)

    def authenticate(self, request, username=None, password=None):
        try:
            user = self.model.objects.get(username=username)
            if user.check_password(password) and user.state == 1 and user.user_type == 1:
                return user
        except self.model.DoesNotExist:
            return None


class TpUser(AbstractBaseUser):
    user_id = models.AutoField(primary_key=True, db_comment='自增id')
    user_type = models.IntegerField(blank=True, null=True, db_comment='用户类型,0为服务商,1为客户')
    username = models.CharField(unique=True, max_length=255, blank=True, null=True, db_comment='用户名')
    email = models.CharField(max_length=255, blank=True, null=True, db_comment='邮箱')
    is_active = models.IntegerField(blank=True, null=True, db_comment='是否')
    last_login = models.DateTimeField(blank=True, null=True, db_comment='上次登入时间')
    secret = models.CharField(max_length=255, blank=True, null=True, db_comment='授权码')
    password = models.CharField(max_length=255, blank=True, null=True, db_comment='密码')
    account_id = models.CharField(max_length=255, blank=True, null=True, db_comment='账户编码')
    create_time = models.DateTimeField(blank=True, null=True, db_comment='创建时间')
    state = models.IntegerField(blank=True, null=True, db_comment='当前状态,0为未启用,1为正常使用,2为封禁')

    objects = TpUserManager()  # 可能需要自定义用户管理器

    USERNAME_FIELD = 'username'
    REQUIRED_FIELDS = ['email']

    class Meta:
        managed = False
        db_table = 'tp_user'

同目录__init__.py

python 复制代码
from .mysql_models import TpUser

setting.py

python 复制代码
INSTALLED_APPS = [
    ...
    'youproject',
    ...
]

AUTH_USER_MODEL = 'youproject.TpUser'

遗憾点

authenticate和login均没有生效

按理来讲,我继承了django原生auth的功能,但实际上两个方法都绕过了我改写的数据表,不知道最终调用了哪里的数据,导致登入功能完全无效。

python 复制代码
from django.shortcuts import render, redirect
from django.contrib import messages
from django.contrib.auth import authenticate, login


def user_input_check(username, password):
    message = ''
    if len(username) > 16:
        message = "用户名不得超过16位!"
    elif len(password) < 6:
        message = "密码不得少于6位!"
    elif len(password) > 16:
        message = "密码不得超过16位!"
    if message:
        return False, message
    else:
        return True, ''


def login_view(request):
    if request.method == 'POST':
        username = request.POST['username']
        password = request.POST['password']
        print(username, password)
        ret, msg = user_input_check(username, password)
        if ret:
            user = authenticate(request, username=username, password=password)
            if user:
                login(request, user)
                return redirect('/welcome')  # 替换 'welcome' 为你应用的主页视图名
            else:
                messages.error(request, "用户名或密码错误!")
        else:
            messages.error(request, msg)

    return render(request, 'user/login.html')

为此,我十分头疼,并花费了若干小时去解决,但最终决定放弃,转而采用触发器或者主动脚本的方式来实现自写数据表和django默认auth表的交互,进而实现django用户管理。

相关推荐
一只fish2 分钟前
MySQL 8.0 OCP 1Z0-908 题目解析(2)
数据库·mysql
crazyme_630 分钟前
深入掌握 Python 切片操作:解锁数据处理的高效密码
开发语言·python
Code_流苏2 小时前
《Python星球日记》 第69天:生成式模型(GPT 系列)
python·gpt·深度学习·机器学习·自然语言处理·transformer·生成式模型
大学生小郑2 小时前
Go语言八股之Mysql基础详解
mysql·面试
Lw老王要学习2 小时前
Linux数据库篇、第一章_02_MySQL的使用增删改查
linux·运维·数据库·mysql·云计算·it
林下清风~2 小时前
MySQL——九、锁
数据库·mysql
于壮士hoho2 小时前
Python | Dashboard制作
开发语言·python
掘金-我是哪吒3 小时前
分布式微服务系统架构第131集:fastapi-python
分布式·python·微服务·系统架构·fastapi
小猪快跑爱摄影3 小时前
【Folium】使用离线地图
python
keke103 小时前
Java【10_1】用户注册登录(面向过程与面向对象)
java·python·intellij-idea