2025-04-14 12:11:23 +00:00
|
|
|
|
# coding=utf-8
|
|
|
|
|
|
"""
|
|
|
|
|
|
@project: MaxKB
|
|
|
|
|
|
@Author:虎虎
|
|
|
|
|
|
@file: user.py
|
|
|
|
|
|
@date:2025/4/14 19:18
|
|
|
|
|
|
@desc:
|
|
|
|
|
|
"""
|
2025-04-27 08:26:40 +00:00
|
|
|
|
import re
|
2025-05-30 03:07:24 +00:00
|
|
|
|
from collections import defaultdict
|
2025-05-26 08:12:08 +00:00
|
|
|
|
from itertools import product
|
2025-04-14 12:11:23 +00:00
|
|
|
|
|
2025-04-27 08:26:40 +00:00
|
|
|
|
from django.db import transaction
|
2025-04-28 09:36:56 +00:00
|
|
|
|
from django.db.models import Q, QuerySet
|
2025-04-27 08:26:40 +00:00
|
|
|
|
from rest_framework import serializers
|
|
|
|
|
|
import uuid_utils.compat as uuid
|
|
|
|
|
|
from common.constants.exception_code_constants import ExceptionCodeConstants
|
2025-04-27 10:27:35 +00:00
|
|
|
|
from common.constants.permission_constants import RoleConstants, Auth
|
2025-05-08 02:51:01 +00:00
|
|
|
|
from common.database_model_manage.database_model_manage import DatabaseModelManage
|
2025-04-28 09:36:56 +00:00
|
|
|
|
from common.db.search import page_search
|
|
|
|
|
|
from common.exception.app_exception import AppApiException
|
2025-04-27 08:26:40 +00:00
|
|
|
|
from common.utils.common import valid_license, password_encrypt
|
2025-04-14 12:11:23 +00:00
|
|
|
|
from users.models import User
|
2025-04-27 08:26:40 +00:00
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
from django.core import validators
|
2025-04-14 12:11:23 +00:00
|
|
|
|
|
2025-04-28 09:36:56 +00:00
|
|
|
|
PASSWORD_REGEX = re.compile(
|
|
|
|
|
|
r"^(?![a-zA-Z]+$)(?![A-Z0-9]+$)(?![A-Z_!@#$%^&*`~.()-+=]+$)(?![a-z0-9]+$)(?![a-z_!@#$%^&*`~()-+=]+$)"
|
|
|
|
|
|
r"(?![0-9_!@#$%^&*`~()-+=]+$)[a-zA-Z0-9_!@#$%^&*`~.()-+=]{6,20}$"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2025-04-14 12:11:23 +00:00
|
|
|
|
|
|
|
|
|
|
class UserProfileResponse(serializers.ModelSerializer):
|
2025-04-27 08:26:40 +00:00
|
|
|
|
is_edit_password = serializers.BooleanField(required=True, label=_('Is Edit Password'))
|
|
|
|
|
|
permissions = serializers.ListField(required=True, label=_('permissions'))
|
2025-04-14 12:11:23 +00:00
|
|
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
model = User
|
2025-04-27 08:26:40 +00:00
|
|
|
|
fields = ['id', 'username', 'nick_name', 'email', 'role', 'permissions', 'language', 'is_edit_password']
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-04-27 09:59:47 +00:00
|
|
|
|
class CreateUserSerializer(serializers.Serializer):
|
2025-04-27 08:26:40 +00:00
|
|
|
|
username = serializers.CharField(required=True, label=_('Username'))
|
|
|
|
|
|
password = serializers.CharField(required=True, label=_('Password'))
|
|
|
|
|
|
email = serializers.EmailField(required=True, label=_('Email'))
|
|
|
|
|
|
nick_name = serializers.CharField(required=False, label=_('Nick name'))
|
|
|
|
|
|
phone = serializers.CharField(required=False, label=_('Phone'))
|
2025-04-14 12:11:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class UserProfileSerializer(serializers.Serializer):
|
|
|
|
|
|
@staticmethod
|
2025-04-27 10:27:35 +00:00
|
|
|
|
def profile(user: User, auth: Auth):
|
2025-04-14 12:11:23 +00:00
|
|
|
|
"""
|
2025-04-27 10:27:35 +00:00
|
|
|
|
获取用户详情
|
|
|
|
|
|
@param user: 用户对象
|
|
|
|
|
|
@param auth: 认证对象
|
|
|
|
|
|
@return:
|
2025-04-14 12:11:23 +00:00
|
|
|
|
"""
|
2025-04-28 09:36:56 +00:00
|
|
|
|
return {
|
|
|
|
|
|
'id': user.id,
|
|
|
|
|
|
'username': user.username,
|
|
|
|
|
|
'nick_name': user.nick_name,
|
|
|
|
|
|
'email': user.email,
|
|
|
|
|
|
'role': auth.role_list,
|
|
|
|
|
|
'permissions': auth.permission_list,
|
|
|
|
|
|
'is_edit_password': user.role == RoleConstants.ADMIN.name and user.password == 'd880e722c47a34d8e9fce789fc62389d',
|
|
|
|
|
|
'language': user.language,
|
|
|
|
|
|
}
|
2025-04-27 10:27:35 +00:00
|
|
|
|
|
2025-04-28 09:36:56 +00:00
|
|
|
|
|
|
|
|
|
|
class UserInstanceSerializer(serializers.ModelSerializer):
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
model = User
|
|
|
|
|
|
fields = ['id', 'username', 'email', 'phone', 'is_active', 'role', 'nick_name', 'create_time', 'update_time',
|
|
|
|
|
|
'source']
|
2025-04-27 08:26:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class UserManageSerializer(serializers.Serializer):
|
|
|
|
|
|
class UserInstance(serializers.Serializer):
|
|
|
|
|
|
email = serializers.EmailField(
|
|
|
|
|
|
required=True,
|
|
|
|
|
|
label=_("Email"),
|
2025-04-28 09:36:56 +00:00
|
|
|
|
validators=[validators.EmailValidator(
|
|
|
|
|
|
message=ExceptionCodeConstants.EMAIL_FORMAT_ERROR.value.message,
|
|
|
|
|
|
code=ExceptionCodeConstants.EMAIL_FORMAT_ERROR.value.code
|
|
|
|
|
|
)]
|
|
|
|
|
|
)
|
|
|
|
|
|
username = serializers.CharField(
|
|
|
|
|
|
required=True,
|
|
|
|
|
|
label=_("Username"),
|
|
|
|
|
|
max_length=20,
|
2025-05-23 10:07:23 +00:00
|
|
|
|
min_length=4,
|
2025-04-28 09:36:56 +00:00
|
|
|
|
validators=[
|
|
|
|
|
|
validators.RegexValidator(
|
2025-05-23 10:07:23 +00:00
|
|
|
|
regex=re.compile("^.{4,20}$"),
|
2025-06-03 08:48:14 +00:00
|
|
|
|
message=_('Username must be 4-20 characters long')
|
2025-04-28 09:36:56 +00:00
|
|
|
|
)
|
|
|
|
|
|
]
|
|
|
|
|
|
)
|
|
|
|
|
|
password = serializers.CharField(
|
|
|
|
|
|
required=True,
|
|
|
|
|
|
label=_("Password"),
|
|
|
|
|
|
max_length=20,
|
|
|
|
|
|
min_length=6,
|
|
|
|
|
|
validators=[
|
|
|
|
|
|
validators.RegexValidator(
|
|
|
|
|
|
regex=PASSWORD_REGEX,
|
|
|
|
|
|
message=_(
|
|
|
|
|
|
"The password must be 6-20 characters long and must be a combination of letters, numbers, and special characters."
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
]
|
|
|
|
|
|
)
|
|
|
|
|
|
nick_name = serializers.CharField(
|
2025-05-16 10:23:27 +00:00
|
|
|
|
required=True,
|
2025-04-28 09:36:56 +00:00
|
|
|
|
label=_("Nick name"),
|
2025-06-03 08:48:14 +00:00
|
|
|
|
max_length=20,
|
2025-04-28 09:36:56 +00:00
|
|
|
|
)
|
|
|
|
|
|
phone = serializers.CharField(
|
|
|
|
|
|
required=False,
|
|
|
|
|
|
label=_("Phone"),
|
|
|
|
|
|
max_length=20,
|
|
|
|
|
|
allow_null=True,
|
|
|
|
|
|
allow_blank=True
|
|
|
|
|
|
)
|
2025-04-27 08:26:40 +00:00
|
|
|
|
|
|
|
|
|
|
def is_valid(self, *, raise_exception=True):
|
|
|
|
|
|
super().is_valid(raise_exception=True)
|
2025-04-28 09:36:56 +00:00
|
|
|
|
self._check_unique_username_and_email()
|
|
|
|
|
|
|
|
|
|
|
|
def _check_unique_username_and_email(self):
|
2025-04-27 08:26:40 +00:00
|
|
|
|
username = self.data.get('username')
|
|
|
|
|
|
email = self.data.get('email')
|
2025-05-16 10:23:27 +00:00
|
|
|
|
nick_name = self.data.get('nick_name')
|
|
|
|
|
|
user = User.objects.filter(Q(username=username) | Q(email=email) | Q(nick_name=nick_name)).first()
|
2025-04-28 09:36:56 +00:00
|
|
|
|
if user:
|
|
|
|
|
|
if user.email == email:
|
2025-04-27 08:26:40 +00:00
|
|
|
|
raise ExceptionCodeConstants.EMAIL_IS_EXIST.value.to_app_api_exception()
|
2025-04-28 09:36:56 +00:00
|
|
|
|
if user.username == username:
|
2025-04-27 08:26:40 +00:00
|
|
|
|
raise ExceptionCodeConstants.USERNAME_IS_EXIST.value.to_app_api_exception()
|
2025-05-16 10:23:27 +00:00
|
|
|
|
if user.nick_name == nick_name:
|
|
|
|
|
|
raise ExceptionCodeConstants.NICKNAME_IS_EXIST.value.to_app_api_exception()
|
2025-04-27 08:26:40 +00:00
|
|
|
|
|
2025-04-28 09:36:56 +00:00
|
|
|
|
class Query(serializers.Serializer):
|
|
|
|
|
|
email_or_username = serializers.CharField(required=False, allow_null=True,
|
|
|
|
|
|
label=_('Email or username'))
|
|
|
|
|
|
|
|
|
|
|
|
def get_query_set(self):
|
|
|
|
|
|
email_or_username = self.data.get('email_or_username')
|
|
|
|
|
|
query_set = QuerySet(User)
|
|
|
|
|
|
if email_or_username is not None:
|
|
|
|
|
|
query_set = query_set.filter(
|
2025-05-16 10:23:27 +00:00
|
|
|
|
Q(username__contains=email_or_username) | Q(email__contains=email_or_username) | Q(
|
|
|
|
|
|
nick_name__contains=email_or_username))
|
2025-04-28 09:36:56 +00:00
|
|
|
|
query_set = query_set.order_by("-create_time")
|
|
|
|
|
|
return query_set
|
|
|
|
|
|
|
|
|
|
|
|
def list(self, with_valid=True):
|
|
|
|
|
|
if with_valid:
|
|
|
|
|
|
self.is_valid(raise_exception=True)
|
|
|
|
|
|
return [{'id': user_model.id, 'username': user_model.username, 'email': user_model.email} for user_model in
|
|
|
|
|
|
self.get_query_set()]
|
|
|
|
|
|
|
|
|
|
|
|
def page(self, current_page: int, page_size: int, with_valid=True):
|
|
|
|
|
|
if with_valid:
|
|
|
|
|
|
self.is_valid(raise_exception=True)
|
2025-05-30 03:07:24 +00:00
|
|
|
|
result = page_search(current_page, page_size,
|
|
|
|
|
|
self.get_query_set(),
|
|
|
|
|
|
post_records_handler=lambda u: UserInstanceSerializer(u).data)
|
|
|
|
|
|
role_model = DatabaseModelManage.get_model("role_model")
|
|
|
|
|
|
user_role_relation_model = DatabaseModelManage.get_model("workspace_user_role_mapping")
|
|
|
|
|
|
|
|
|
|
|
|
def _get_user_roles(user_ids):
|
|
|
|
|
|
if not (role_model and user_role_relation_model):
|
|
|
|
|
|
return {}
|
|
|
|
|
|
|
|
|
|
|
|
# 获取所有相关角色关系,并预加载角色信息
|
|
|
|
|
|
user_role_relations = (
|
|
|
|
|
|
user_role_relation_model.objects
|
|
|
|
|
|
.filter(user_id__in=user_ids)
|
|
|
|
|
|
.select_related('role_id') # 预加载外键数据
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
# 构建用户ID到角色名称列表的映射
|
|
|
|
|
|
user_role_mapping = defaultdict(list)
|
|
|
|
|
|
for relation in user_role_relations:
|
|
|
|
|
|
user_role_mapping[relation.user_id].append(relation.role_id.name)
|
|
|
|
|
|
|
|
|
|
|
|
return user_role_mapping
|
|
|
|
|
|
|
|
|
|
|
|
if role_model and user_role_relation_model:
|
|
|
|
|
|
user_ids = [user['id'] for user in result['records']]
|
|
|
|
|
|
user_role_mapping = _get_user_roles(user_ids)
|
|
|
|
|
|
|
|
|
|
|
|
# 将角色信息添加回用户数据中
|
|
|
|
|
|
for user in result['records']:
|
|
|
|
|
|
user['role'] = user_role_mapping.get(user['id'], [])
|
|
|
|
|
|
return result
|
2025-04-28 09:36:56 +00:00
|
|
|
|
|
2025-04-27 08:26:40 +00:00
|
|
|
|
@valid_license(model=User, count=2,
|
|
|
|
|
|
message=_(
|
|
|
|
|
|
'The community version supports up to 2 users. If you need more users, please contact us (https://fit2cloud.com/).'))
|
|
|
|
|
|
@transaction.atomic
|
|
|
|
|
|
def save(self, instance, with_valid=True):
|
|
|
|
|
|
if with_valid:
|
2025-04-28 09:36:56 +00:00
|
|
|
|
self.UserInstance(data=instance).is_valid(raise_exception=True)
|
|
|
|
|
|
|
|
|
|
|
|
user = User(
|
|
|
|
|
|
id=uuid.uuid7(),
|
|
|
|
|
|
email=instance.get('email'),
|
|
|
|
|
|
phone=instance.get('phone', ''),
|
|
|
|
|
|
nick_name=instance.get('nick_name', ''),
|
|
|
|
|
|
username=instance.get('username'),
|
|
|
|
|
|
password=password_encrypt(instance.get('password')),
|
|
|
|
|
|
role=RoleConstants.USER.name,
|
|
|
|
|
|
source="LOCAL",
|
|
|
|
|
|
is_active=True
|
|
|
|
|
|
)
|
2025-05-26 08:12:08 +00:00
|
|
|
|
update_user_role(instance, user)
|
2025-04-27 08:26:40 +00:00
|
|
|
|
user.save()
|
2025-04-28 09:36:56 +00:00
|
|
|
|
return UserInstanceSerializer(user).data
|
|
|
|
|
|
|
|
|
|
|
|
class UserEditInstance(serializers.Serializer):
|
|
|
|
|
|
email = serializers.EmailField(
|
|
|
|
|
|
required=False,
|
|
|
|
|
|
label=_("Email"),
|
|
|
|
|
|
validators=[validators.EmailValidator(
|
|
|
|
|
|
message=ExceptionCodeConstants.EMAIL_FORMAT_ERROR.value.message,
|
|
|
|
|
|
code=ExceptionCodeConstants.EMAIL_FORMAT_ERROR.value.code
|
|
|
|
|
|
)]
|
|
|
|
|
|
)
|
|
|
|
|
|
nick_name = serializers.CharField(
|
2025-05-16 10:23:27 +00:00
|
|
|
|
required=True,
|
2025-04-28 09:36:56 +00:00
|
|
|
|
label=_("Name"),
|
2025-06-03 08:48:14 +00:00
|
|
|
|
max_length=20,
|
2025-04-28 09:36:56 +00:00
|
|
|
|
)
|
|
|
|
|
|
phone = serializers.CharField(
|
|
|
|
|
|
required=False,
|
|
|
|
|
|
label=_("Phone"),
|
|
|
|
|
|
max_length=20,
|
|
|
|
|
|
allow_null=True,
|
|
|
|
|
|
allow_blank=True
|
|
|
|
|
|
)
|
|
|
|
|
|
is_active = serializers.BooleanField(
|
|
|
|
|
|
required=False,
|
|
|
|
|
|
label=_("Is Active")
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def is_valid(self, *, user_id=None, raise_exception=False):
|
|
|
|
|
|
super().is_valid(raise_exception=True)
|
|
|
|
|
|
self._check_unique_email(user_id)
|
2025-05-16 10:23:27 +00:00
|
|
|
|
self._check_unique_nick_name(user_id)
|
|
|
|
|
|
|
|
|
|
|
|
def _check_unique_nick_name(self, user_id):
|
|
|
|
|
|
nick_name = self.data.get('nick_name')
|
|
|
|
|
|
if nick_name and User.objects.filter(nick_name=nick_name).exclude(id=user_id).exists():
|
|
|
|
|
|
raise AppApiException(1008, _('Nickname is already in use'))
|
2025-04-28 09:36:56 +00:00
|
|
|
|
|
|
|
|
|
|
def _check_unique_email(self, user_id):
|
|
|
|
|
|
email = self.data.get('email')
|
|
|
|
|
|
if email and User.objects.filter(email=email).exclude(id=user_id).exists():
|
|
|
|
|
|
raise AppApiException(1004, _('Email is already in use'))
|
|
|
|
|
|
|
|
|
|
|
|
class RePasswordInstance(serializers.Serializer):
|
|
|
|
|
|
password = serializers.CharField(
|
|
|
|
|
|
required=True,
|
|
|
|
|
|
label=_("Password"),
|
|
|
|
|
|
max_length=20,
|
|
|
|
|
|
min_length=6,
|
|
|
|
|
|
validators=[
|
|
|
|
|
|
validators.RegexValidator(
|
|
|
|
|
|
regex=PASSWORD_REGEX,
|
|
|
|
|
|
message=_(
|
|
|
|
|
|
"The password must be 6-20 characters long and must be a combination of letters, numbers, and special characters."
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
]
|
|
|
|
|
|
)
|
|
|
|
|
|
re_password = serializers.CharField(
|
|
|
|
|
|
required=True,
|
|
|
|
|
|
label=_("Re Password"),
|
|
|
|
|
|
validators=[
|
|
|
|
|
|
validators.RegexValidator(
|
|
|
|
|
|
regex=PASSWORD_REGEX,
|
|
|
|
|
|
message=_(
|
|
|
|
|
|
"The confirmation password must be 6-20 characters long and must be a combination of letters, numbers, and special characters."
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
]
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def is_valid(self, *, raise_exception=False):
|
|
|
|
|
|
super().is_valid(raise_exception=True)
|
|
|
|
|
|
self._check_passwords_match()
|
|
|
|
|
|
|
|
|
|
|
|
def _check_passwords_match(self):
|
|
|
|
|
|
if self.data.get('password') != self.data.get('re_password'):
|
|
|
|
|
|
raise ExceptionCodeConstants.PASSWORD_NOT_EQ_RE_PASSWORD.value.to_app_api_exception()
|
|
|
|
|
|
|
|
|
|
|
|
class Operate(serializers.Serializer):
|
|
|
|
|
|
id = serializers.UUIDField(required=True, label=_('User ID'))
|
|
|
|
|
|
|
|
|
|
|
|
def is_valid(self, *, raise_exception=False):
|
|
|
|
|
|
super().is_valid(raise_exception=True)
|
|
|
|
|
|
self._check_user_exists()
|
|
|
|
|
|
|
|
|
|
|
|
def _check_user_exists(self):
|
|
|
|
|
|
if not User.objects.filter(id=self.data.get('id')).exists():
|
|
|
|
|
|
raise AppApiException(1004, _('User does not exist'))
|
|
|
|
|
|
|
|
|
|
|
|
@transaction.atomic
|
|
|
|
|
|
def delete(self, with_valid=True):
|
|
|
|
|
|
if with_valid:
|
|
|
|
|
|
self.is_valid(raise_exception=True)
|
|
|
|
|
|
self._check_not_admin()
|
|
|
|
|
|
user_id = self.data.get('id')
|
|
|
|
|
|
# TODO 需要删除授权关系
|
|
|
|
|
|
User.objects.filter(id=user_id).delete()
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def _check_not_admin(self):
|
|
|
|
|
|
user = User.objects.filter(id=self.data.get('id')).first()
|
|
|
|
|
|
if user.role == RoleConstants.ADMIN.name:
|
|
|
|
|
|
raise AppApiException(1004, _('Unable to delete administrator'))
|
|
|
|
|
|
|
|
|
|
|
|
def edit(self, instance, with_valid=True):
|
|
|
|
|
|
if with_valid:
|
|
|
|
|
|
self.is_valid(raise_exception=True)
|
|
|
|
|
|
UserManageSerializer.UserEditInstance(data=instance).is_valid(user_id=self.data.get('id'),
|
|
|
|
|
|
raise_exception=True)
|
|
|
|
|
|
user = User.objects.filter(id=self.data.get('id')).first()
|
|
|
|
|
|
self._check_admin_modification(user, instance)
|
|
|
|
|
|
self._update_user_fields(user, instance)
|
2025-05-26 08:12:08 +00:00
|
|
|
|
update_user_role(instance, user)
|
2025-04-28 09:36:56 +00:00
|
|
|
|
user.save()
|
|
|
|
|
|
return UserInstanceSerializer(user).data
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def _check_admin_modification(user, instance):
|
|
|
|
|
|
if user.role == RoleConstants.ADMIN.name and 'is_active' in instance and instance.get(
|
|
|
|
|
|
'is_active') is not None:
|
|
|
|
|
|
raise AppApiException(1004, _('Cannot modify administrator status'))
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def _update_user_fields(user, instance):
|
|
|
|
|
|
update_keys = ['email', 'nick_name', 'phone', 'is_active']
|
|
|
|
|
|
for key in update_keys:
|
|
|
|
|
|
if key in instance and instance.get(key) is not None:
|
|
|
|
|
|
setattr(user, key, instance.get(key))
|
|
|
|
|
|
|
|
|
|
|
|
def one(self, with_valid=True):
|
|
|
|
|
|
if with_valid:
|
|
|
|
|
|
self.is_valid(raise_exception=True)
|
|
|
|
|
|
user = User.objects.filter(id=self.data.get('id')).first()
|
2025-05-08 02:51:01 +00:00
|
|
|
|
workspace_user_role_mapping_model = DatabaseModelManage.get_model("workspace_user_role_mapping")
|
|
|
|
|
|
if workspace_user_role_mapping_model:
|
|
|
|
|
|
role_setting = {}
|
|
|
|
|
|
workspace_user_role_mapping_list = QuerySet(workspace_user_role_mapping_model).filter(
|
|
|
|
|
|
user_id=user.id)
|
|
|
|
|
|
for workspace_user_role_mapping in workspace_user_role_mapping_list:
|
|
|
|
|
|
role_id = workspace_user_role_mapping.role_id
|
|
|
|
|
|
workspace_id = workspace_user_role_mapping.workspace_id
|
|
|
|
|
|
if role_id not in role_setting:
|
|
|
|
|
|
role_setting[role_id] = []
|
|
|
|
|
|
role_setting[role_id].append(workspace_id)
|
|
|
|
|
|
return {
|
|
|
|
|
|
'id': user.id,
|
|
|
|
|
|
'username': user.username,
|
|
|
|
|
|
'email': user.email,
|
|
|
|
|
|
'phone': user.phone,
|
|
|
|
|
|
'nick_name': user.nick_name,
|
|
|
|
|
|
'is_active': user.is_active,
|
|
|
|
|
|
'role_setting': role_setting
|
|
|
|
|
|
}
|
2025-04-28 09:36:56 +00:00
|
|
|
|
return UserInstanceSerializer(user).data
|
|
|
|
|
|
|
|
|
|
|
|
def re_password(self, instance, with_valid=True):
|
|
|
|
|
|
if with_valid:
|
|
|
|
|
|
self.is_valid(raise_exception=True)
|
|
|
|
|
|
UserManageSerializer.RePasswordInstance(data=instance).is_valid(raise_exception=True)
|
|
|
|
|
|
user = User.objects.filter(id=self.data.get('id')).first()
|
|
|
|
|
|
user.password = password_encrypt(instance.get('password'))
|
|
|
|
|
|
user.save()
|
|
|
|
|
|
return True
|
2025-05-15 04:07:07 +00:00
|
|
|
|
|
|
|
|
|
|
def get_user_list(self, workspace_id):
|
|
|
|
|
|
"""
|
|
|
|
|
|
获取用户列表
|
|
|
|
|
|
:param workspace_id: 工作空间ID
|
|
|
|
|
|
:return: 用户列表
|
|
|
|
|
|
"""
|
|
|
|
|
|
workspace_user_role_mapping_model = DatabaseModelManage.get_model("workspace_user_role_mapping")
|
|
|
|
|
|
if workspace_user_role_mapping_model:
|
|
|
|
|
|
user_ids = (
|
|
|
|
|
|
workspace_user_role_mapping_model.objects
|
|
|
|
|
|
.filter(workspace_id=workspace_id)
|
|
|
|
|
|
.values_list('user_id', flat=True)
|
|
|
|
|
|
.distinct()
|
|
|
|
|
|
)
|
|
|
|
|
|
else:
|
|
|
|
|
|
user_ids = User.objects.values_list('id', flat=True)
|
|
|
|
|
|
|
2025-05-16 10:23:27 +00:00
|
|
|
|
users = User.objects.filter(id__in=user_ids).values('id', 'nick_name')
|
2025-05-15 04:07:07 +00:00
|
|
|
|
return list(users)
|
2025-05-26 08:12:08 +00:00
|
|
|
|
|
2025-05-28 09:45:02 +00:00
|
|
|
|
|
2025-05-26 08:12:08 +00:00
|
|
|
|
def update_user_role(instance, user):
|
|
|
|
|
|
workspace_user_role_mapping_model = DatabaseModelManage.get_model("workspace_user_role_mapping")
|
|
|
|
|
|
role_setting_model = DatabaseModelManage.get_model("role_model")
|
|
|
|
|
|
if workspace_user_role_mapping_model:
|
|
|
|
|
|
role_setting = instance.get('role_setting')
|
|
|
|
|
|
workspace_user_role_mapping_model.objects.filter(user_id=user.id).delete()
|
|
|
|
|
|
relations = set()
|
|
|
|
|
|
for item in role_setting:
|
|
|
|
|
|
for role_id, workspace_ids in item.items():
|
|
|
|
|
|
relations.update(set(product([role_id], workspace_ids)))
|
|
|
|
|
|
|
|
|
|
|
|
role_ids = {role_id for item in role_setting for role_id in item}
|
|
|
|
|
|
role_ids_is_system = role_setting_model.objects.filter(id__in=role_ids,
|
2025-05-28 09:45:02 +00:00
|
|
|
|
type=RoleConstants.ADMIN.name).values_list(
|
2025-05-26 08:12:08 +00:00
|
|
|
|
'id', flat=True)
|
|
|
|
|
|
if role_ids_is_system:
|
|
|
|
|
|
relations = {(role_id, 'SYSTEM') if role_id in role_ids_is_system else (role_id, workspace_id)
|
|
|
|
|
|
for role_id, workspace_id in relations}
|
|
|
|
|
|
for role_id, workspace_id in relations:
|
|
|
|
|
|
workspace_user_role_mapping_model.objects.create(
|
|
|
|
|
|
id=uuid.uuid7(),
|
|
|
|
|
|
role_id=role_id,
|
|
|
|
|
|
workspace_id=workspace_id,
|
|
|
|
|
|
user_id=user.id
|
|
|
|
|
|
)
|