mirror of
https://github.com/kingmo888/rustdesk-api-server.git
synced 2026-02-22 02:47:21 +08:00
101 lines
3.9 KiB
Python
101 lines
3.9 KiB
Python
# cython:language_level=3
|
|
from django.contrib import admin
|
|
from api import models
|
|
from django import forms
|
|
from django.contrib.auth.models import Group
|
|
from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
|
|
from django.contrib.auth.forms import ReadOnlyPasswordHashField
|
|
from django.utils.translation import gettext as _
|
|
|
|
|
|
class UserCreationForm(forms.ModelForm):
|
|
"""A form for creating new users. Includes all the required
|
|
fields, plus a repeated password."""
|
|
password1 = forms.CharField(label=_('密码'), widget=forms.PasswordInput)
|
|
password2 = forms.CharField(label=_('再次输入密码'), widget=forms.PasswordInput)
|
|
|
|
class Meta:
|
|
model = models.UserProfile
|
|
fields = ('username','is_active','is_admin')
|
|
|
|
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(_("密码校验失败,两次密码不一致。"))
|
|
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(label=(_("密码Hash值")), help_text=("<a href=\"../password/\">点击修改密码</a>."))
|
|
class Meta:
|
|
model = models.UserProfile
|
|
fields = ('username', '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"]
|
|
#return self.initial["password"]
|
|
|
|
def save(self, commit=True):
|
|
# Save the provided password in hashed format
|
|
user = super(UserChangeForm, self).save(commit=False)
|
|
|
|
if commit:
|
|
user.save()
|
|
return user
|
|
|
|
class UserAdmin(BaseUserAdmin):
|
|
# The forms to add and change user instances
|
|
form = UserChangeForm
|
|
add_form = UserCreationForm
|
|
password = ReadOnlyPasswordHashField(label=("密码Hash值"), help_text=("<a href=\"../password/\">点击修改密码</a>."))
|
|
# 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 = ('username', 'rid')
|
|
list_filter = ('is_admin', 'is_active')
|
|
fieldsets = (
|
|
(_('基本信息'), {'fields': ('username', 'password', 'is_active', 'is_admin', 'rid', 'uuid', 'deviceInfo',)}),
|
|
|
|
)
|
|
readonly_fields = ( 'rid', 'uuid')
|
|
add_fieldsets = (
|
|
(None, {
|
|
'classes': ('wide',),
|
|
'fields': ('username', 'is_active', 'is_admin', 'password1', 'password2', )}
|
|
),
|
|
)
|
|
|
|
search_fields = ('username', )
|
|
ordering = ('username',)
|
|
filter_horizontal = ()
|
|
|
|
|
|
admin.site.register(models.UserProfile, UserAdmin)
|
|
admin.site.register(models.RustDeskToken, models.RustDeskTokenAdmin)
|
|
admin.site.register(models.RustDeskTag, models.RustDeskTagAdmin)
|
|
admin.site.register(models.RustDeskPeer, models.RustDeskPeerAdmin)
|
|
admin.site.register(models.RustDesDevice, models.RustDesDeviceAdmin)
|
|
admin.site.register(models.ShareLink, models.ShareLinkAdmin)
|
|
admin.site.register(models.ConnLog, models.ConnLogAdmin)
|
|
admin.site.register(models.FileLog, models.FileLogAdmin)
|
|
admin.site.unregister(Group)
|
|
admin.site.site_header = _('RustDesk自建Web')
|
|
admin.site.site_title = _('未定义') |