`

django 扩展user字段

 
阅读更多

方式一:用自定义的user对象替换django中的默认

model.py中自定义user对象
'''
自定义用户管理
'''
class
MyUserManager(BaseUserManager):

def create_user(self, email, date_of_birth, device_id,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,
device_id=device_id,
)
user.set_password(password)
user.save(using=self._db)
return user

def create_superuser(self, email, date_of_birth, password,device_id):
"""
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,
device_id=device_id,
)
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()
#设备编号
device_id=models.CharField(max_length=10)
is_active = models.BooleanField(default=True)
is_admin = models.BooleanField(default=False)

objects = MyUserManager()
USERNAME_FIELD = 'email'
REQUIRED_FIELDS = ['date_of_birth','device_id']

def get_full_name(self):
# The user is identified by their email address
return self.email

def get_short_name(self):
# The user is identified by their email address
return self.email

def __str__(self): # __unicode__ on Python 2
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

admin.py,修改表单样式


"""
自定义用户
"""
class
UserCreationForm(forms.ModelForm):
"""A form for creating new users. Includes all the required
fields, plus a repeated password."""
password1 = forms.CharField(label='Password', widget=forms.PasswordInput)
password2 = forms.CharField(label='Password confirmation', widget=forms.PasswordInput)

class Meta:
model = MyUser
fields = ('email', 'date_of_birth','device_id')

def clean_password2(self):

# Check that the two password entries match
password1 = self.cleaned_data.get("password1")
password2 = self.cleaned_data.get("password2")
if password1 and password2 and password1 != password2:
raise forms.ValidationError("Passwords don't match")
return password2

def save(self, commit=True):
# Save the provided password in hashed format
user = super(UserCreationForm, self).save(commit=False)
user.set_password(self.cleaned_data["password1"])
if commit:
user.save()
return user


class UserChangeForm(forms.ModelForm):
"""A form for updating users. Includes all the fields on
the user, but replaces the password field with admin's
password hash display field.
"""
password = ReadOnlyPasswordHashField()

class Meta:
model = MyUser
fields = ('email', 'date_of_birth', 'is_active', 'is_admin')

def clean_password(self):
# Regardless of what the user provides, return the initial value.
# This is done here, rather than on the field, because the
# field does not have access to the initial value
return self.initial["password"]


class UserAdmin(BaseUserAdmin):
# The forms to add and change user instances
form = UserChangeForm
add_form = UserCreationForm
# The fields to be used in displaying the User model.
# These override the definitions on the base UserAdmin
# that reference specific fields on auth.User.
list_display = ('email', 'date_of_birth', 'is_admin','device_id')
list_filter = ('is_admin',)
fieldsets = (
(None, {'fields': ('email', 'password')}),
('Personal info', {'fields': ('date_of_birth','device_id',)}),
('Permissions', {'fields': ('is_admin',)}),
)
# add_fieldsets is not a standard ModelAdmin attribute. UserAdmin
# overrides get_fieldsets to use this attribute when creating a user.
add_fieldsets = (
(None, {
'classes': ('wide',),
'fields': ('email', 'date_of_birth', 'password1', 'password2','device_id')}
),
)
search_fields = ('email',)
ordering = ('email',)
filter_horizontal = ()


# Now register the new UserAdmin...
admin.site.register(MyUser, UserAdmin)
# ... and, since we're not using Django's built-in permissions,
# unregister the Group model from admin.
#admin.site.unregister(Group)

settings.py中定义


#使用自定义用户
#AUTH_USER_MODEL = 'jkx.MyUser'

方式二:新建一个新的模型,user作为外键导入

Model.py添加


#扩展user模型
class UserProfile(models.Model):
user = models.OneToOneField(User)
description = models.TextField(max_length=51200)
scope = models.IntegerField(default=100)


def create_user_profile(sender, instance, created, **kwargs):
if created:
profile, created = UserProfile.objects.get_or_create(user=instance)


post_save.connect(create_user_profile, sender=User)

Views.py添加
#扩展user测试
def userDemo(request):
desc = User.objects.all()[0].get_profile().description
return HttpResponse(desc)

Utls.py中添加

#扩展user
url(r'^profile/',views.userDemo),


# 扩展user
class UserProfileAdmin(admin.ModelAdmin):
fields = ('user', 'description',)


admin.site.register(UserProfile, UserProfileAdmin)

修改settings.py

#扩展user
AUTH_PROFILE_MODULE='jkx.UserProfile'

分享到:
评论

相关推荐

    django 扩展user用户字段inlines方式

    主要介绍了django 扩展user用户字段inlines方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

    Django如何继承AbstractUser扩展字段

    使用django实现注册登录的话,注册登录都有现成的代码,主要是自带的User字段只有(email,username,password),所以需要扩展User,来增加自己需要的字段 AbstractUser扩展模型User:如果模型User内置的方法符合开发...

    django2.0扩展用户字段示例

    django-admin startproject myproj cd myproj python manage.py startapp myapp 自定义 User 类 文件myapp/models.py from django.db import models from django.contrib.auth.models import AbstractUser class ...

    对django的User模型和四种扩展/重写方法小结

    他的完整的路径是在django.contrib.auth.models.User。以下对这个User对象做一个简单了解: 字段: 内置的User模型拥有以下的字段: username: 用户名。150个字符以内。可以包含数字和英文字符,以及_、@、+、.和-...

    django-emailuser:通过电子邮件地址标识Django用户

    否则,使用Django 2.2+中可用的扩展机制,提供的User就像contrib.auth User模型一样工作。安装与其他任何Python软件包一样,将django-emailuser安装到您的Python环境中。 $ python setup.py install转换现有项目...

    django之对FileField字段的upload_to的设定方法

    用django开发,经常要处理用户上传的文件, 比如user模型里面如果又个人头像的字段 ImageField等等,而django在FielField字段(包括ImageField)的支持和扩展是做的很好的,首先一个问题,是上传的文件,django是放...

    Django Xadmin多对多字段过滤实例

    1.首先在models.py中编写扩展User所用到的userProfile模型及下拉框和多选框选项值所需要的模型(因为我所做的下拉框和多选框的值都是从数据库里面取得),代码如下: 2.第二步编写admin.py对User字段进行扩展,代码...

    django3.2框架+vue开发的完整问卷调查系统 django-question-master.zip

    本项目是一个简单的django问卷调查系统,拥有完善的权限机制,以及答卷功能,可扩展性强,用户相关登录、退出、改密等功能均在users应用中,course应用为问卷应用,采用vue+django+sqlite3开发,但后期可配置连接到...

    django-usuario:扩展到Django框架的模型用户

    用户 用户是Django用户模型的扩展,该模型允许使用User实例(处理权限,组成员身份),并且还可以使用用户从该实例添加的...如果要进一步扩展User类,只需创建另一个从该类继承的模型,如下所示: from usuario.models

    django-model2extjs:Model2extjs 是一个简单的 Django 应用程序,用于从 Django 模型生成 Extjs 代码(网格、表单和模型)

    描述有时,如果我们使用 Django 和 Extjs,我们可能必须在 Extjs 应用程序的许多地方编写相同的模型字段,这会变得非常烦人。 Django-model2extjs 试图通过使用我们 django 项目中的模型来为不同的 Extjs 组件(网格...

    speaker-verification-api:基于Django的说话者验证API

    将这些值复制到以下相应字段中:.env.dev POSTGRES_USER = SQL_USER,POSTGRES_DB = SQL_DATABASE,POSTGRES_PASSWORD = SQL_PASSWORD。 在.env.dev中填充SECRET_KEY-您可以使用以下Python命令python3 -c 'import ...

    Django认证系统实现的web页面实现代码

    扩展了Django中的user表,增加了自定义的字段 from django.db import models from django.contrib.auth.models import AbstractUser # Create your models here. class UserInfo(AbstractUser): phone = models....

    python-validator:像Django ORM这样的数据验证器

    python-validator 是一个类似于 Django ORM 的数据校验库,适用与任何需要进行数据校验的应用,比较常见的是 Web 后端校验前端的输入数据。 特性 支持 python2 和 python3。 使用类描述数据结构,数据字段一目了然。...

Global site tag (gtag.js) - Google Analytics