File size: 13,889 Bytes
5890c7b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 |
/**
* 核心文档引擎 - Core Document Engine for Bazi Profiles
*
* 职责:
* 1. 为每个用户档案生成核心文档(100年命理数据)
* 2. 管理核心文档的缓存、验证和重新生成
* 3. 确保同一八字返回相同的核心结论
*
* 核心文档结构:
* - 100年生命时间线(chartPoints)
* - 命理核心分析(personality_core, career_core等)
* - K线数据(kline_data)
* - 巅峰年/低谷年
*/
import { getUserProfileById, updateProfileCoreDocumentStatus, getDb, nowIso } from './database.js';
import { getCachedAnalysis, cacheAnalysis, computeBaziHash } from './cacheManager.js';
import { calculateLifeTimeline, generateFallbackKLine } from './baziCalculator.js';
/**
* 生成核心文档
* @param {object} profile - 用户档案对象
* @param {boolean} skipCache - 是否跳过缓存检查(强制重新生成)
* @returns {Promise<object>} 核心文档对象
*/
export const generateCoreDocument = async (profile, skipCache = false) => {
try {
console.log(`[CoreDocEngine] 开始生成核心文档 - Profile ID: ${profile.id}`);
// 1. 更新状态为"生成中"
updateProfileCoreDocumentStatus(profile.id, 'generating');
// 2. 计算100年生命时间线
const timelineData = calculateLifeTimeline({
birthYear: profile.birthYear,
gender: profile.gender === 'male' ? 'Male' : 'Female',
yearPillar: profile.yearPillar,
monthPillar: profile.monthPillar,
dayPillar: profile.dayPillar,
hourPillar: profile.hourPillar,
startAge: profile.startAge,
firstDaYun: profile.firstDaYun
});
console.log(`[CoreDocEngine] 时间线计算完成 - ${timelineData.timeline.length} 年`);
// 3. 计算八字哈希
const baziHash = computeBaziHash(
profile.yearPillar,
profile.monthPillar,
profile.dayPillar,
profile.hourPillar
);
// 4. 检查缓存(除非跳过)
let cachedAnalysis = null;
if (!skipCache) {
cachedAnalysis = getCachedAnalysis(baziHash, profile.gender);
if (cachedAnalysis) {
console.log(`[CoreDocEngine] 找到缓存分析 - Hash: ${baziHash}`);
}
}
// 5. 如果没有缓存,触发分析生成(当前使用降级算法)
let coreDocument;
if (cachedAnalysis) {
// 使用缓存数据
coreDocument = {
profileId: profile.id,
baziHash,
chartPoints: cachedAnalysis.klineData || [],
personalityCore: cachedAnalysis.personalityCore,
careerCore: cachedAnalysis.careerCore,
wealthCore: cachedAnalysis.wealthCore,
marriageCore: cachedAnalysis.marriageCore,
healthCore: cachedAnalysis.healthCore,
klineData: cachedAnalysis.klineData,
peakYears: cachedAnalysis.peakYears,
troughYears: cachedAnalysis.troughYears,
cryptoCore: cachedAnalysis.cryptoCore,
luckyElements: cachedAnalysis.luckyElements,
physicalTraits: cachedAnalysis.physicalTraits,
modelUsed: cachedAnalysis.modelUsed,
generatedAt: nowIso(),
fromCache: true
};
} else {
// 生成新的分析(使用降级算法)
console.log(`[CoreDocEngine] 生成新的核心分析 - 使用降级算法`);
const klineData = generateFallbackKLine(timelineData);
// 找出巅峰年和低谷年
const sortedByScore = [...klineData].sort((a, b) => b.score - a.score);
const peakYears = sortedByScore.slice(0, 5).map(p => ({
year: p.year,
age: p.age,
score: p.score,
reason: p.reason
}));
const troughYears = sortedByScore.slice(-5).reverse().map(p => ({
year: p.year,
age: p.age,
score: p.score,
reason: p.reason
}));
// 构建核心文档
coreDocument = {
profileId: profile.id,
baziHash,
chartPoints: klineData,
personalityCore: {
content: '基于四柱八字的性格分析(降级版)',
score: 5
},
careerCore: {
content: '基于四柱八字的事业分析(降级版)',
score: 5
},
wealthCore: {
content: '基于四柱八字的财运分析(降级版)',
score: 5
},
marriageCore: {
content: '基于四柱八字的婚姻分析(降级版)',
score: 5
},
healthCore: {
content: '基于四柱八字的健康分析(降级版)',
score: 5,
bodyParts: []
},
klineData,
peakYears,
troughYears,
cryptoCore: {
content: '暂无币圈分析',
score: 5
},
luckyElements: {
colors: [],
directions: [],
zodiac: [],
numbers: []
},
physicalTraits: {
appearance: '',
bodyType: '',
skin: '',
characterSummary: ''
},
modelUsed: 'fallback_v1',
generatedAt: nowIso(),
fromCache: false
};
// 保存到缓存
cacheAnalysis({
baziHash,
gender: profile.gender,
structuralData: {
bazi: [profile.yearPillar, profile.monthPillar, profile.dayPillar, profile.hourPillar],
summaryScore: 5
},
personalityCore: coreDocument.personalityCore,
careerCore: coreDocument.careerCore,
wealthCore: coreDocument.wealthCore,
marriageCore: coreDocument.marriageCore,
healthCore: coreDocument.healthCore,
klineData,
peakYears,
troughYears,
cryptoCore: coreDocument.cryptoCore,
luckyElements: coreDocument.luckyElements,
physicalTraits: coreDocument.physicalTraits,
modelUsed: 'fallback_v1',
version: 1
});
console.log(`[CoreDocEngine] 核心分析已缓存 - Hash: ${baziHash}`);
}
// 6. 更新档案状态为"就绪"
updateProfileCoreDocumentStatus(profile.id, 'ready');
console.log(`[CoreDocEngine] 核心文档生成完成 - Profile ID: ${profile.id}`);
return coreDocument;
} catch (error) {
console.error(`[CoreDocEngine] 生成核心文档失败:`, error);
// 更新状态为"失败"
updateProfileCoreDocumentStatus(profile.id, 'failed');
throw new Error(`生成核心文档失败: ${error.message}`);
}
};
/**
* 获取核心文档
* @param {string} profileId - 档案ID
* @returns {Promise<object>} 核心文档对象,包含验证状态
*/
export const getCoreDocument = async (profileId) => {
try {
console.log(`[CoreDocEngine] 获取核心文档 - Profile ID: ${profileId}`);
// 1. 获取档案
const profile = getUserProfileById(profileId);
if (!profile) {
throw new Error('档案不存在');
}
// 2. 计算八字哈希
const baziHash = computeBaziHash(
profile.yearPillar,
profile.monthPillar,
profile.dayPillar,
profile.hourPillar
);
// 3. 查询缓存
const cachedAnalysis = getCachedAnalysis(baziHash, profile.gender);
// 4. 如果找到缓存,构建文档并返回
if (cachedAnalysis && cachedAnalysis.klineData && cachedAnalysis.klineData.length > 0) {
const document = {
profileId: profile.id,
baziHash,
chartPoints: cachedAnalysis.klineData,
personalityCore: cachedAnalysis.personalityCore,
careerCore: cachedAnalysis.careerCore,
wealthCore: cachedAnalysis.wealthCore,
marriageCore: cachedAnalysis.marriageCore,
healthCore: cachedAnalysis.healthCore,
klineData: cachedAnalysis.klineData,
peakYears: cachedAnalysis.peakYears,
troughYears: cachedAnalysis.troughYears,
cryptoCore: cachedAnalysis.cryptoCore,
luckyElements: cachedAnalysis.luckyElements,
physicalTraits: cachedAnalysis.physicalTraits,
modelUsed: cachedAnalysis.modelUsed,
generatedAt: cachedAnalysis.createdAt,
fromCache: true
};
// 验证文档完整性
const validation = validateCoreDocument(document);
console.log(`[CoreDocEngine] 核心文档已从缓存返回 - 验证分数: ${validation.score}`);
return {
document,
validation,
status: 'ready'
};
}
// 5. 如果没有缓存,生成新文档
console.log(`[CoreDocEngine] 缓存未找到,生成新核心文档`);
const document = await generateCoreDocument(profile);
const validation = validateCoreDocument(document);
return {
document,
validation,
status: 'ready'
};
} catch (error) {
console.error(`[CoreDocEngine] 获取核心文档失败:`, error);
throw new Error(`获取核心文档失败: ${error.message}`);
}
};
/**
* 验证核心文档完整性
* @param {object} doc - 核心文档对象
* @returns {object} 验证结果 { valid: boolean, missing: string[], score: number }
*/
export const validateCoreDocument = (doc) => {
const missing = [];
let score = 0;
const maxScore = 100;
// 1. 检查 chartPoints 是否存在且有约100项
if (!doc.chartPoints || !Array.isArray(doc.chartPoints)) {
missing.push('chartPoints');
} else if (doc.chartPoints.length === 0) {
missing.push('chartPoints (empty)');
} else if (doc.chartPoints.length < 90) {
missing.push('chartPoints (不足100年)');
score += 10; // 部分分数
} else {
score += 30; // chartPoints 占30分
}
// 2. 检查必需字段:personalityCore
if (!doc.personalityCore || !doc.personalityCore.content) {
missing.push('personality_core');
} else {
score += 15;
}
// 3. 检查必需字段:careerCore
if (!doc.careerCore || !doc.careerCore.content) {
missing.push('career_core');
} else {
score += 15;
}
// 4. 检查必需字段:klineData
if (!doc.klineData || !Array.isArray(doc.klineData)) {
missing.push('kline_data');
} else if (doc.klineData.length === 0) {
missing.push('kline_data (empty)');
} else {
score += 20;
}
// 5. 检查可选字段:wealthCore
if (doc.wealthCore && doc.wealthCore.content) {
score += 5;
}
// 6. 检查可选字段:marriageCore
if (doc.marriageCore && doc.marriageCore.content) {
score += 5;
}
// 7. 检查可选字段:healthCore
if (doc.healthCore && doc.healthCore.content) {
score += 5;
}
// 8. 检查可选字段:peakYears 和 troughYears
if (doc.peakYears && Array.isArray(doc.peakYears) && doc.peakYears.length > 0) {
score += 3;
}
if (doc.troughYears && Array.isArray(doc.troughYears) && doc.troughYears.length > 0) {
score += 2;
}
// 9. 检查可选字段:luckyElements
if (doc.luckyElements && Object.keys(doc.luckyElements).length > 0) {
score += 3;
}
// 10. 检查可选字段:physicalTraits
if (doc.physicalTraits && Object.keys(doc.physicalTraits).length > 0) {
score += 2;
}
const valid = missing.length === 0 && score >= 80;
return {
valid,
missing,
score,
maxScore,
message: valid
? '核心文档完整'
: `核心文档不完整,缺失字段: ${missing.join(', ')}`
};
};
/**
* 强制重新生成核心文档
* @param {string} profileId - 档案ID
* @param {string} reason - 重新生成原因
* @returns {Promise<object>} 新的核心文档对象
*/
export const regenerateCoreDocument = async (profileId, reason = '手动触发') => {
try {
console.log(`[CoreDocEngine] 重新生成核心文档 - Profile ID: ${profileId}, 原因: ${reason}`);
// 1. 获取档案
const profile = getUserProfileById(profileId);
if (!profile) {
throw new Error('档案不存在');
}
// 2. 计算八字哈希
const baziHash = computeBaziHash(
profile.yearPillar,
profile.monthPillar,
profile.dayPillar,
profile.hourPillar
);
// 3. 删除现有缓存
const db = getDb();
const deleteStmt = db.prepare(`
DELETE FROM bazi_analysis_cache
WHERE bazi_hash = ? AND gender = ?
`);
const result = deleteStmt.run(baziHash, profile.gender);
if (result.changes > 0) {
console.log(`[CoreDocEngine] 已删除旧缓存 - Hash: ${baziHash}, 删除条数: ${result.changes}`);
}
// 4. 记录重新生成日志
console.log(`[CoreDocEngine] 重新生成原因: ${reason}`);
// 5. 生成新文档(跳过缓存检查)
const newDocument = await generateCoreDocument(profile, true);
console.log(`[CoreDocEngine] 核心文档重新生成完成 - Profile ID: ${profileId}`);
return {
document: newDocument,
regenerated: true,
reason,
timestamp: nowIso()
};
} catch (error) {
console.error(`[CoreDocEngine] 重新生成核心文档失败:`, error);
throw new Error(`重新生成核心文档失败: ${error.message}`);
}
};
/**
* 批量生成核心文档(用于系统维护)
* @param {string[]} profileIds - 档案ID数组
* @returns {Promise<object>} 批量生成结果统计
*/
export const batchGenerateCoreDocuments = async (profileIds) => {
console.log(`[CoreDocEngine] 批量生成核心文档 - 数量: ${profileIds.length}`);
const results = {
total: profileIds.length,
success: 0,
failed: 0,
errors: []
};
for (const profileId of profileIds) {
try {
await generateCoreDocument({ id: profileId });
results.success++;
} catch (error) {
results.failed++;
results.errors.push({
profileId,
error: error.message
});
}
}
console.log(`[CoreDocEngine] 批量生成完成 - 成功: ${results.success}, 失败: ${results.failed}`);
return results;
};
export default {
generateCoreDocument,
getCoreDocument,
validateCoreDocument,
regenerateCoreDocument,
batchGenerateCoreDocuments
};
|