mirror of https://github.com/jumpserver/jumpserver
[Update] 修改用户列表
parent
1bba00412a
commit
4c801bb828
|
@ -25,6 +25,14 @@ class IDSpmFilterMixin:
|
||||||
return backends
|
return backends
|
||||||
|
|
||||||
|
|
||||||
|
class SerializerMixin:
|
||||||
|
def get_serializer_class(self):
|
||||||
|
if self.request.query_params.get('draw') \
|
||||||
|
and hasattr(self, 'serializer_display_class'):
|
||||||
|
return self.serializer_display_class
|
||||||
|
return super().get_serializer_class()
|
||||||
|
|
||||||
|
|
||||||
class ExtraFilterFieldsMixin:
|
class ExtraFilterFieldsMixin:
|
||||||
default_added_filters = [CustomFilter, IDSpmFilter]
|
default_added_filters = [CustomFilter, IDSpmFilter]
|
||||||
filter_backends = api_settings.DEFAULT_FILTER_BACKENDS
|
filter_backends = api_settings.DEFAULT_FILTER_BACKENDS
|
||||||
|
@ -44,5 +52,5 @@ class ExtraFilterFieldsMixin:
|
||||||
return queryset
|
return queryset
|
||||||
|
|
||||||
|
|
||||||
class CommonApiMixin(ExtraFilterFieldsMixin):
|
class CommonApiMixin(SerializerMixin, ExtraFilterFieldsMixin):
|
||||||
pass
|
pass
|
||||||
|
|
|
@ -40,6 +40,7 @@ class UserViewSet(CommonApiMixin, UserQuerysetMixin, BulkModelViewSet):
|
||||||
filter_fields = ('username', 'email', 'name', 'id')
|
filter_fields = ('username', 'email', 'name', 'id')
|
||||||
search_fields = filter_fields
|
search_fields = filter_fields
|
||||||
serializer_class = serializers.UserSerializer
|
serializer_class = serializers.UserSerializer
|
||||||
|
serializer_display_class = serializers.UserDisplaySerializer
|
||||||
permission_classes = (IsOrgAdmin, CanUpdateDeleteUser)
|
permission_classes = (IsOrgAdmin, CanUpdateDeleteUser)
|
||||||
|
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
|
|
|
@ -13,35 +13,30 @@ from ..models import User, UserGroup
|
||||||
__all__ = [
|
__all__ = [
|
||||||
'UserSerializer', 'UserPKUpdateSerializer', 'UserUpdateGroupSerializer',
|
'UserSerializer', 'UserPKUpdateSerializer', 'UserUpdateGroupSerializer',
|
||||||
'ChangeUserPasswordSerializer', 'ResetOTPSerializer',
|
'ChangeUserPasswordSerializer', 'ResetOTPSerializer',
|
||||||
'UserProfileSerializer',
|
'UserProfileSerializer', 'UserDisplaySerializer',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
class UserSerializer(BulkSerializerMixin, serializers.ModelSerializer):
|
class UserSerializer(BulkSerializerMixin, serializers.ModelSerializer):
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = User
|
model = User
|
||||||
list_serializer_class = AdaptedBulkListSerializer
|
list_serializer_class = AdaptedBulkListSerializer
|
||||||
fields = [
|
fields = [
|
||||||
'id', 'name', 'username', 'password', 'email', 'public_key',
|
'id', 'name', 'username', 'password', 'email', 'public_key',
|
||||||
'groups', 'groups_display',
|
'groups', 'role', 'wechat', 'phone', 'mfa_level',
|
||||||
'role', 'role_display', 'wechat', 'phone', 'mfa_level',
|
'comment', 'source', 'is_valid', 'is_expired',
|
||||||
'comment', 'source', 'source_display', 'is_valid', 'is_expired',
|
|
||||||
'is_active', 'created_by', 'is_first_login',
|
'is_active', 'created_by', 'is_first_login',
|
||||||
'date_password_last_updated', 'date_expired', 'avatar_url',
|
'date_password_last_updated', 'date_expired', 'avatar_url',
|
||||||
]
|
]
|
||||||
extra_kwargs = {
|
extra_kwargs = {
|
||||||
'password': {'write_only': True, 'required': False, 'allow_null': True, 'allow_blank': True},
|
'password': {'write_only': True, 'required': False, 'allow_null': True, 'allow_blank': True},
|
||||||
'public_key': {'write_only': True},
|
'public_key': {'write_only': True},
|
||||||
'groups_display': {'label': _('Groups name')},
|
|
||||||
'source_display': {'label': _('Source name')},
|
|
||||||
'is_first_login': {'label': _('Is first login'), 'read_only': True},
|
'is_first_login': {'label': _('Is first login'), 'read_only': True},
|
||||||
'role_display': {'label': _('Role name')},
|
|
||||||
'is_valid': {'label': _('Is valid')},
|
'is_valid': {'label': _('Is valid')},
|
||||||
'is_expired': {'label': _('Is expired')},
|
'is_expired': {'label': _('Is expired')},
|
||||||
'avatar_url': {'label': _('Avatar url')},
|
'avatar_url': {'label': _('Avatar url')},
|
||||||
'created_by': {'read_only': True, 'allow_blank': True},
|
'created_by': {'read_only': True, 'allow_blank': True},
|
||||||
'can_update': {'read_only': True},
|
|
||||||
'can_delete': {'read_only': True},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
def validate_role(self, value):
|
def validate_role(self, value):
|
||||||
|
@ -84,6 +79,38 @@ class UserSerializer(BulkSerializerMixin, serializers.ModelSerializer):
|
||||||
return attrs
|
return attrs
|
||||||
|
|
||||||
|
|
||||||
|
class UserDisplaySerializer(UserSerializer):
|
||||||
|
can_update = serializers.SerializerMethodField()
|
||||||
|
can_delete = serializers.SerializerMethodField()
|
||||||
|
|
||||||
|
class Meta(UserSerializer.Meta):
|
||||||
|
fields = UserSerializer.Meta.fields + [
|
||||||
|
'groups_display', 'role_display', 'source_display',
|
||||||
|
'can_update', 'can_delete',
|
||||||
|
]
|
||||||
|
|
||||||
|
def get_can_update(self, obj):
|
||||||
|
return CanUpdateDeleteUser.has_update_object_permission(
|
||||||
|
self.context['request'], self.context['view'], obj
|
||||||
|
)
|
||||||
|
|
||||||
|
def get_can_delete(self, obj):
|
||||||
|
return CanUpdateDeleteUser.has_delete_object_permission(
|
||||||
|
self.context['request'], self.context['view'], obj
|
||||||
|
)
|
||||||
|
|
||||||
|
def get_extra_kwargs(self):
|
||||||
|
kwargs = super().get_extra_kwargs()
|
||||||
|
kwargs.update({
|
||||||
|
'can_update': {'read_only': True},
|
||||||
|
'can_delete': {'read_only': True},
|
||||||
|
'groups_display': {'label': _('Groups name')},
|
||||||
|
'source_display': {'label': _('Source name')},
|
||||||
|
'role_display': {'label': _('Role name')},
|
||||||
|
})
|
||||||
|
return kwargs
|
||||||
|
|
||||||
|
|
||||||
class UserPKUpdateSerializer(serializers.ModelSerializer):
|
class UserPKUpdateSerializer(serializers.ModelSerializer):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = User
|
model = User
|
||||||
|
|
Loading…
Reference in New Issue