2023-10-24 12:24:32 +00:00
|
|
|
|
# coding=utf-8
|
|
|
|
|
|
"""
|
|
|
|
|
|
@project: maxkb
|
|
|
|
|
|
@Author:虎
|
|
|
|
|
|
@file: paragraph_serializers.py
|
|
|
|
|
|
@date:2023/10/16 15:51
|
|
|
|
|
|
@desc:
|
|
|
|
|
|
"""
|
|
|
|
|
|
import uuid
|
|
|
|
|
|
from typing import Dict
|
|
|
|
|
|
|
|
|
|
|
|
from django.core import validators
|
|
|
|
|
|
from django.db import transaction
|
|
|
|
|
|
from django.db.models import QuerySet
|
|
|
|
|
|
from drf_yasg import openapi
|
|
|
|
|
|
from rest_framework import serializers
|
|
|
|
|
|
|
|
|
|
|
|
from common.db.search import page_search
|
|
|
|
|
|
from common.event.listener_manage import ListenerManagement
|
|
|
|
|
|
from common.exception.app_exception import AppApiException
|
|
|
|
|
|
from common.mixins.api_mixin import ApiMixin
|
2023-11-16 05:16:27 +00:00
|
|
|
|
from dataset.models import Paragraph, Problem, Document
|
2023-11-17 09:43:35 +00:00
|
|
|
|
from dataset.serializers.common_serializers import update_document_char_length
|
2023-10-24 12:24:32 +00:00
|
|
|
|
from dataset.serializers.problem_serializers import ProblemInstanceSerializer, ProblemSerializer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ParagraphSerializer(serializers.ModelSerializer):
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
model = Paragraph
|
|
|
|
|
|
fields = ['id', 'content', 'hit_num', 'star_num', 'trample_num', 'is_active', 'document_id', 'title',
|
|
|
|
|
|
'create_time', 'update_time']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ParagraphInstanceSerializer(ApiMixin, serializers.Serializer):
|
|
|
|
|
|
"""
|
|
|
|
|
|
段落实例对象
|
|
|
|
|
|
"""
|
|
|
|
|
|
content = serializers.CharField(required=True, validators=[
|
|
|
|
|
|
validators.MaxLengthValidator(limit_value=1024,
|
|
|
|
|
|
message="段落在1-1024个字符之间"),
|
|
|
|
|
|
validators.MinLengthValidator(limit_value=1,
|
|
|
|
|
|
message="段落在1-1024个字符之间")
|
|
|
|
|
|
])
|
|
|
|
|
|
|
2023-11-16 05:16:27 +00:00
|
|
|
|
title = serializers.CharField(required=False, allow_null=True, allow_blank=True)
|
2023-10-24 12:24:32 +00:00
|
|
|
|
|
|
|
|
|
|
problem_list = ProblemInstanceSerializer(required=False, many=True)
|
|
|
|
|
|
|
|
|
|
|
|
is_active = serializers.BooleanField(required=False)
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def get_request_body_api():
|
|
|
|
|
|
return openapi.Schema(
|
|
|
|
|
|
type=openapi.TYPE_OBJECT,
|
|
|
|
|
|
required=['content'],
|
|
|
|
|
|
properties={
|
|
|
|
|
|
'content': openapi.Schema(type=openapi.TYPE_STRING, title="分段内容", description="分段内容"),
|
|
|
|
|
|
|
|
|
|
|
|
'title': openapi.Schema(type=openapi.TYPE_STRING, title="分段标题",
|
|
|
|
|
|
description="分段标题"),
|
|
|
|
|
|
|
|
|
|
|
|
'is_active': openapi.Schema(type=openapi.TYPE_BOOLEAN, title="是否可用", description="是否可用"),
|
|
|
|
|
|
|
|
|
|
|
|
'problem_list': openapi.Schema(type=openapi.TYPE_ARRAY, title='问题列表',
|
|
|
|
|
|
description="问题列表",
|
|
|
|
|
|
items=ProblemInstanceSerializer.get_request_body_api())
|
|
|
|
|
|
}
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ParagraphSerializers(ApiMixin, serializers.Serializer):
|
|
|
|
|
|
class Operate(ApiMixin, serializers.Serializer):
|
|
|
|
|
|
# 段落id
|
|
|
|
|
|
paragraph_id = serializers.UUIDField(required=True)
|
|
|
|
|
|
# 数据集id
|
|
|
|
|
|
dataset_id = serializers.UUIDField(required=True)
|
|
|
|
|
|
# 数据集id
|
|
|
|
|
|
document_id = serializers.UUIDField(required=True)
|
|
|
|
|
|
|
|
|
|
|
|
def is_valid(self, *, raise_exception=True):
|
|
|
|
|
|
super().is_valid(raise_exception=True)
|
|
|
|
|
|
if not QuerySet(Paragraph).filter(id=self.data.get('paragraph_id')).exists():
|
|
|
|
|
|
raise AppApiException(500, "段落id不存在")
|
|
|
|
|
|
|
|
|
|
|
|
@transaction.atomic
|
|
|
|
|
|
def edit(self, instance: Dict):
|
|
|
|
|
|
self.is_valid()
|
|
|
|
|
|
_paragraph = QuerySet(Paragraph).get(id=self.data.get("paragraph_id"))
|
|
|
|
|
|
update_keys = ['title', 'content', 'is_active']
|
|
|
|
|
|
for update_key in update_keys:
|
|
|
|
|
|
if update_key in instance and instance.get(update_key) is not None:
|
|
|
|
|
|
_paragraph.__setattr__(update_key, instance.get(update_key))
|
|
|
|
|
|
|
|
|
|
|
|
if 'problem_list' in instance:
|
|
|
|
|
|
update_problem_list = list(
|
|
|
|
|
|
filter(lambda row: 'id' in row and row.get('id') is not None, instance.get('problem_list')))
|
|
|
|
|
|
|
|
|
|
|
|
create_problem_list = list(filter(lambda row: row.get('id') is None, instance.get('problem_list')))
|
|
|
|
|
|
|
|
|
|
|
|
# 问题集合
|
|
|
|
|
|
problem_list = QuerySet(Problem).filter(paragraph_id=self.data.get("paragraph_id"))
|
|
|
|
|
|
|
|
|
|
|
|
# 校验前端 携带过来的id
|
|
|
|
|
|
for update_problem in update_problem_list:
|
|
|
|
|
|
if not set([str(row.id) for row in problem_list]).__contains__(update_problem.get('id')):
|
|
|
|
|
|
raise AppApiException(500, update_problem.get('id') + '问题id不存在')
|
|
|
|
|
|
# 对比需要删除的问题
|
|
|
|
|
|
delete_problem_list = list(filter(
|
|
|
|
|
|
lambda row: not [str(update_row.get('id')) for update_row in update_problem_list].__contains__(
|
|
|
|
|
|
str(row.id)), problem_list)) if len(update_problem_list) > 0 else []
|
|
|
|
|
|
# 删除问题
|
|
|
|
|
|
QuerySet(Problem).filter(id__in=[row.id for row in delete_problem_list]).delete() if len(
|
|
|
|
|
|
delete_problem_list) > 0 else None
|
|
|
|
|
|
# 插入新的问题
|
|
|
|
|
|
QuerySet(Problem).bulk_create(
|
|
|
|
|
|
[Problem(id=uuid.uuid1(), content=p.get('content'), paragraph_id=self.data.get('paragraph_id'),
|
|
|
|
|
|
dataset_id=self.data.get('dataset_id'), document_id=self.data.get('document_id')) for
|
|
|
|
|
|
p in create_problem_list]) if len(create_problem_list) else None
|
|
|
|
|
|
|
|
|
|
|
|
# 修改问题集合
|
|
|
|
|
|
QuerySet(Problem).bulk_update(
|
|
|
|
|
|
[Problem(id=row.get('id'), content=row.get('content')) for row in update_problem_list],
|
|
|
|
|
|
['content']) if len(
|
|
|
|
|
|
update_problem_list) > 0 else None
|
|
|
|
|
|
|
|
|
|
|
|
_paragraph.save()
|
2023-11-17 09:43:35 +00:00
|
|
|
|
update_document_char_length(self.data.get('document_id'))
|
2023-10-24 12:24:32 +00:00
|
|
|
|
if 'is_active' in instance and instance.get('is_active') is not None:
|
|
|
|
|
|
s = (ListenerManagement.enable_embedding_by_paragraph_signal if instance.get(
|
|
|
|
|
|
'is_active') else ListenerManagement.disable_embedding_by_paragraph_signal)
|
|
|
|
|
|
s.send(self.data.get('paragraph_id'))
|
|
|
|
|
|
return self.one()
|
|
|
|
|
|
|
|
|
|
|
|
def get_problem_list(self):
|
|
|
|
|
|
return [ProblemSerializer(problem).data for problem in
|
|
|
|
|
|
QuerySet(Problem).filter(paragraph_id=self.data.get("paragraph_id"))]
|
|
|
|
|
|
|
|
|
|
|
|
def one(self, with_valid=False):
|
|
|
|
|
|
if with_valid:
|
|
|
|
|
|
self.is_valid(raise_exception=True)
|
|
|
|
|
|
return {**ParagraphSerializer(QuerySet(model=Paragraph).get(id=self.data.get('paragraph_id'))).data,
|
|
|
|
|
|
'problem_list': self.get_problem_list()}
|
|
|
|
|
|
|
|
|
|
|
|
def delete(self, with_valid=False):
|
|
|
|
|
|
if with_valid:
|
|
|
|
|
|
self.is_valid(raise_exception=True)
|
|
|
|
|
|
paragraph_id = self.data.get('paragraph_id')
|
|
|
|
|
|
QuerySet(Paragraph).filter(id=paragraph_id).delete()
|
|
|
|
|
|
QuerySet(Problem).filter(paragraph_id=paragraph_id).delete()
|
|
|
|
|
|
ListenerManagement.delete_embedding_by_paragraph_signal.send(paragraph_id)
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def get_request_body_api():
|
|
|
|
|
|
return ParagraphInstanceSerializer.get_request_body_api()
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def get_response_body_api():
|
|
|
|
|
|
return ParagraphInstanceSerializer.get_request_body_api()
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def get_request_params_api():
|
|
|
|
|
|
return [openapi.Parameter(type=openapi.TYPE_STRING, in_=openapi.IN_PATH, name='paragraph_id',
|
|
|
|
|
|
description="段落id")]
|
|
|
|
|
|
|
|
|
|
|
|
class Create(ApiMixin, serializers.Serializer):
|
|
|
|
|
|
dataset_id = serializers.UUIDField(required=True)
|
|
|
|
|
|
|
|
|
|
|
|
document_id = serializers.UUIDField(required=True)
|
|
|
|
|
|
|
2023-11-16 05:16:27 +00:00
|
|
|
|
def is_valid(self, *, raise_exception=False):
|
|
|
|
|
|
super().is_valid(raise_exception=True)
|
|
|
|
|
|
if not QuerySet(Document).filter(id=self.data.get('document_id'),
|
|
|
|
|
|
dataset_id=self.data.get('dataset_id')).exists():
|
|
|
|
|
|
raise AppApiException(500, "文档id不正确")
|
|
|
|
|
|
|
2023-10-24 12:24:32 +00:00
|
|
|
|
def save(self, instance: Dict, with_valid=True, with_embedding=True):
|
|
|
|
|
|
if with_valid:
|
|
|
|
|
|
ParagraphSerializers(data=instance).is_valid(raise_exception=True)
|
|
|
|
|
|
self.is_valid()
|
|
|
|
|
|
dataset_id = self.data.get("dataset_id")
|
|
|
|
|
|
document_id = self.data.get('document_id')
|
|
|
|
|
|
|
|
|
|
|
|
paragraph = Paragraph(id=uuid.uuid1(),
|
|
|
|
|
|
document_id=document_id,
|
|
|
|
|
|
content=instance.get("content"),
|
|
|
|
|
|
dataset_id=dataset_id,
|
|
|
|
|
|
title=instance.get("title") if 'title' in instance else '')
|
|
|
|
|
|
# 插入段落
|
|
|
|
|
|
paragraph.save()
|
|
|
|
|
|
problem_model_list = [Problem(id=uuid.uuid1(), content=problem.get('content'), paragraph_id=paragraph.id,
|
|
|
|
|
|
document_id=document_id, dataset_id=dataset_id) for problem in (
|
|
|
|
|
|
instance.get('problem_list') if 'problem_list' in instance else [])]
|
|
|
|
|
|
# 插入問題
|
|
|
|
|
|
QuerySet(Problem).bulk_create(problem_model_list) if len(problem_model_list) > 0 else None
|
2023-11-17 09:43:35 +00:00
|
|
|
|
# 修改长度
|
|
|
|
|
|
update_document_char_length(document_id)
|
2023-10-24 12:24:32 +00:00
|
|
|
|
if with_embedding:
|
|
|
|
|
|
ListenerManagement.embedding_by_paragraph_signal.send(str(paragraph.id))
|
|
|
|
|
|
return ParagraphSerializers.Operate(
|
|
|
|
|
|
data={'paragraph_id': str(paragraph.id), 'dataset_id': dataset_id, 'document_id': document_id}).one(
|
|
|
|
|
|
with_valid=True)
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def get_request_body_api():
|
|
|
|
|
|
return ParagraphInstanceSerializer.get_request_body_api()
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def get_request_params_api():
|
|
|
|
|
|
return [openapi.Parameter(name='dataset_id',
|
|
|
|
|
|
in_=openapi.IN_PATH,
|
|
|
|
|
|
type=openapi.TYPE_STRING,
|
|
|
|
|
|
required=True,
|
|
|
|
|
|
description='数据集id'),
|
|
|
|
|
|
openapi.Parameter(name='document_id', in_=openapi.IN_PATH,
|
|
|
|
|
|
type=openapi.TYPE_STRING,
|
|
|
|
|
|
required=True,
|
|
|
|
|
|
description="文档id")
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
class Query(ApiMixin, serializers.Serializer):
|
|
|
|
|
|
dataset_id = serializers.UUIDField(required=True)
|
|
|
|
|
|
|
|
|
|
|
|
document_id = serializers.UUIDField(required=True)
|
|
|
|
|
|
|
|
|
|
|
|
title = serializers.CharField(required=False)
|
|
|
|
|
|
|
2023-11-17 09:43:35 +00:00
|
|
|
|
content = serializers.CharField(required=False)
|
|
|
|
|
|
|
2023-10-24 12:24:32 +00:00
|
|
|
|
def get_query_set(self):
|
|
|
|
|
|
query_set = QuerySet(model=Paragraph)
|
|
|
|
|
|
query_set = query_set.filter(
|
|
|
|
|
|
**{'dataset_id': self.data.get('dataset_id'), 'document_id': self.data.get("document_id")})
|
|
|
|
|
|
if 'title' in self.data:
|
|
|
|
|
|
query_set = query_set.filter(
|
|
|
|
|
|
**{'title__contains': self.data.get('title')})
|
2023-11-17 09:43:35 +00:00
|
|
|
|
if 'content' in self.data:
|
|
|
|
|
|
query_set = query_set.filter(**{'content__contains': self.data.get('content')})
|
2023-10-24 12:24:32 +00:00
|
|
|
|
return query_set
|
|
|
|
|
|
|
|
|
|
|
|
def list(self):
|
|
|
|
|
|
return list(map(lambda row: ParagraphSerializer(row).data, self.get_query_set()))
|
|
|
|
|
|
|
|
|
|
|
|
def page(self, current_page, page_size):
|
|
|
|
|
|
query_set = self.get_query_set()
|
|
|
|
|
|
return page_search(current_page, page_size, query_set, lambda row: ParagraphSerializer(row).data)
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def get_request_params_api():
|
|
|
|
|
|
return [openapi.Parameter(name='document_id',
|
|
|
|
|
|
in_=openapi.IN_PATH,
|
|
|
|
|
|
type=openapi.TYPE_STRING,
|
|
|
|
|
|
required=True,
|
|
|
|
|
|
description='文档id'),
|
|
|
|
|
|
openapi.Parameter(name='title',
|
|
|
|
|
|
in_=openapi.IN_QUERY,
|
|
|
|
|
|
type=openapi.TYPE_STRING,
|
|
|
|
|
|
required=False,
|
2023-11-17 09:43:35 +00:00
|
|
|
|
description='标题'),
|
|
|
|
|
|
openapi.Parameter(name='content',
|
|
|
|
|
|
in_=openapi.IN_QUERY,
|
|
|
|
|
|
type=openapi.TYPE_STRING,
|
|
|
|
|
|
required=False,
|
|
|
|
|
|
description='内容')
|
2023-10-24 12:24:32 +00:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
|
def get_response_body_api():
|
|
|
|
|
|
return openapi.Schema(
|
|
|
|
|
|
type=openapi.TYPE_OBJECT,
|
|
|
|
|
|
required=['id', 'content', 'hit_num', 'star_num', 'trample_num', 'is_active', 'document_id', 'title',
|
|
|
|
|
|
'create_time', 'update_time'],
|
|
|
|
|
|
properties={
|
|
|
|
|
|
'id': openapi.Schema(type=openapi.TYPE_STRING, title="id",
|
|
|
|
|
|
description="id", default="xx"),
|
|
|
|
|
|
'content': openapi.Schema(type=openapi.TYPE_STRING, title="段落内容",
|
|
|
|
|
|
description="段落内容", default='段落内容'),
|
|
|
|
|
|
'title': openapi.Schema(type=openapi.TYPE_STRING, title="标题",
|
|
|
|
|
|
description="标题", default="xxx的描述"),
|
|
|
|
|
|
'hit_num': openapi.Schema(type=openapi.TYPE_INTEGER, title="命中数量", description="命中数量",
|
|
|
|
|
|
default=1),
|
|
|
|
|
|
'star_num': openapi.Schema(type=openapi.TYPE_INTEGER, title="点赞数量",
|
|
|
|
|
|
description="点赞数量", default=1),
|
|
|
|
|
|
'trample_num': openapi.Schema(type=openapi.TYPE_INTEGER, title="点踩数量",
|
|
|
|
|
|
description="点踩数", default=1),
|
|
|
|
|
|
'document_id': openapi.Schema(type=openapi.TYPE_STRING, title="文档id",
|
|
|
|
|
|
description="文档id", default='xxx'),
|
|
|
|
|
|
'is_active': openapi.Schema(type=openapi.TYPE_BOOLEAN, title="是否可用",
|
|
|
|
|
|
description="是否可用", default=True),
|
|
|
|
|
|
'update_time': openapi.Schema(type=openapi.TYPE_STRING, title="修改时间",
|
|
|
|
|
|
description="修改时间",
|
|
|
|
|
|
default="1970-01-01 00:00:00"),
|
|
|
|
|
|
'create_time': openapi.Schema(type=openapi.TYPE_STRING, title="创建时间",
|
|
|
|
|
|
description="创建时间",
|
|
|
|
|
|
default="1970-01-01 00:00:00"
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
)
|