Merge 1f45f818d6 into b5b53acc57
This commit is contained in:
commit
49ef932c66
|
|
@ -3,9 +3,11 @@ Report API路由
|
|||
提供模拟报告生成、获取、对话等接口
|
||||
"""
|
||||
|
||||
import json
|
||||
import os
|
||||
import traceback
|
||||
import threading
|
||||
from io import BytesIO
|
||||
from flask import request, jsonify, send_file
|
||||
|
||||
from . import report_bp
|
||||
|
|
@ -517,40 +519,61 @@ def list_reports():
|
|||
@report_bp.route('/<report_id>/download', methods=['GET'])
|
||||
def download_report(report_id: str):
|
||||
"""
|
||||
下载报告(Markdown格式)
|
||||
|
||||
返回Markdown文件
|
||||
下载报告(Markdown或JSON格式)
|
||||
|
||||
Query参数:
|
||||
format: 下载格式,支持 "markdown"(默认)或 "json"
|
||||
|
||||
返回对应格式的文件
|
||||
"""
|
||||
try:
|
||||
report = ReportManager.get_report(report_id)
|
||||
|
||||
|
||||
if not report:
|
||||
return jsonify({
|
||||
"success": False,
|
||||
"error": t('api.reportNotFound', id=report_id)
|
||||
}), 404
|
||||
|
||||
md_path = ReportManager._get_report_markdown_path(report_id)
|
||||
|
||||
if not os.path.exists(md_path):
|
||||
# 如果MD文件不存在,生成一个临时文件
|
||||
import tempfile
|
||||
with tempfile.NamedTemporaryFile(mode='w', suffix='.md', delete=False) as f:
|
||||
f.write(report.markdown_content)
|
||||
temp_path = f.name
|
||||
|
||||
|
||||
download_format = request.args.get('format', 'markdown').lower()
|
||||
|
||||
if download_format not in {'markdown', 'json'}:
|
||||
return jsonify({
|
||||
"success": False,
|
||||
"error": "Unsupported report format. Use 'markdown' or 'json'."
|
||||
}), 400
|
||||
|
||||
if download_format == 'json':
|
||||
report_json = json.dumps(
|
||||
report.to_dict(),
|
||||
ensure_ascii=False,
|
||||
indent=2
|
||||
).encode('utf-8')
|
||||
|
||||
return send_file(
|
||||
temp_path,
|
||||
BytesIO(report_json),
|
||||
as_attachment=True,
|
||||
download_name=f"{report_id}.md"
|
||||
download_name=f"{report_id}.json",
|
||||
mimetype='application/json'
|
||||
)
|
||||
|
||||
|
||||
# Default: markdown format
|
||||
md_path = ReportManager._get_report_markdown_path(report_id)
|
||||
|
||||
if not os.path.exists(md_path):
|
||||
return send_file(
|
||||
BytesIO(report.markdown_content.encode('utf-8')),
|
||||
as_attachment=True,
|
||||
download_name=f"{report_id}.md",
|
||||
mimetype='text/markdown'
|
||||
)
|
||||
|
||||
return send_file(
|
||||
md_path,
|
||||
as_attachment=True,
|
||||
download_name=f"{report_id}.md"
|
||||
)
|
||||
|
||||
|
||||
except Exception as e:
|
||||
logger.error(f"下载报告失败: {str(e)}")
|
||||
return jsonify({
|
||||
|
|
|
|||
|
|
@ -0,0 +1,76 @@
|
|||
import json
|
||||
from types import SimpleNamespace
|
||||
|
||||
from flask import Flask
|
||||
|
||||
from app.api import report as report_api
|
||||
|
||||
|
||||
def _download_response(monkeypatch, tmp_path, query_string=""):
|
||||
report = SimpleNamespace(
|
||||
markdown_content="# 预测报告\n\n完整内容",
|
||||
to_dict=lambda: {
|
||||
"report_id": "report-1",
|
||||
"title": "预测报告",
|
||||
},
|
||||
)
|
||||
monkeypatch.setattr(
|
||||
report_api.ReportManager,
|
||||
"get_report",
|
||||
classmethod(lambda _cls, _report_id: report),
|
||||
)
|
||||
monkeypatch.setattr(
|
||||
report_api.ReportManager,
|
||||
"_get_report_markdown_path",
|
||||
classmethod(lambda _cls, _report_id: str(tmp_path / "missing.md")),
|
||||
)
|
||||
|
||||
app = Flask(__name__)
|
||||
with app.test_request_context(
|
||||
f"/api/report/report-1/download{query_string}",
|
||||
):
|
||||
return report_api.download_report("report-1")
|
||||
|
||||
|
||||
def _response_text(response):
|
||||
response.direct_passthrough = False
|
||||
return response.get_data(as_text=True)
|
||||
|
||||
|
||||
def test_download_report_returns_utf8_json_attachment(monkeypatch, tmp_path):
|
||||
response = _download_response(monkeypatch, tmp_path, "?format=json")
|
||||
|
||||
assert response.status_code == 200
|
||||
assert response.mimetype == "application/json"
|
||||
assert "report-1.json" in response.headers["Content-Disposition"]
|
||||
assert json.loads(_response_text(response)) == {
|
||||
"report_id": "report-1",
|
||||
"title": "预测报告",
|
||||
}
|
||||
|
||||
|
||||
def test_download_report_generates_markdown_attachment_in_memory(
|
||||
monkeypatch,
|
||||
tmp_path,
|
||||
):
|
||||
response = _download_response(monkeypatch, tmp_path)
|
||||
|
||||
assert response.status_code == 200
|
||||
assert response.mimetype == "text/markdown"
|
||||
assert "report-1.md" in response.headers["Content-Disposition"]
|
||||
assert _response_text(response) == "# 预测报告\n\n完整内容"
|
||||
assert list(tmp_path.iterdir()) == []
|
||||
|
||||
|
||||
def test_download_report_rejects_unknown_format(monkeypatch, tmp_path):
|
||||
response, status = _download_response(
|
||||
monkeypatch,
|
||||
tmp_path,
|
||||
"?format=pdf",
|
||||
)
|
||||
|
||||
assert status == 400
|
||||
assert response.get_json() == {
|
||||
"success": False,
|
||||
"error": "Unsupported report format. Use 'markdown' or 'json'.",
|
||||
}
|
||||
|
|
@ -49,3 +49,14 @@ export const getReport = (reportId) => {
|
|||
export const chatWithReport = (data) => {
|
||||
return service.post('/api/report/chat', data)
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the download URL for a report
|
||||
* @param {string} reportId
|
||||
* @param {string} format - 'markdown' or 'json'
|
||||
* @returns {string} download URL
|
||||
*/
|
||||
export const getReportDownloadUrl = (reportId, format = 'markdown') => {
|
||||
const baseURL = import.meta.env.VITE_API_BASE_URL || 'http://localhost:5001'
|
||||
return `${baseURL}/api/report/${reportId}/download?format=${format}`
|
||||
}
|
||||
|
|
|
|||
|
|
@ -127,14 +127,36 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Next Step Button - 在完成后显示 -->
|
||||
<button v-if="isComplete" class="next-step-btn" @click="goToInteraction">
|
||||
<span>{{ $t('step4.goToInteraction') }}</span>
|
||||
<svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<line x1="5" y1="12" x2="19" y2="12"></line>
|
||||
<polyline points="12 5 19 12 12 19"></polyline>
|
||||
</svg>
|
||||
</button>
|
||||
<!-- Download & Next Step Buttons - 在完成后显示 -->
|
||||
<div v-if="isComplete" class="report-actions">
|
||||
<div class="download-dropdown">
|
||||
<button class="download-btn" @click="toggleDownloadMenu">
|
||||
<svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
|
||||
<polyline points="7 10 12 15 17 10"></polyline>
|
||||
<line x1="12" y1="15" x2="12" y2="3"></line>
|
||||
</svg>
|
||||
<span>{{ $t('step4.downloadReport') }}</span>
|
||||
</button>
|
||||
<div v-if="showDownloadMenu" class="download-menu">
|
||||
<a :href="getReportDownloadUrl(reportId, 'markdown')" class="download-menu-item" @click="showDownloadMenu = false">
|
||||
<span class="format-icon">MD</span>
|
||||
<span>{{ $t('step4.markdownFormat') }}</span>
|
||||
</a>
|
||||
<a :href="getReportDownloadUrl(reportId, 'json')" class="download-menu-item" @click="showDownloadMenu = false">
|
||||
<span class="format-icon">{ }</span>
|
||||
<span>{{ $t('step4.jsonFormat') }}</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<button class="next-step-btn" @click="goToInteraction">
|
||||
<span>{{ $t('step4.goToInteraction') }}</span>
|
||||
<svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<line x1="5" y1="12" x2="19" y2="12"></line>
|
||||
<polyline points="12 5 19 12 12 19"></polyline>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="workflow-divider"></div>
|
||||
</div>
|
||||
|
|
@ -393,7 +415,7 @@
|
|||
import { ref, computed, watch, onMounted, onUnmounted, nextTick, h, reactive } from 'vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { getAgentLog, getConsoleLog } from '../api/report'
|
||||
import { getAgentLog, getConsoleLog, getReportDownloadUrl } from '../api/report'
|
||||
|
||||
const router = useRouter()
|
||||
const { t } = useI18n()
|
||||
|
|
@ -413,6 +435,12 @@ const goToInteraction = () => {
|
|||
}
|
||||
}
|
||||
|
||||
// Download menu state
|
||||
const showDownloadMenu = ref(false)
|
||||
const toggleDownloadMenu = () => {
|
||||
showDownloadMenu.value = !showDownloadMenu.value
|
||||
}
|
||||
|
||||
// State
|
||||
const agentLogs = ref([])
|
||||
const consoleLogs = ref([])
|
||||
|
|
@ -3402,13 +3430,85 @@ watch(() => props.reportId, (newId) => {
|
|||
font-size: 14px;
|
||||
}
|
||||
|
||||
.report-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
width: calc(100% - 40px);
|
||||
margin: 4px 20px 0 20px;
|
||||
}
|
||||
|
||||
.download-dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.download-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 14px 20px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: #1F2937;
|
||||
background: #F3F4F6;
|
||||
border: 1px solid #D1D5DB;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.download-btn:hover {
|
||||
background: #E5E7EB;
|
||||
}
|
||||
|
||||
.download-menu {
|
||||
position: absolute;
|
||||
bottom: 100%;
|
||||
left: 0;
|
||||
margin-bottom: 4px;
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #E5E7EB;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
||||
overflow: hidden;
|
||||
z-index: 10;
|
||||
min-width: 180px;
|
||||
}
|
||||
|
||||
.download-menu-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 10px 16px;
|
||||
font-size: 13px;
|
||||
color: #374151;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
transition: background 0.15s ease;
|
||||
}
|
||||
|
||||
.download-menu-item:hover {
|
||||
background: #F3F4F6;
|
||||
}
|
||||
|
||||
.format-icon {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
color: #6B7280;
|
||||
background: #F3F4F6;
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
min-width: 28px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.next-step-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
width: calc(100% - 40px);
|
||||
margin: 4px 20px 0 20px;
|
||||
flex: 1;
|
||||
padding: 14px 20px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
|
|
|
|||
|
|
@ -210,6 +210,9 @@
|
|||
"step4": {
|
||||
"generatingSection": "Generating {title}...",
|
||||
"goToInteraction": "Enter Deep Interaction",
|
||||
"downloadReport": "Download Report",
|
||||
"markdownFormat": "Markdown (.md)",
|
||||
"jsonFormat": "JSON (.json)",
|
||||
"waitingForReportAgent": "Waiting for Report Agent...",
|
||||
"collapse": "Collapse ▲",
|
||||
"expandAll": "Show all {count} ▼",
|
||||
|
|
|
|||
|
|
@ -210,6 +210,9 @@
|
|||
"step4": {
|
||||
"generatingSection": "正在生成{title}...",
|
||||
"goToInteraction": "进入深度互动",
|
||||
"downloadReport": "下载报告",
|
||||
"markdownFormat": "Markdown (.md)",
|
||||
"jsonFormat": "JSON (.json)",
|
||||
"waitingForReportAgent": "Waiting for Report Agent...",
|
||||
"collapse": "收起 ▲",
|
||||
"expandAll": "展开全部 {count} 条 ▼",
|
||||
|
|
|
|||
Loading…
Reference in New Issue