2025-04-30 06:14:41 +00:00
|
|
|
|
# coding=utf-8
|
|
|
|
|
|
"""
|
|
|
|
|
|
@project: maxkb
|
|
|
|
|
|
@Author:虎
|
|
|
|
|
|
@file: csv_parse_qa_handle.py
|
|
|
|
|
|
@date:2024/5/21 14:59
|
|
|
|
|
|
@desc:
|
|
|
|
|
|
"""
|
|
|
|
|
|
import csv
|
|
|
|
|
|
import io
|
|
|
|
|
|
import os
|
2025-06-30 04:40:11 +00:00
|
|
|
|
import traceback
|
2025-04-30 06:14:41 +00:00
|
|
|
|
from typing import List
|
|
|
|
|
|
|
|
|
|
|
|
from charset_normalizer import detect
|
|
|
|
|
|
|
|
|
|
|
|
from common.handle.base_split_handle import BaseSplitHandle
|
2025-06-30 04:40:11 +00:00
|
|
|
|
from common.utils.logger import maxkb_logger
|
2025-04-30 06:14:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def post_cell(cell_value):
|
|
|
|
|
|
return cell_value.replace('\n', '<br>').replace('|', '|')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def row_to_md(row):
|
|
|
|
|
|
return '| ' + ' | '.join(
|
|
|
|
|
|
[post_cell(cell) if cell is not None else '' for cell in row]) + ' |\n'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CsvSplitHandle(BaseSplitHandle):
|
|
|
|
|
|
def handle(self, file, pattern_list: List, with_filter: bool, limit: int, get_buffer, save_image):
|
|
|
|
|
|
buffer = get_buffer(file)
|
|
|
|
|
|
paragraphs = []
|
|
|
|
|
|
file_name = os.path.basename(file.name)
|
|
|
|
|
|
result = {'name': file_name, 'content': paragraphs}
|
|
|
|
|
|
try:
|
|
|
|
|
|
reader = csv.reader(io.TextIOWrapper(io.BytesIO(buffer), encoding=detect(buffer)['encoding']))
|
|
|
|
|
|
try:
|
|
|
|
|
|
title_row_list = reader.__next__()
|
|
|
|
|
|
title_md_content = row_to_md(title_row_list)
|
|
|
|
|
|
title_md_content += '| ' + ' | '.join(
|
|
|
|
|
|
['---' if cell is not None else '' for cell in title_row_list]) + ' |\n'
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
return result
|
|
|
|
|
|
if len(title_row_list) == 0:
|
|
|
|
|
|
return result
|
|
|
|
|
|
result_item_content = ''
|
|
|
|
|
|
for row in reader:
|
|
|
|
|
|
next_md_content = row_to_md(row)
|
|
|
|
|
|
next_md_content_len = len(next_md_content)
|
|
|
|
|
|
result_item_content_len = len(result_item_content)
|
|
|
|
|
|
if len(result_item_content) == 0:
|
|
|
|
|
|
result_item_content += title_md_content
|
|
|
|
|
|
result_item_content += next_md_content
|
|
|
|
|
|
else:
|
|
|
|
|
|
if result_item_content_len + next_md_content_len < limit:
|
|
|
|
|
|
result_item_content += next_md_content
|
|
|
|
|
|
else:
|
|
|
|
|
|
paragraphs.append({'content': result_item_content, 'title': ''})
|
|
|
|
|
|
result_item_content = title_md_content + next_md_content
|
|
|
|
|
|
if len(result_item_content) > 0:
|
|
|
|
|
|
paragraphs.append({'content': result_item_content, 'title': ''})
|
|
|
|
|
|
return result
|
|
|
|
|
|
except Exception as e:
|
2025-06-30 04:40:11 +00:00
|
|
|
|
maxkb_logger.error(f"Error processing CSV file {file.name}: {e}, {traceback.format_exc()}")
|
2025-04-30 06:14:41 +00:00
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def get_content(self, file, save_image):
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def support(self, file, get_buffer):
|
|
|
|
|
|
file_name: str = file.name.lower()
|
|
|
|
|
|
if file_name.endswith(".csv"):
|
|
|
|
|
|
return True
|
|
|
|
|
|
return False
|