-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat: 应用、知识库、函数库增加创建者 #1546
feat: 应用、知识库、函数库增加创建者 #1546
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,17 +129,21 @@ class Query(ApiMixin, serializers.Serializer): | |
) | ||
|
||
user_id = serializers.CharField(required=True) | ||
select_user_id = serializers.CharField(required=False) | ||
|
||
def get_query_set(self): | ||
user_id = self.data.get("user_id") | ||
query_set_dict = {} | ||
query_set = QuerySet(model=get_dynamics_model( | ||
{'temp.name': models.CharField(), 'temp.desc': models.CharField(), | ||
"document_temp.char_length": models.IntegerField(), 'temp.create_time': models.DateTimeField()})) | ||
"document_temp.char_length": models.IntegerField(), 'temp.create_time': models.DateTimeField(), | ||
'temp.user_id': models.CharField(), })) | ||
if "desc" in self.data and self.data.get('desc') is not None: | ||
query_set = query_set.filter(**{'temp.desc__icontains': self.data.get("desc")}) | ||
if "name" in self.data and self.data.get('name') is not None: | ||
query_set = query_set.filter(**{'temp.name__icontains': self.data.get("name")}) | ||
if "select_user_id" in self.data and self.data.get('select_user_id') is not None: | ||
query_set = query_set.filter(**{'temp.user_id__exact': self.data.get("select_user_id")}) | ||
query_set = query_set.order_by("-temp.create_time") | ||
query_set_dict['default_sql'] = query_set | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这个API类在Python中的实现和当前日期(2024年11月5日)之间存在差异。
if "select_user_id" in self.data:
if self.data['select_user_id']:
query_set = query_set.filter(**{'temp.user_id__exact': self.data.get('select_user_id')}) 这样就避免了不必要的检查。 |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -221,7 +221,7 @@ class Page(APIView): | |
def get(self, request: Request, current_page, page_size): | ||
d = DataSetSerializers.Query( | ||
data={'name': request.query_params.get('name', None), 'desc': request.query_params.get("desc", None), | ||
'user_id': str(request.user.id)}) | ||
'user_id': str(request.user.id), 'select_user_id': request.query_params.get('select_user_id', None)}) | ||
d.is_valid() | ||
return result.success(d.page(current_page, page_size)) | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这个代码没有明显的错误或问题,但是有一些小的变化:
更改为:
在类上方添加 由于你只是询问关于是否有必要改进或优化该段代码以达到更好的质量,请提出你的意见。 |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,6 +98,7 @@ class Query(serializers.Serializer): | |
is_active = serializers.BooleanField(required=False, error_messages=ErrMessage.char("是否可用")) | ||
|
||
user_id = serializers.UUIDField(required=True, error_messages=ErrMessage.uuid("用户id")) | ||
select_user_id = serializers.CharField(required=False, allow_null=True, allow_blank=True) | ||
|
||
def get_query_set(self): | ||
query_set = QuerySet(FunctionLib).filter( | ||
|
@@ -108,6 +109,8 @@ def get_query_set(self): | |
query_set = query_set.filter(desc__contains=self.data.get('desc')) | ||
if self.data.get('is_active') is not None: | ||
query_set = query_set.filter(is_active=self.data.get('is_active')) | ||
if self.data.get('select_user_id') is not None: | ||
query_set = query_set.filter(user_id=self.data.get('select_user_id')) | ||
query_set = query_set.order_by("-create_time") | ||
return query_set | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这段代码存在一些可能需要改善的地方。以下是修改后的版本:
请注意,以上更改仅是针对您的问题进行的具体修改。如果您有任何其他疑问或想要我提供进一步帮助,请随时告诉我。 |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,5 +105,6 @@ def get(self, request: Request, current_page: int, page_size: int): | |
FunctionLibSerializer.Query( | ||
data={'name': request.query_params.get('name'), | ||
'desc': request.query_params.get('desc'), | ||
'user_id': request.user.id}).page( | ||
'user_id': request.user.id, | ||
'select_user_id': request.query_params.get('select_user_id')}).page( | ||
current_page, page_size)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 该代码可能存在以下问题:
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
from django.core.mail import send_mail | ||
from django.core.mail.backends.smtp import EmailBackend | ||
from django.db import transaction | ||
from django.db.models import Q, QuerySet | ||
from django.db.models import Q, QuerySet, Prefetch | ||
from drf_yasg import openapi | ||
from rest_framework import serializers | ||
|
||
|
@@ -35,6 +35,7 @@ | |
from common.util.lock import lock | ||
from dataset.models import DataSet, Document, Paragraph, Problem, ProblemParagraphMapping | ||
from embedding.task import delete_embedding_by_dataset_id_list | ||
from function_lib.models.function import FunctionLib | ||
from setting.models import Team, SystemSetting, SettingType, Model, TeamMember, TeamMemberPermission | ||
from smartdoc.conf import PROJECT_DIR | ||
from users.models.user import User, password_encrypt, get_user_dynamics_permission | ||
|
@@ -495,6 +496,40 @@ def list(self, with_valid=True): | |
return [{'id': user_model.id, 'username': user_model.username, 'email': user_model.email} for user_model in | ||
QuerySet(User).filter(Q(username=email_or_username) | Q(email=email_or_username))] | ||
|
||
def listByType(self, type, user_id): | ||
teamIds = TeamMember.objects.filter(user_id=user_id).values_list('id', flat=True) | ||
targets = TeamMemberPermission.objects.filter( | ||
member_id__in=teamIds, | ||
auth_target_type=type, | ||
operate__contains=['USE'] | ||
).values_list('target', flat=True) | ||
prefetch_users = Prefetch('user', queryset=User.objects.only('id', 'username')) | ||
|
||
user_list = [] | ||
if type == 'DATASET': | ||
user_list = DataSet.objects.filter( | ||
Q(id__in=targets) | Q(user_id=user_id) | ||
).prefetch_related(prefetch_users).distinct('user_id') | ||
elif type == 'APPLICATION': | ||
user_list = Application.objects.filter( | ||
Q(id__in=targets) | Q(user_id=user_id) | ||
).prefetch_related(prefetch_users).distinct('user_id') | ||
elif type == 'FUNCTION': | ||
user_list = FunctionLib.objects.filter( | ||
Q(permission_type='PUBLIC') | Q(user_id=user_id) | ||
).prefetch_related(prefetch_users).distinct('user_id') | ||
|
||
other_users = [ | ||
{'id': app.user.id, 'username': app.user.username} | ||
for app in user_list if app.user.id != user_id | ||
] | ||
users = [ | ||
{'id': 'all', 'username': '全部'}, | ||
{'id': user_id, 'username': '我的'} | ||
] | ||
users.extend(other_users) | ||
return users | ||
|
||
|
||
class UserInstanceSerializer(ApiMixin, serializers.ModelSerializer): | ||
class Meta: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这个文档的主要任务是为一个名为UserModel的django模型创建序列化器。它首先定义了一个方法来获取符合条件或用户ID的成员列表和权限查询集,然后根据类型(数据集,应用,函数)从这些对象中提取出指定用户的用户名,并构建一组包含所有可用用户的字符串列表。 在代码格式上并没有什么大问题,但有一个小建议:可以将 |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,5 @@ | |
name="user_manage_re_password"), | ||
path("user_manage/<int:current_page>/<int:page_size>", views.UserManage.Page.as_view(), | ||
name="user_manage_re_password"), | ||
path('user/list/<str:type>', views.UserListView.as_view()), | ||
] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这个代码已经很紧凑,没有什么明显的风格问题或功能缺失。以下是几点可能需要改进的地方:
这是关于细节方面的优化调整,整体上代码没有明显缺陷或需要特别关注的部分。 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -301,3 +301,16 @@ def get(self, request: Request, user_id): | |
def put(self, request: Request, user_id): | ||
return result.success( | ||
UserManageSerializer.Operate(data={'id': user_id}).edit(request.data, with_valid=True)) | ||
|
||
|
||
class UserListView(APIView): | ||
authentication_classes = [TokenAuth] | ||
|
||
@swagger_auto_schema(operation_summary="通过类型获取用户列表", | ||
operation_id="通过类型获取用户列表", | ||
manual_parameters=UserSerializer.Query.get_request_params_api(), | ||
responses=result.get_api_array_response(UserSerializer.Query.get_response_body_api()), | ||
tags=['用户']) | ||
@has_permissions(PermissionConstants.USER_READ) | ||
def get(self, request: Request, type): | ||
return result.success(UserSerializer().listByType(type, request.user.id)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这个问题需要进一步分析,因为没有直接给出问题或修改需求。请问您在讨论的是哪个具体的代码片段呢? 另外,请提供上下文背景信息以及实际的代码实现,以便于更准确地进行评估和建议。 请注意,以下建议可能需要更多的详细信息才能有效:
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -456,6 +456,13 @@ const putWorkFlowVersion: ( | |
) | ||
} | ||
|
||
const getUserList: (type: string, loading?: Ref<boolean>) => Promise<Result<any>> = ( | ||
type, | ||
loading | ||
) => { | ||
return get(`/user/list/${type}`, undefined, loading) | ||
} | ||
|
||
export default { | ||
getAllAppilcation, | ||
getApplication, | ||
|
@@ -492,5 +499,6 @@ export default { | |
getWorkFlowVersion, | ||
getWorkFlowVersionDetail, | ||
putWorkFlowVersion, | ||
playDemoText | ||
playDemoText, | ||
getUserList | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 我无法查看代码中的差异,因为我没有权限访问特定的应用或API。我可以为您提供一些建议来改进给定的代码:
如果你需要帮助检查具体的差异,请提供你想要比较的具体代码片段。 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,19 @@ | |
<img src="@/assets/icon_document.svg" style="width: 58%" alt="" /> | ||
</AppAvatar> | ||
</slot> | ||
<auto-tooltip :content="title" style="width: 65%"> | ||
{{ title }} | ||
</auto-tooltip> | ||
<div> | ||
<auto-tooltip :content="title" style="width: 65%; height: 22px"> | ||
{{ title }} | ||
</auto-tooltip> | ||
<span class="lighter mr-8"> | ||
<auto-tooltip | ||
:content="username" | ||
style="display: inline-block; width: 100%; font-size: 12px; height: 20px" | ||
> | ||
创建人: {{ username }} | ||
</auto-tooltip></span | ||
> | ||
</div> | ||
</div> | ||
</slot> | ||
</div> | ||
|
@@ -49,6 +59,7 @@ const props = withDefaults( | |
* 是否展示icon | ||
*/ | ||
showIcon?: boolean | ||
username?: string | ||
}>(), | ||
{ title: '标题', description: '', showIcon: true, border: true } | ||
) | ||
|
@@ -62,13 +73,12 @@ function cardEnter() { | |
} | ||
|
||
function cardLeave() { | ||
show.value = subHovered.value; | ||
show.value = subHovered.value | ||
} | ||
|
||
function subHoveredEnter() { | ||
subHovered.value = true | ||
} | ||
|
||
</script> | ||
<style lang="scss" scoped> | ||
.card-box { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code difference: The code you provided contains some inconsistencies and stylistic issues which should be fixed to ensure the document is properly formatted according to best practices. However, please note that these suggestions may involve making changes to your current working environment since I don't have it available for testing. Here's a general guideline of how you might clean up this HTML markup into proper CSS structure (CSS), ensuring good readability with semantic HTML tags, and following standard conventions like removing unnecessary elements or comments at the top level: <div class="container">
<div v-if="showIcon" class="card">
<app-avatar @hover="subHoveredEnter">
<!-- other avatar logic -->
</app-avatar>
<slot name="avatar"></slot>
<!-- title & description -->
<div class="text-center">
<!-- ... -->
</div>
<div v-else class="card-body text-center" role="button" aria-label="Card body button">
<!-- sub-hovered tooltip element -->
<a class="cursor-pointer light hover:text-blueDark py-4 px-8 rounded-lg mb-2 transition-all duration-300 ease-in-out" tabindex="-1">@@</a>
<!-- username tooltip --> This will provide an improved layout while keeping your de#tact. Please let me know if there are other aspects such as specific formatting details that need addressing. Remember to replace "@@" with the real placeholder content where necessary within |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
|
||
/** card */ | ||
--card-width: 330px; | ||
--card-min-height: 160px; | ||
--card-min-height: 166px; | ||
--card-min-width: 220px; | ||
|
||
/** setting */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 您好,很遗憾的是您的问题似乎没有提供具体的代码片段来看。如果您能提供具体的代码或描述更清晰的需求情况(例如:您想要比较的两个版本以及它们之间的改动点在哪里),我将尽力帮助您评估差异并提出可能的改善建议。另外请注意,在给出任何建议时,请确保是基于实际存在的差异进行分析和判断。 |
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个问题看起来是在关于Django的REST框架和ModelViewSet中的一种模型操作类。根据您的问题描述,似乎在调用
query_set_dict
之前没有给出具体的操作指令或参数。对于优化建议,这里有几个点可以考虑改进:
如果您需要具体的解决方案,请提供更多细节。