QuestionExpansionService.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. <?php
  2. namespace App\Services;
  3. use Illuminate\Support\Facades\Log;
  4. use App\Models\StudentKnowledgeMastery;
  5. use App\Models\MistakeRecord;
  6. use App\Models\Question;
  7. use App\Models\KnowledgePoint;
  8. class QuestionExpansionService
  9. {
  10. /**
  11. * 按优先级扩展题目数量
  12. * 优先级策略:
  13. * 1. 优先使用错题记录的题目
  14. * 2. 错题相同的知识点的其他题目
  15. * 3. 相同知识点的子知识点的题目
  16. * 4. 学生薄弱知识点相关题目
  17. * 5. 薄弱知识点的子知识点的题目
  18. */
  19. public function expandQuestions(array $baseParams, ?string $studentId, array $weaknessFilter, int $totalQuestions): array
  20. {
  21. Log::info('QuestionExpansionService: 开始题目扩展', [
  22. 'student_id' => $studentId,
  23. 'total_needed' => $totalQuestions,
  24. 'weakness_count' => count($weaknessFilter)
  25. ]);
  26. $strategy = [
  27. 'mistake_ids' => $baseParams['mistake_ids'] ?? [],
  28. 'mistake_question_ids' => $baseParams['mistake_question_ids'] ?? [],
  29. 'step2_count' => 0,
  30. 'step3_count' => 0,
  31. 'step4_count' => 0,
  32. 'step5_count' => 0,
  33. 'expansion_details' => []
  34. ];
  35. $includeMistakes = ($baseParams['mistake_options']['review_mistakes'] ?? true) && $studentId;
  36. if (!$includeMistakes) {
  37. Log::info('QuestionExpansionService: 未开启错题回顾,跳过扩展');
  38. return $strategy;
  39. }
  40. // Step 1: 获取学生历史错题(优先级:最高)
  41. // 直接使用学生历史错题,学习价值最高
  42. if (empty($strategy['mistake_question_ids'])) {
  43. $studentMistakes = $this->getStudentMistakes($studentId);
  44. $strategy['mistake_question_ids'] = array_values(array_unique(array_column($studentMistakes, 'question_id')));
  45. $strategy['expansion_details']['step1_mistakes'] = count($strategy['mistake_question_ids']);
  46. Log::info('QuestionExpansionService: Step1 - 获取历史错题', [
  47. 'count' => count($strategy['mistake_question_ids']),
  48. 'mistake_ids' => $strategy['mistake_question_ids']
  49. ]);
  50. }
  51. // 如果错题数量已满足需求,直接返回
  52. if (count($strategy['mistake_question_ids']) >= $totalQuestions) {
  53. Log::info('QuestionExpansionService: Step1 - 错题数量已满足需求', [
  54. 'total_needed' => $totalQuestions,
  55. 'mistake_count' => count($strategy['mistake_question_ids'])
  56. ]);
  57. return $strategy;
  58. }
  59. // Step 2: 错题相同的知识点的其他题目(优先级:高)
  60. // 强化特定知识点的掌握,题目类型多样化
  61. $remaining = $totalQuestions - count($strategy['mistake_question_ids']);
  62. $mistakeKps = $this->getMistakeKnowledgePoints($studentId, $strategy['mistake_question_ids']);
  63. if (!empty($mistakeKps) && $remaining > 0) {
  64. $step2Questions = $this->getQuestionsByKnowledgePoints($mistakeKps, $strategy['mistake_question_ids'], $remaining);
  65. $strategy['mistake_question_ids'] = array_merge($strategy['mistake_question_ids'], $step2Questions);
  66. $strategy['step2_count'] = count($step2Questions);
  67. $strategy['expansion_details']['step2_same_kp'] = [
  68. 'knowledge_points' => $mistakeKps,
  69. 'added_count' => count($step2Questions)
  70. ];
  71. Log::info('QuestionExpansionService: Step2 - 获取同知识点其他题目', [
  72. 'knowledge_points' => $mistakeKps,
  73. 'added_count' => count($step2Questions),
  74. 'total_count' => count($strategy['mistake_question_ids'])
  75. ]);
  76. }
  77. // 如果数量仍不足,继续扩展
  78. $remaining = $totalQuestions - count($strategy['mistake_question_ids']);
  79. if ($remaining <= 0) {
  80. return $strategy;
  81. }
  82. // Step 3: 相同知识点的子知识点的题目(优先级:中高)
  83. // 深入知识点的细分类别,实现精准练习
  84. if (!empty($mistakeKps) && $remaining > 0) {
  85. $childKps = $this->getChildKnowledgePoints($mistakeKps);
  86. if (!empty($childKps)) {
  87. $step3Questions = $this->getQuestionsByKnowledgePoints($childKps, $strategy['mistake_question_ids'], $remaining);
  88. $strategy['mistake_question_ids'] = array_merge($strategy['mistake_question_ids'], $step3Questions);
  89. $strategy['step3_count'] = count($step3Questions);
  90. $strategy['expansion_details']['step3_child_kp'] = [
  91. 'child_knowledge_points' => $childKps,
  92. 'added_count' => count($step3Questions)
  93. ];
  94. Log::info('QuestionExpansionService: Step3 - 获取子知识点题目', [
  95. 'child_knowledge_points' => $childKps,
  96. 'added_count' => count($step3Questions),
  97. 'total_count' => count($strategy['mistake_question_ids'])
  98. ]);
  99. }
  100. }
  101. // 如果数量仍不足,继续扩展
  102. $remaining = $totalQuestions - count($strategy['mistake_question_ids']);
  103. if ($remaining <= 0) {
  104. return $strategy;
  105. }
  106. // Step 4: 学生薄弱知识点相关题目(优先级:中)
  107. // 针对性强化薄弱环节,提升整体掌握度
  108. if (!empty($weaknessFilter) && $remaining > 0) {
  109. $weaknessKps = array_column($weaknessFilter, 'kp_code');
  110. $step4Questions = $this->getQuestionsByKnowledgePoints($weaknessKps, $strategy['mistake_question_ids'], $remaining);
  111. $strategy['mistake_question_ids'] = array_merge($strategy['mistake_question_ids'], $step4Questions);
  112. $strategy['step4_count'] = count($step4Questions);
  113. $strategy['expansion_details']['step4_weakness'] = [
  114. 'weakness_knowledge_points' => $weaknessKps,
  115. 'added_count' => count($step4Questions)
  116. ];
  117. Log::info('QuestionExpansionService: Step4 - 获取薄弱知识点题目', [
  118. 'weakness_knowledge_points' => $weaknessKps,
  119. 'added_count' => count($step4Questions),
  120. 'total_count' => count($strategy['mistake_question_ids'])
  121. ]);
  122. }
  123. // 如果数量仍不足,继续扩展
  124. $remaining = $totalQuestions - count($strategy['mistake_question_ids']);
  125. if ($remaining <= 0) {
  126. return $strategy;
  127. }
  128. // Step 5: 薄弱知识点的子知识点的题目(优先级:低)
  129. // 全面覆盖薄弱环节的各个细分领域
  130. if (!empty($weaknessFilter) && $remaining > 0) {
  131. $weaknessKps = array_column($weaknessFilter, 'kp_code');
  132. $childWeaknessKps = $this->getChildKnowledgePoints($weaknessKps);
  133. if (!empty($childWeaknessKps)) {
  134. $step5Questions = $this->getQuestionsByKnowledgePoints($childWeaknessKps, $strategy['mistake_question_ids'], $remaining);
  135. $strategy['mistake_question_ids'] = array_merge($strategy['mistake_question_ids'], $step5Questions);
  136. $strategy['step5_count'] = count($step5Questions);
  137. $strategy['expansion_details']['step5_child_weakness'] = [
  138. 'child_weakness_knowledge_points' => $childWeaknessKps,
  139. 'added_count' => count($step5Questions)
  140. ];
  141. Log::info('QuestionExpansionService: Step5 - 获取薄弱点子知识点题目', [
  142. 'child_weakness_knowledge_points' => $childWeaknessKps,
  143. 'added_count' => count($step5Questions),
  144. 'total_count' => count($strategy['mistake_question_ids'])
  145. ]);
  146. }
  147. }
  148. Log::info('QuestionExpansionService: 题目扩展完成', [
  149. 'total_final_count' => count($strategy['mistake_question_ids']),
  150. 'expansion_details' => $strategy['expansion_details']
  151. ]);
  152. return $strategy;
  153. }
  154. /**
  155. * 获取学生错题(去重,按question_id分组)
  156. */
  157. private function getStudentMistakes(string $studentId): array
  158. {
  159. try {
  160. // 使用 MistakeRecord 模型获取学生的错题(不限制数量,获取全部)
  161. // 按 question_id 分组去重,保留第一条记录
  162. $mistakeRecords = MistakeRecord::forStudent($studentId)
  163. ->where('review_status', '!=', MistakeRecord::REVIEW_STATUS_MASTERED) // 排除已掌握的错题
  164. ->select(['question_id', 'knowledge_point', 'error_type', 'difficulty'])
  165. ->get()
  166. ->unique('question_id') // 按 question_id 去重
  167. ->values(); // 重新索引
  168. Log::info('QuestionExpansionService: 获取学生错题(去重后)', [
  169. 'student_id' => $studentId,
  170. 'total_records' => MistakeRecord::forStudent($studentId)
  171. ->where('review_status', '!=', MistakeRecord::REVIEW_STATUS_MASTERED)->count(),
  172. 'unique_count' => $mistakeRecords->count()
  173. ]);
  174. return $mistakeRecords->map(function ($record) {
  175. return [
  176. 'question_id' => $record->question_id,
  177. 'kp_code' => $record->knowledge_point,
  178. 'error_type' => $record->error_type,
  179. 'difficulty' => $record->difficulty,
  180. ];
  181. })->toArray();
  182. } catch (\Exception $e) {
  183. Log::error('QuestionExpansionService: 获取学生错题失败', [
  184. 'student_id' => $studentId,
  185. 'error' => $e->getMessage()
  186. ]);
  187. return [];
  188. }
  189. }
  190. /**
  191. * 获取错题对应的知识点
  192. */
  193. private function getMistakeKnowledgePoints(string $studentId, array $questionIds): array
  194. {
  195. $mistakeRecords = MistakeRecord::forStudent($studentId)
  196. ->whereIn('question_id', $questionIds)
  197. ->whereNotNull('knowledge_point')
  198. ->select(['knowledge_point'])
  199. ->get();
  200. return array_values(array_unique(array_filter($mistakeRecords->pluck('knowledge_point')->toArray())));
  201. }
  202. /**
  203. * 根据知识点获取题目
  204. */
  205. private function getQuestionsByKnowledgePoints(array $kpCodes, array $excludeQuestionIds, int $limit): array
  206. {
  207. if (empty($kpCodes)) {
  208. return [];
  209. }
  210. try {
  211. $questions = Question::where('audit_status', 0) // 只获取审核通过的题目
  212. ->whereIn('kp_code', $kpCodes)
  213. ->whereNotIn('id', $excludeQuestionIds)
  214. ->select(['id'])
  215. ->limit($limit)
  216. ->get();
  217. return $questions->pluck('id')->toArray();
  218. } catch (\Exception $e) {
  219. Log::warning('QuestionExpansionService: 获取题目失败', [
  220. 'kp_codes' => $kpCodes,
  221. 'limit' => $limit,
  222. 'error' => $e->getMessage()
  223. ]);
  224. return [];
  225. }
  226. }
  227. /**
  228. * 获取子知识点
  229. */
  230. private function getChildKnowledgePoints(array $parentKpCodes): array
  231. {
  232. try {
  233. $childKps = KnowledgePoint::whereIn('parent_kp_code', $parentKpCodes)
  234. ->select(['kp_code'])
  235. ->get();
  236. return $childKps->pluck('kp_code')->toArray();
  237. } catch (\Exception $e) {
  238. Log::warning('QuestionExpansionService: 获取子知识点失败', [
  239. 'parent_kp_codes' => $parentKpCodes,
  240. 'error' => $e->getMessage()
  241. ]);
  242. return [];
  243. }
  244. }
  245. /**
  246. * 获取扩展统计信息
  247. */
  248. public function getExpansionStats(array $strategy): array
  249. {
  250. return [
  251. 'total_questions' => count($strategy['mistake_question_ids'] ?? []),
  252. 'step1_mistakes' => count($strategy['mistake_question_ids'] ?? []),
  253. 'step2_same_kp' => $strategy['step2_count'] ?? 0,
  254. 'step3_child_kp' => $strategy['step3_count'] ?? 0,
  255. 'step4_weakness' => $strategy['step4_count'] ?? 0,
  256. 'step5_child_weakness' => $strategy['step5_count'] ?? 0,
  257. 'expansion_rate' => $this->calculateExpansionRate($strategy),
  258. 'details' => $strategy['expansion_details'] ?? []
  259. ];
  260. }
  261. /**
  262. * 计算扩展率
  263. */
  264. private function calculateExpansionRate(array $strategy): float
  265. {
  266. $totalExpanded = ($strategy['step2_count'] ?? 0) +
  267. ($strategy['step3_count'] ?? 0) +
  268. ($strategy['step4_count'] ?? 0) +
  269. ($strategy['step5_count'] ?? 0);
  270. $totalQuestions = count($strategy['mistake_question_ids'] ?? []);
  271. if ($totalQuestions === 0) {
  272. return 0.0;
  273. }
  274. return round(($totalExpanded / $totalQuestions) * 100, 2);
  275. }
  276. /**
  277. * 按知识点优先级扩展题目数量(按知识点组卷专用)
  278. * 优先级策略:
  279. * 1. 直接关联知识点题目(来自输入数组)
  280. * 2. 相同知识点其他题目
  281. * 3. 子知识点题目(下探1层)
  282. * 4. 薄弱知识点题目
  283. * 5. 子知识点题目(下探2层)
  284. */
  285. public function expandQuestionsByKnowledgePoints(array $baseParams, ?string $studentId, array $targetKnowledgePoints, array $weaknessFilter, int $totalQuestions): array
  286. {
  287. Log::info('QuestionExpansionService: 开始按知识点扩展题目', [
  288. 'student_id' => $studentId,
  289. 'target_knowledge_points' => $targetKnowledgePoints,
  290. 'total_needed' => $totalQuestions,
  291. 'weakness_count' => count($weaknessFilter)
  292. ]);
  293. $strategy = [
  294. 'mistake_ids' => [],
  295. 'mistake_question_ids' => [],
  296. 'step2_count' => 0,
  297. 'step3_count' => 0,
  298. 'step4_count' => 0,
  299. 'step5_count' => 0,
  300. 'expansion_details' => []
  301. ];
  302. // Step 1: 获取直接关联知识点题目(优先级:最高)
  303. // 直接使用用户指定的知识点数组中的题目
  304. if (!empty($targetKnowledgePoints)) {
  305. $step1Questions = $this->getQuestionsByKnowledgePoints($targetKnowledgePoints, $strategy['mistake_question_ids'], $totalQuestions);
  306. $strategy['mistake_question_ids'] = array_merge($strategy['mistake_question_ids'], $step1Questions);
  307. $strategy['expansion_details']['step1_direct_kp'] = [
  308. 'target_knowledge_points' => $targetKnowledgePoints,
  309. 'added_count' => count($step1Questions)
  310. ];
  311. Log::info('QuestionExpansionService: Step1 - 获取直接关联知识点题目', [
  312. 'target_knowledge_points' => $targetKnowledgePoints,
  313. 'added_count' => count($step1Questions),
  314. 'total_count' => count($strategy['mistake_question_ids'])
  315. ]);
  316. }
  317. // 如果直接关联题目数量已满足需求,直接返回
  318. if (count($strategy['mistake_question_ids']) >= $totalQuestions) {
  319. Log::info('QuestionExpansionService: Step1 - 直接关联知识点题目数量已满足需求', [
  320. 'total_needed' => $totalQuestions,
  321. 'direct_kp_count' => count($strategy['mistake_question_ids'])
  322. ]);
  323. return $strategy;
  324. }
  325. // Step 2: 相同知识点其他题目(优先级:高)
  326. // 强化特定知识点的掌握,题目类型多样化
  327. $remaining = $totalQuestions - count($strategy['mistake_question_ids']);
  328. if (!empty($targetKnowledgePoints) && $remaining > 0) {
  329. $step2Questions = $this->getQuestionsByKnowledgePoints($targetKnowledgePoints, $strategy['mistake_question_ids'], $remaining);
  330. $strategy['mistake_question_ids'] = array_merge($strategy['mistake_question_ids'], $step2Questions);
  331. $strategy['step2_count'] = count($step2Questions);
  332. $strategy['expansion_details']['step2_same_kp'] = [
  333. 'knowledge_points' => $targetKnowledgePoints,
  334. 'added_count' => count($step2Questions)
  335. ];
  336. Log::info('QuestionExpansionService: Step2 - 获取相同知识点其他题目', [
  337. 'knowledge_points' => $targetKnowledgePoints,
  338. 'added_count' => count($step2Questions),
  339. 'total_count' => count($strategy['mistake_question_ids'])
  340. ]);
  341. }
  342. // 如果数量仍不足,继续扩展
  343. $remaining = $totalQuestions - count($strategy['mistake_question_ids']);
  344. if ($remaining <= 0) {
  345. return $strategy;
  346. }
  347. // Step 3: 子知识点题目(下探1层)(优先级:中高)
  348. // 深入知识点的细分类别,实现精准练习
  349. if (!empty($targetKnowledgePoints) && $remaining > 0) {
  350. $childKps = $this->getChildKnowledgePoints($targetKnowledgePoints);
  351. if (!empty($childKps)) {
  352. $step3Questions = $this->getQuestionsByKnowledgePoints($childKps, $strategy['mistake_question_ids'], $remaining);
  353. $strategy['mistake_question_ids'] = array_merge($strategy['mistake_question_ids'], $step3Questions);
  354. $strategy['step3_count'] = count($step3Questions);
  355. $strategy['expansion_details']['step3_child_kp_level1'] = [
  356. 'child_knowledge_points' => $childKps,
  357. 'added_count' => count($step3Questions)
  358. ];
  359. Log::info('QuestionExpansionService: Step3 - 获取子知识点题目(下探1层)', [
  360. 'child_knowledge_points' => $childKps,
  361. 'added_count' => count($step3Questions),
  362. 'total_count' => count($strategy['mistake_question_ids'])
  363. ]);
  364. }
  365. }
  366. // 如果数量仍不足,继续扩展
  367. $remaining = $totalQuestions - count($strategy['mistake_question_ids']);
  368. if ($remaining <= 0) {
  369. return $strategy;
  370. }
  371. // Step 4: 薄弱知识点题目(优先级:中)
  372. // 针对性强化薄弱环节,提升整体掌握度
  373. if (!empty($weaknessFilter) && $remaining > 0) {
  374. $weaknessKps = array_column($weaknessFilter, 'kp_code');
  375. // 排除已使用的目标知识点
  376. $weaknessKps = array_diff($weaknessKps, $targetKnowledgePoints);
  377. if (!empty($weaknessKps)) {
  378. $step4Questions = $this->getQuestionsByKnowledgePoints($weaknessKps, $strategy['mistake_question_ids'], $remaining);
  379. $strategy['mistake_question_ids'] = array_merge($strategy['mistake_question_ids'], $step4Questions);
  380. $strategy['step4_count'] = count($step4Questions);
  381. $strategy['expansion_details']['step4_weakness'] = [
  382. 'weakness_knowledge_points' => $weaknessKps,
  383. 'added_count' => count($step4Questions)
  384. ];
  385. Log::info('QuestionExpansionService: Step4 - 获取薄弱知识点题目', [
  386. 'weakness_knowledge_points' => $weaknessKps,
  387. 'added_count' => count($step4Questions),
  388. 'total_count' => count($strategy['mistake_question_ids'])
  389. ]);
  390. }
  391. }
  392. // 如果数量仍不足,继续扩展
  393. $remaining = $totalQuestions - count($strategy['mistake_question_ids']);
  394. if ($remaining <= 0) {
  395. return $strategy;
  396. }
  397. // Step 5: 子知识点题目(下探2层)(优先级:低)
  398. // 全面覆盖薄弱环节的各个细分领域
  399. if (!empty($weaknessFilter) && $remaining > 0) {
  400. $weaknessKps = array_column($weaknessFilter, 'kp_code');
  401. // 排除已使用的目标知识点
  402. $weaknessKps = array_diff($weaknessKps, $targetKnowledgePoints);
  403. if (!empty($weaknessKps)) {
  404. $childWeaknessKps = $this->getChildKnowledgePoints($weaknessKps);
  405. if (!empty($childWeaknessKps)) {
  406. $step5Questions = $this->getQuestionsByKnowledgePoints($childWeaknessKps, $strategy['mistake_question_ids'], $remaining);
  407. $strategy['mistake_question_ids'] = array_merge($strategy['mistake_question_ids'], $step5Questions);
  408. $strategy['step5_count'] = count($step5Questions);
  409. $strategy['expansion_details']['step5_child_weakness_level2'] = [
  410. 'child_weakness_knowledge_points' => $childWeaknessKps,
  411. 'added_count' => count($step5Questions)
  412. ];
  413. Log::info('QuestionExpansionService: Step5 - 获取薄弱点子知识点题目(下探2层)', [
  414. 'child_weakness_knowledge_points' => $childWeaknessKps,
  415. 'added_count' => count($step5Questions),
  416. 'total_count' => count($strategy['mistake_question_ids'])
  417. ]);
  418. }
  419. }
  420. }
  421. Log::info('QuestionExpansionService: 按知识点题目扩展完成', [
  422. 'total_final_count' => count($strategy['mistake_question_ids']),
  423. 'target_knowledge_points' => $targetKnowledgePoints,
  424. 'expansion_details' => $strategy['expansion_details']
  425. ]);
  426. return $strategy;
  427. }
  428. /**
  429. * 获取子知识点(下探多层)
  430. * 支持追溯下探两层
  431. */
  432. private function getChildKnowledgePointsMultiLevel(array $parentKpCodes, int $maxDepth = 2): array
  433. {
  434. $allChildKps = [];
  435. $currentLevelKps = $parentKpCodes;
  436. $depth = 0;
  437. while ($depth < $maxDepth && !empty($currentLevelKps)) {
  438. Log::info('QuestionExpansionService: 获取子知识点', [
  439. 'depth' => $depth + 1,
  440. 'parent_kp_codes' => $currentLevelKps
  441. ]);
  442. $childKps = $this->getChildKnowledgePoints($currentLevelKps);
  443. if (!empty($childKps)) {
  444. $allChildKps = array_merge($allChildKps, $childKps);
  445. $currentLevelKps = $childKps; // 下一层的父级是这一层的子级
  446. } else {
  447. break; // 没有更多子知识点时停止
  448. }
  449. $depth++;
  450. }
  451. // 去重
  452. return array_values(array_unique($allChildKps));
  453. }
  454. }