新增 doctor 诊断自救功能

This commit is contained in:
jxxghp
2026-06-12 15:55:24 +08:00
parent 10dcb3727e
commit 735a1ebf27
23 changed files with 1635 additions and 56 deletions

56
app/doctor/formatters.py Normal file
View File

@@ -0,0 +1,56 @@
from __future__ import annotations
import json
from app.doctor.models import DoctorFinding, DoctorReport
STATUS_LABELS = {
"healthy": "healthy",
"degraded": "degraded",
"failed": "failed",
}
def format_json_report(report: DoctorReport) -> str:
"""
将诊断报告格式化为 JSON 文本。
"""
return json.dumps(report.to_dict(), ensure_ascii=False, indent=2)
def format_text_report(report: DoctorReport) -> str:
"""
将诊断报告格式化为面向用户阅读的文本。
"""
lines = [
"MoviePilot Doctor",
"",
f"状态: {STATUS_LABELS.get(report.status.value, report.status.value)}",
f"版本: {report.version}",
f"生成时间: {report.generated_at.isoformat(timespec='seconds')}",
f"运行环境: {report.environment.get('runtime', 'unknown')}",
f"配置目录: {report.environment.get('config_path', '')}",
"",
]
for finding in report.findings:
lines.extend(_format_finding(finding))
summary = report.summary
lines.extend([
"",
f"汇总: total={summary['total']} error={summary['error']} warn={summary['warn']} fixed={summary['fixed']}",
])
return "\n".join(lines)
def _format_finding(finding: DoctorFinding) -> list[str]:
marker = finding.severity.value.upper()
if finding.fixed:
marker = "FIXED"
lines = [f"[{marker}] {finding.title}", f"ID: {finding.id}"]
if finding.detail:
lines.append(f"原因: {finding.detail}")
if finding.recommendation:
lines.append(f"建议: {finding.recommendation}")
lines.append("")
return lines