| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567 |
- <?php
- namespace App\Services;
- use Illuminate\Support\Facades\Http;
- use Illuminate\Support\Facades\Log;
- use Illuminate\Support\Facades\DB;
- class LearningAnalyticsService
- {
- protected string $baseUrl;
- protected int $timeout = 10;
- protected ?QuestionBankService $questionBankService;
- public function __construct(?QuestionBankService $questionBankService = null)
- {
- $this->baseUrl = config('services.learning_analytics.url', env('LEARNING_ANALYTICS_API_BASE', 'http://localhost:5016'));
- $this->questionBankService = $questionBankService;
- }
- /**
- * 获取学生掌握度
- */
- public function getStudentMastery(string $studentId, string $kpCode = null): array
- {
- try {
- $endpoint = $kpCode
- ? "/api/v1/mastery/student/{$studentId}/kp/{$kpCode}"
- : "/api/v1/mastery/student/{$studentId}";
- Log::info('LearningAnalytics Request: Get Student Mastery', [
- 'endpoint' => $endpoint,
- 'student_id' => $studentId,
- 'kp_code' => $kpCode
- ]);
- $response = Http::timeout($this->timeout)->get($this->baseUrl . $endpoint);
- Log::info('LearningAnalytics Response: Get Student Mastery', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- return $response->json();
- }
- Log::error('LearningAnalytics API Error', [
- 'endpoint' => $endpoint,
- 'status' => $response->status(),
- 'response' => $response->body()
- ]);
- return [
- 'error' => true,
- 'message' => 'Failed to fetch mastery data'
- ];
- } catch (\Exception $e) {
- Log::error('LearningAnalytics Service Exception', [
- 'error' => $e->getMessage(),
- 'trace' => $e->getTraceAsString()
- ]);
- return [
- 'error' => true,
- 'message' => $e->getMessage()
- ];
- }
- }
- /**
- * 更新学生掌握度
- */
- public function updateMastery(array $data): array
- {
- try {
- Log::info('LearningAnalytics Request: Update Mastery', [
- 'url' => $this->baseUrl . '/api/v1/mastery/student/' . $data['student_id'] . '/update',
- 'data' => $data
- ]);
- $response = Http::timeout($this->timeout)
- ->post($this->baseUrl . '/api/v1/mastery/student/' . $data['student_id'] . '/update', $data);
- Log::info('LearningAnalytics Response: Update Mastery', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- return $response->json();
- }
- Log::error('LearningAnalytics Update Error', [
- 'data' => $data,
- 'status' => $response->status(),
- 'response' => $response->body()
- ]);
- return [
- 'error' => true,
- 'message' => 'Failed to update mastery'
- ];
- } catch (\Exception $e) {
- Log::error('LearningAnalytics Update Exception', [
- 'error' => $e->getMessage(),
- 'data' => $data
- ]);
- return [
- 'error' => true,
- 'message' => $e->getMessage()
- ];
- }
- }
- /**
- * 获取老师名下的所有学生
- */
- public function getTeacherStudents(string $teacherId): array
- {
- try {
- // 从本地MySQL获取学生
- $students = DB::table('students as s')
- ->leftJoin('users as u', 's.student_id', '=', 'u.user_id')
- ->where('s.teacher_id', $teacherId)
- ->select(
- 's.student_id',
- 's.name',
- 's.grade',
- 's.class_name',
- 'u.username',
- 'u.email'
- )
- ->get()
- ->toArray();
- return $students;
- } catch (\Exception $e) {
- Log::error('Get Teacher Students Error', [
- 'teacher_id' => $teacherId,
- 'error' => $e->getMessage()
- ]);
- return [];
- }
- }
- /**
- * 获取学生学习分析
- */
- public function getStudentAnalysis(string $studentId): array
- {
- // 从LearningAnalytics获取掌握度
- $masteryData = $this->getStudentMastery($studentId);
- // 从MySQL获取练习历史
- $exercises = DB::table('student_exercises')
- ->where('student_id', $studentId)
- ->orderBy('created_at', 'desc')
- ->limit(50)
- ->get()
- ->toArray();
- // 从MySQL获取掌握度记录
- $masteryRecords = DB::table('student_mastery')
- ->where('student_id', $studentId)
- ->get()
- ->toArray();
- return [
- 'student_id' => $studentId,
- 'mastery_from_la' => $masteryData,
- 'exercises' => $exercises,
- 'mastery_records' => $masteryRecords,
- 'total_exercises' => count($exercises),
- 'total_mastery_records' => count($masteryRecords),
- ];
- }
- /**
- * 生成学习测试数据
- */
- public function generateLearningData(string $studentId, array $params): array
- {
- $results = [];
- foreach ($params as $param) {
- $data = [
- 'student_id' => $studentId,
- 'kp_code' => $param['kp_code'],
- 'is_correct' => $param['is_correct'],
- 'time_spent_seconds' => $param['time_spent_seconds'] ?? 120,
- 'difficulty_level' => $param['difficulty_level'] ?? 3,
- ];
- $result = $this->updateMastery($data);
- $results[] = $result;
- }
- return $results;
- }
- /**
- * 获取学习推荐
- */
- public function getLearningRecommendations(string $studentId): array
- {
- try {
- Log::info('LearningAnalytics Request: Get Learning Recommendations', [
- 'url' => $this->baseUrl . "/api/v1/learning-path/student/{$studentId}/recommend"
- ]);
- $response = Http::timeout($this->timeout)
- ->post($this->baseUrl . "/api/v1/learning-path/student/{$studentId}/recommend");
- Log::info('LearningAnalytics Response: Get Learning Recommendations', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- return $response->json();
- }
- return ['error' => true, 'message' => 'Failed to fetch recommendations'];
- } catch (\Exception $e) {
- return ['error' => true, 'message' => $e->getMessage()];
- }
- }
- /**
- * 获取知识点列表(从知识图谱API)
- */
- public function getKnowledgePoints(array $filters = []): array
- {
- try {
- $kgBaseUrl = config('services.knowledge_api.base_url', 'http://localhost:5011');
- Log::info('LearningAnalytics Request: Get Knowledge Points', [
- 'url' => $kgBaseUrl . '/knowledge-points/',
- 'filters' => $filters
- ]);
- $response = Http::timeout($this->timeout)
- ->get($kgBaseUrl . '/knowledge-points/', $filters);
- Log::info('LearningAnalytics Response: Get Knowledge Points', [
- 'status' => $response->status(),
- 'count' => count($response->json()['data'] ?? [])
- ]);
- if ($response->successful()) {
- return $response->json()['data'] ?? [];
- }
- return [];
- } catch (\Exception $e) {
- Log::error('LearningAnalytics Knowledge Points Error', [
- 'error' => $e->getMessage()
- ]);
- return [];
- }
- }
- /**
- * 获取学生技能熟练度
- */
- public function getStudentSkillProficiency(string $studentId): array
- {
- try {
- Log::info('LearningAnalytics Request: Get Student Skill Proficiency', [
- 'url' => $this->baseUrl . "/api/v1/skill/proficiency/student/{$studentId}"
- ]);
- $response = Http::timeout($this->timeout)
- ->get($this->baseUrl . "/api/v1/skill/proficiency/student/{$studentId}");
- Log::info('LearningAnalytics Response: Get Student Skill Proficiency', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- return $response->json();
- }
- Log::warning('LearningAnalytics Skill Proficiency API Error', [
- 'student_id' => $studentId,
- 'status' => $response->status(),
- 'response' => $response->body()
- ]);
- // API失败时返回空数据,不报错
- return [
- 'student_id' => $studentId,
- 'total_count' => 0,
- 'data' => []
- ];
- } catch (\Exception $e) {
- Log::warning('LearningAnalytics Skill Proficiency API Exception', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- // 发生异常时返回空数据,不报错
- return [
- 'student_id' => $studentId,
- 'total_count' => 0,
- 'data' => []
- ];
- }
- }
- /**
- * 获取学生掌握度列表(别名方法)
- */
- public function getStudentMasteryList(string $studentId): array
- {
- return $this->getStudentMastery($studentId);
- }
- /**
- * 获取知识点依赖关系
- */
- public function getKnowledgeDependencies(): array
- {
- try {
- Log::info('LearningAnalytics Request: Get Knowledge Dependencies', [
- 'url' => $this->baseUrl . '/knowledge-dependencies/'
- ]);
- $response = Http::timeout($this->timeout)
- ->get($this->baseUrl . '/knowledge-dependencies/');
- Log::info('LearningAnalytics Response: Get Knowledge Dependencies', [
- 'status' => $response->status(),
- 'count' => count($response->json()['data'] ?? [])
- ]);
- if ($response->successful()) {
- return $response->json()['data'] ?? [];
- }
- return [];
- } catch (\Exception $e) {
- Log::error('LearningAnalytics Knowledge Dependencies Error', [
- 'error' => $e->getMessage()
- ]);
- return [];
- }
- }
- /**
- * 提交学生答题记录
- */
- public function submitAttempt(string $studentId, array $attemptData): array
- {
- try {
- Log::info('LearningAnalytics Request: Submit Attempt', [
- 'url' => $this->baseUrl . "/api/v1/attempts/student/{$studentId}",
- 'data' => $attemptData
- ]);
- $response = Http::timeout($this->timeout)
- ->post($this->baseUrl . "/api/v1/attempts/student/{$studentId}", $attemptData);
- Log::info('LearningAnalytics Response: Submit Attempt', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- return $response->json();
- }
- Log::error('Submit Attempt Error', [
- 'student_id' => $studentId,
- 'data' => $attemptData,
- 'status' => $response->status(),
- 'response' => $response->body()
- ]);
- return [
- 'error' => true,
- 'message' => 'Failed to submit attempt'
- ];
- } catch (\Exception $e) {
- Log::error('Submit Attempt Exception', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage(),
- 'data' => $attemptData
- ]);
- return [
- 'error' => true,
- 'message' => $e->getMessage()
- ];
- }
- }
- /**
- * 批量提交学生答题记录
- */
- public function submitBatchAttempts(string $studentId, array $data): array
- {
- try {
- Log::info('LearningAnalytics Request: Submit Batch Attempts', [
- 'url' => $this->baseUrl . "/api/v1/attempts/batch/student/{$studentId}",
- 'data_count' => count($data['answers'] ?? []),
- 'paper_id' => $data['paper_id'] ?? null
- ]);
- $response = Http::timeout($this->timeout)
- ->post($this->baseUrl . "/api/v1/attempts/batch/student/{$studentId}", $data);
- Log::info('LearningAnalytics Response: Submit Batch Attempts', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- return $response->json();
- }
- Log::error('Submit Batch Attempts Error', [
- 'student_id' => $studentId,
- 'data_count' => count($data['answers'] ?? []),
- 'status' => $response->status(),
- 'response' => $response->body()
- ]);
- return [
- 'error' => true,
- 'message' => 'Failed to submit batch attempts: ' . $response->body()
- ];
- } catch (\Exception $e) {
- Log::error('Submit Batch Attempts Exception', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- return [
- 'error' => true,
- 'message' => $e->getMessage()
- ];
- }
- }
- /**
- * 提交OCR分析请求
- */
- public function submitOCRAnalysis(array $data): array
- {
- try {
- Log::info('Sending OCR results to LearningAnalytics', [
- 'student_id' => $data['student_id'] ?? 'unknown',
- 'exam_id' => $data['exam_id'] ?? 'unknown',
- 'question_count' => count($data['questions'] ?? [])
- ]);
- $response = Http::timeout(30) // 分析可能需要较长时间
- ->post($this->baseUrl . '/api/analysis/process-answers', $data);
- Log::info('LearningAnalytics Response: Submit OCR Analysis', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- Log::info('Analysis submitted successfully', [
- 'analysis_id' => $response->json('analysis_id')
- ]);
- return $response->json();
- }
- Log::error('Submit OCR Analysis Error', [
- 'status' => $response->status(),
- 'response' => $response->body(),
- 'data_preview' => array_merge($data, ['questions' => count($data['questions'])])
- ]);
- return [
- 'error' => true,
- 'message' => 'Failed to submit analysis: ' . $response->body()
- ];
- } catch (\Exception $e) {
- Log::error('Submit OCR Analysis Exception', [
- 'error' => $e->getMessage(),
- 'trace' => $e->getTraceAsString()
- ]);
- return [
- 'error' => true,
- 'message' => $e->getMessage()
- ];
- }
- }
- /**
- * 获取分析结果详情
- */
- public function getAnalysisResult(string $analysisId): array
- {
- try {
- $endpoint = "/api/analysis/analysis/{$analysisId}";
- Log::info('LearningAnalytics Request: Get Analysis Result', [
- 'endpoint' => $endpoint,
- 'analysis_id' => $analysisId
- ]);
- $response = Http::timeout($this->timeout)->get($this->baseUrl . $endpoint);
- Log::info('LearningAnalytics Response: Get Analysis Result', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- return $response->json();
- }
- Log::error('Get Analysis Result Error', [
- 'analysis_id' => $analysisId,
- 'status' => $response->status(),
- 'response' => $response->body()
- ]);
- return [
- 'error' => true,
- 'message' => 'Failed to fetch analysis result'
- ];
- } catch (\Exception $e) {
- Log::error('Get Analysis Result Exception', [
- 'analysis_id' => $analysisId,
- 'error' => $e->getMessage()
- ]);
- return [
- 'error' => true,
- 'message' => $e->getMessage()
- ];
- }
- }
- /**
- * 检查服务健康状态
- */
- public function checkHealth(): bool
- {
- try {
- $response = Http::timeout(5)->get($this->baseUrl . '/health');
- return $response->successful();
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * 获取学生掌握度概览
- */
- public function getStudentMasteryOverview(string $studentId): array
- {
- try {
- $mastery = $this->getStudentMastery($studentId);
- if (isset($mastery['error'])) {
- return [
- 'total_knowledge_points' => 0,
- 'average_mastery_level' => 0,
- 'mastered_knowledge_points' => 0,
- 'good_knowledge_points' => 0,
- 'weak_knowledge_points' => 0,
- 'weak_knowledge_points_list' => [],
- 'details' => []
- ];
- }
- $data = $mastery['data'] ?? [];
- // **修复**:不过滤total_attempts,与薄弱点API保持一致
- // 这样确保数据一致性
- $attemptedData = $data;
- $total = count($data);
- $attemptedCount = count($attemptedData);
- $average = $attemptedCount > 0
- ? array_sum(array_column($attemptedData, 'mastery_level')) / $attemptedCount
- : 0;
- // 分类知识点
- $mastered = [];
- $good = [];
- $weak = [];
- foreach ($attemptedData as $item) {
- $level = $item['mastery_level'] ?? 0;
- if ($level >= 0.85) {
- $mastered[] = $item;
- } elseif ($level >= 0.70) {
- $good[] = $item;
- } else {
- $weak[] = $item;
- }
- }
- return [
- 'total_knowledge_points' => $total,
- 'average_mastery_level' => $average,
- 'mastered_knowledge_points' => count($mastered),
- 'good_knowledge_points' => count($good),
- 'weak_knowledge_points' => count($weak),
- 'weak_knowledge_points_list' => $weak,
- 'details' => $data
- ];
- } catch (\Exception $e) {
- Log::error('Get Student Mastery Overview Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- return [
- 'total_knowledge_points' => 0,
- 'average_mastery_level' => 0,
- 'mastered_knowledge_points' => 0,
- 'good_knowledge_points' => 0,
- 'weak_knowledge_points' => 0,
- 'weak_knowledge_points_list' => [],
- 'details' => []
- ];
- }
- }
- /**
- * 获取学生技能摘要
- */
- public function getStudentSkillSummary(string $studentId): array
- {
- try {
- $proficiency = $this->getStudentSkillProficiency($studentId);
- // 无论是否有error,都继续处理,返回空数据
- $data = $proficiency['data'] ?? [];
- $totalSkills = count($data);
- $averageLevel = $totalSkills > 0 ? array_sum(array_column($data, 'proficiency_level')) / $totalSkills : 0;
- // 计算总答题数
- $totalQuestions = 0;
- foreach ($data as $skill) {
- $totalQuestions += $skill['total_questions_attempted'] ?? 0;
- }
- return [
- 'total_skills' => $totalSkills,
- 'average_proficiency_level' => $averageLevel,
- 'total_questions_attempted' => $totalQuestions,
- 'skill_list' => $data
- ];
- } catch (\Exception $e) {
- Log::warning('Get Student Skill Summary Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- // 发生异常时返回空数据
- return [
- 'total_skills' => 0,
- 'average_proficiency_level' => 0,
- 'total_questions_attempted' => 0,
- 'skill_list' => []
- ];
- }
- }
- /**
- * 获取学生预测数据
- */
- public function getStudentPredictions(string $studentId, int $count = 5): array
- {
- try {
- Log::info('LearningAnalytics Request: Get Student Predictions', [
- 'url' => $this->baseUrl . "/api/v1/prediction/student/{$studentId}?count={$count}"
- ]);
- $response = Http::timeout($this->timeout)
- ->get($this->baseUrl . "/api/v1/prediction/student/{$studentId}?count={$count}");
- Log::info('LearningAnalytics Response: Get Student Predictions', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- $data = $response->json();
- $predictions = $data['predictions'] ?? $data['data'] ?? [];
- return [
- 'predictions' => $predictions
- ];
- }
- return [
- 'predictions' => []
- ];
- } catch (\Exception $e) {
- Log::error('Get Student Predictions Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- return [
- 'predictions' => []
- ];
- }
- }
- /**
- * 获取学生学习路径
- */
- public function getStudentLearningPaths(string $studentId, int $count = 3): array
- {
- try {
- Log::info('LearningAnalytics Request: Get Student Learning Paths', [
- 'url' => $this->baseUrl . "/api/v1/learning-path/student/{$studentId}?limit={$count}"
- ]);
- $response = Http::timeout($this->timeout)
- ->get($this->baseUrl . "/api/v1/learning-path/student/{$studentId}?limit={$count}");
- Log::info('LearningAnalytics Response: Get Student Learning Paths', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- $data = $response->json()['data'] ?? [];
- return [
- 'paths' => $data
- ];
- }
- return [
- 'paths' => []
- ];
- } catch (\Exception $e) {
- Log::error('Get Student Learning Paths Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- return [
- 'paths' => []
- ];
- }
- }
- /**
- * 获取预测分析数据
- */
- public function getPredictionAnalytics(string $studentId): array
- {
- try {
- $predictions = $this->getStudentPredictions($studentId, 10);
- if (empty($predictions)) {
- return ['accuracy' => 0, 'trend' => 'stable', 'confidence' => 0];
- }
- $accuracy = 0;
- $confidence = 0;
- if (!empty($predictions)) {
- $accuracy = rand(75, 95); // 模拟准确率
- $confidence = rand(70, 90); // 模拟置信度
- }
- $trend = 'improving'; // improving, stable, declining
- return [
- 'accuracy' => $accuracy,
- 'trend' => $trend,
- 'confidence' => $confidence,
- 'sample_size' => count($predictions)
- ];
- } catch (\Exception $e) {
- Log::error('Get Prediction Analytics Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- return ['accuracy' => 0, 'trend' => 'stable', 'confidence' => 0];
- }
- }
- /**
- * 获取学习路径分析数据
- */
- public function getLearningPathAnalytics(string $studentId): array
- {
- try {
- $paths = $this->getStudentLearningPaths($studentId, 5);
- if (empty($paths)) {
- return [
- 'active_paths' => 0,
- 'completed_paths' => 0,
- 'average_efficiency_score' => 0,
- 'completion_rate' => 0,
- 'average_time' => 0,
- 'total_paths' => 0
- ];
- }
- $activePaths = 0;
- $completedPaths = 0;
- $efficiencyScores = [];
- foreach ($paths as $path) {
- if (($path['status'] ?? '') === 'active') {
- $activePaths++;
- }
- if (($path['status'] ?? '') === 'completed') {
- $completedPaths++;
- }
- if (isset($path['efficiency_score'])) {
- $efficiencyScores[] = $path['efficiency_score'];
- }
- }
- $averageEfficiency = !empty($efficiencyScores)
- ? array_sum($efficiencyScores) / count($efficiencyScores)
- : rand(60, 85) / 100;
- $completionRate = count($paths) > 0
- ? ($completedPaths / count($paths)) * 100
- : 0;
- $averageTime = rand(30, 60); // 模拟平均时间(分钟)
- return [
- 'active_paths' => $activePaths,
- 'completed_paths' => $completedPaths,
- 'average_efficiency_score' => $averageEfficiency,
- 'completion_rate' => $completionRate,
- 'average_time' => $averageTime,
- 'total_paths' => count($paths)
- ];
- } catch (\Exception $e) {
- Log::error('Get Learning Path Analytics Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- return [
- 'active_paths' => 0,
- 'completed_paths' => 0,
- 'average_efficiency_score' => 0,
- 'completion_rate' => 0,
- 'average_time' => 0,
- 'total_paths' => 0
- ];
- }
- }
- /**
- * 快速分数预测
- */
- public function quickScorePrediction(string $studentId): array
- {
- Log::info('开始调用快速预测API', ['student_id' => $studentId]);
- $response = Http::timeout($this->timeout)
- ->post($this->baseUrl . "/api/v1/prediction/student/{$studentId}/quick-prediction");
- Log::info('快速预测API响应', [
- 'student_id' => $studentId,
- 'status' => $response->status(),
- 'body' => $response->body()
- ]);
- if (!$response->successful()) {
- throw new \Exception(sprintf(
- '快速预测接口失败: %s %s',
- $response->status(),
- $response->body()
- ));
- }
- $data = $response->json();
- Log::info('快速预测API返回数据', ['student_id' => $studentId, 'data' => $data]);
- // API 返回结构:{ student_id, current_assumption, target_assumption, quick_prediction, prediction_id, message }
- $quickPredictionData = $data['quick_prediction'] ?? [];
- return [
- 'quick_prediction' => [
- 'current_score' => $quickPredictionData['current_score'] ?? $data['current_assumption'] ?? 0,
- 'predicted_score' => $quickPredictionData['predicted_score'] ?? $data['target_assumption'] ?? 0,
- 'improvement_potential' => $quickPredictionData['improvement_potential'] ?? (($data['target_assumption'] ?? 0) - ($data['current_assumption'] ?? 0)),
- 'estimated_study_hours' => $quickPredictionData['estimated_study_hours'] ?? 0,
- 'confidence_level' => $quickPredictionData['confidence_level'] ?? 0,
- 'priority_topics' => $quickPredictionData['priority_topics'] ?? [],
- 'recommended_actions' => $quickPredictionData['recommended_actions'] ?? [],
- 'weak_knowledge_points_count' => $quickPredictionData['weak_knowledge_points_count'] ?? 0,
- 'total_knowledge_points' => $quickPredictionData['total_knowledge_points'] ?? 0
- ],
- 'predicted_score' => $quickPredictionData['predicted_score'] ?? $data['target_assumption'] ?? 0,
- 'confidence' => isset($quickPredictionData['confidence_level']) ? $quickPredictionData['confidence_level'] * 100 : 0,
- 'time_estimate' => $quickPredictionData['estimated_study_hours'] ?? 0,
- 'prediction_id' => $data['prediction_id'] ?? null,
- 'message' => $data['message'] ?? null,
- ];
- }
- /**
- * 推荐学习路径
- */
- public function recommendLearningPaths(string $studentId, int $count = 3): array
- {
- try {
- Log::info('LearningAnalytics Request: Recommend Learning Paths', [
- 'url' => $this->baseUrl . "/api/v1/learning-path/student/{$studentId}/recommend?limit={$count}"
- ]);
- $response = Http::timeout($this->timeout)
- ->post($this->baseUrl . "/api/v1/learning-path/student/{$studentId}/recommend?limit={$count}");
- Log::info('LearningAnalytics Response: Recommend Learning Paths', [
- 'status' => $response->status(),
- 'body' => $response->json()
- ]);
- if ($response->successful()) {
- $data = $response->json()['recommendations'] ?? $response->json()['data'] ?? [];
- return [
- 'recommendations' => $data
- ];
- }
- return [
- 'recommendations' => []
- ];
- } catch (\Exception $e) {
- Log::error('Recommend Learning Paths Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- return [
- 'recommendations' => []
- ];
- }
- }
- /**
- * 重新计算掌握度
- */
- public function recalculateMastery(string $studentId, string $kpCode): bool
- {
- try {
- Log::info('LearningAnalytics Request: Recalculate Mastery', [
- 'url' => $this->baseUrl . "/api/v1/mastery/recalculate/{$studentId}",
- 'kp_code' => $kpCode
- ]);
- $response = Http::timeout($this->timeout)
- ->post($this->baseUrl . "/api/v1/mastery/recalculate/{$studentId}", [
- 'student_id' => $studentId,
- 'kp_code' => $kpCode
- ]);
- Log::info('LearningAnalytics Response: Recalculate Mastery', [
- 'status' => $response->status(),
- 'body' => $response->body()
- ]);
- return $response->successful();
- } catch (\Exception $e) {
- Log::error('Recalculate Mastery Error', [
- 'student_id' => $studentId,
- 'kp_code' => $kpCode,
- 'error' => $e->getMessage()
- ]);
- return false;
- }
- }
- /**
- * 批量更新技能熟练度
- */
- public function batchUpdateSkillProficiency(string $studentId): bool
- {
- try {
- $response = Http::timeout($this->timeout)
- ->post($this->baseUrl . "/api/v1/skill/proficiency/student/{$studentId}/batch-update", [
- 'student_id' => $studentId
- ]);
- return $response->successful();
- } catch (\Exception $e) {
- Log::error('Batch Update Skill Proficiency Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- return false;
- }
- }
- /**
- * 清空学生所有答题数据
- */
- public function clearStudentData(string $studentId): bool
- {
- try {
- // 清空LearningAnalytics中的数据(通过API)
- $response = Http::timeout($this->timeout)
- ->delete($this->baseUrl . "/api/v1/student/{$studentId}/clear");
- if (!$response->successful()) {
- Log::error('Clear LearningAnalytics Data Failed', [
- 'student_id' => $studentId,
- 'status' => $response->status(),
- 'response' => $response->body()
- ]);
- }
- // 清空MySQL中的数据
- $this->clearStudentMySQLData($studentId);
- Log::info('Student Data Cleared Successfully', [
- 'student_id' => $studentId,
- 'api_success' => $response->successful()
- ]);
- return true;
- } catch (\Exception $e) {
- Log::error('Clear Student Data Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- // 即使API失败,也要尝试清空本地数据
- try {
- $this->clearStudentMySQLData($studentId);
- return true;
- } catch (\Exception $localError) {
- Log::error('Clear Local Data Also Failed', [
- 'student_id' => $studentId,
- 'error' => $localError->getMessage()
- ]);
- return false;
- }
- }
- }
- /**
- * 清空学生MySQL中的答题数据
- */
- private function clearStudentMySQLData(string $studentId): void
- {
- try {
- // 清空student_exercises表
- DB::table('student_exercises')
- ->where('student_id', $studentId)
- ->delete();
- // 清空student_mastery表
- DB::table('student_mastery')
- ->where('student_id', $studentId)
- ->delete();
- Log::info('Student MySQL Data Cleared', [
- 'student_id' => $studentId
- ]);
- } catch (\Exception $e) {
- Log::error('Clear Student MySQL Data Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- throw $e; // 重新抛出异常,让上层处理
- }
- }
- /**
- * 获取学生列表(供智能出卷使用)
- */
- public function getStudentsList(): array
- {
- try {
- $response = Http::timeout($this->timeout)
- ->get($this->baseUrl . '/api/v1/students/list');
- if ($response->successful()) {
- return $response->json('data', []);
- }
- // 如果API失败,尝试从MySQL直接读取
- return $this->getStudentsFromMySQL();
- } catch (\Exception $e) {
- Log::error('Get Students List Error', [
- 'error' => $e->getMessage()
- ]);
- // 返回模拟数据
- return [
- ['student_id' => 'stu_001', 'name' => '张三'],
- ['student_id' => 'stu_002', 'name' => '李四'],
- ['student_id' => 'stu_003', 'name' => '王五'],
- ];
- }
- }
- /**
- * 从MySQL获取学生列表
- */
- private function getStudentsFromMySQL(): array
- {
- try {
- return DB::table('students')
- ->select('student_id', 'name')
- ->limit(100)
- ->get()
- ->toArray();
- } catch (\Exception $e) {
- Log::error('Get Students From MySQL Error', [
- 'error' => $e->getMessage()
- ]);
- return [];
- }
- }
- /**
- * 获取学生薄弱点列表
- */
- public function getStudentWeaknesses(string $studentId, int $limit = 10): array
- {
- try {
- // 使用正确的API路径:/api/v1/student/{student_id}/weak-points
- $response = Http::timeout($this->timeout)
- ->get($this->baseUrl . "/api/v1/student/{$studentId}/weak-points");
- if ($response->successful()) {
- $data = $response->json('data', []);
- $weakPoints = $data['weak_points'] ?? [];
- // 转换为统一的格式
- return array_map(function ($item) use ($studentId) {
- return [
- 'kp_code' => $item['kp'] ?? '',
- 'kp_name' => $item['kp'] ?? '',
- 'mastery' => $item['mastery_level'] ?? 0,
- 'stability' => 0.5, // 默认稳定性
- 'weakness_level' => 1.0 - ($item['mastery_level'] ?? 0.5),
- 'practice_count' => $item['practice_count'] ?? 0,
- 'success_rate' => $item['success_rate'] ?? 0,
- 'priority' => $item['priority'] ?? '中',
- 'suggested_questions' => $item['suggested_questions'] ?? 0
- ];
- }, $weakPoints);
- }
- Log::warning('LearningAnalytics weaknesses API失败,使用本地MySQL数据', [
- 'student_id' => $studentId,
- 'status' => $response->status()
- ]);
- // API失败时,从MySQL直接查询
- return $this->getStudentWeaknessesFromMySQL($studentId, $limit);
- } catch (\Exception $e) {
- Log::error('Get Student Weaknesses Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- // 发生异常时,返回空数组,让前端可以继续使用默认值
- return [];
- }
- }
- /**
- * 从MySQL获取学生薄弱点
- */
- private function getStudentWeaknessesFromMySQL(string $studentId, int $limit = 10): array
- {
- try {
- $weaknesses = DB::table('student_mastery as sm')
- ->join('knowledge_points as kp', 'sm.kp', '=', 'kp.kp')
- ->where('sm.student_id', $studentId)
- ->where('sm.mastery', '<', 0.7) // 掌握度低于70%视为薄弱点
- ->orderBy('sm.mastery', 'asc')
- ->limit($limit)
- ->select([
- 'sm.kp as kp_code',
- 'kp.cn_name as kp_name',
- 'sm.mastery',
- 'sm.stability'
- ])
- ->get()
- ->toArray();
- return array_map(function ($item) {
- return [
- 'kp_code' => $item->kp_code,
- 'kp_name' => $item->kp_name,
- 'mastery' => (float) $item->mastery,
- 'stability' => (float) $item->stability,
- 'weakness_level' => 1.0 - (float) $item->mastery // 薄弱程度
- ];
- }, $weaknesses);
- } catch (\Exception $e) {
- Log::error('Get Student Weaknesses From MySQL Error', [
- 'student_id' => $studentId,
- 'error' => $e->getMessage()
- ]);
- return [];
- }
- }
- /**
- * 智能出卷:根据学生掌握度智能选择题目
- */
- public function generateIntelligentExam(array $params): array
- {
- try {
- $studentId = $params['student_id'] ?? null;
- $totalQuestions = $params['total_questions'] ?? 20;
- $kpCodes = $params['kp_codes'] ?? [];
- $skills = $params['skills'] ?? [];
- $questionTypeRatio = $params['question_type_ratio'] ?? [
- '选择题' => 40,
- '填空题' => 30,
- '解答题' => 30,
- ];
- $difficultyRatio = $params['difficulty_ratio'] ?? [
- '基础' => 50,
- '中等' => 35,
- '拔高' => 15,
- ];
- // 1. 如果指定了学生,获取学生的薄弱点
- $weaknessFilter = [];
- if ($studentId) {
- $weaknesses = $this->getStudentWeaknesses($studentId, 20);
- $weaknessFilter = array_column($weaknesses, 'kp_code');
- // 如果用户没有指定知识点,使用学生的薄弱点
- if (empty($kpCodes)) {
- $kpCodes = $weaknessFilter;
- }
- }
- // 如果仍然没有知识点(例如新学生无薄弱点),根据年级从知识图谱获取知识点
- if (empty($kpCodes)) {
- $filters = [];
- if ($studentId) {
- $student = \App\Models\Student::find($studentId);
- if ($student && $student->grade) {
- $grade = $student->grade;
- $standardizedGrade = $grade;
- // 标准化年级名称并更新数据库
- if ($grade === '初一') {
- $standardizedGrade = '七年级';
- } elseif ($grade === '初二') {
- $standardizedGrade = '八年级';
- } elseif ($grade === '初三') {
- $standardizedGrade = '九年级';
- }
- if ($standardizedGrade !== $grade) {
- $student->grade = $standardizedGrade;
- $student->save();
- Log::info('Standardized student grade', ['student_id' => $studentId, 'old' => $grade, 'new' => $standardizedGrade]);
- $grade = $standardizedGrade;
- }
- // 映射年级到学段 (phase)
- if (str_contains($grade, '初') || str_contains($grade, '七年级') || str_contains($grade, '八年级') || str_contains($grade, '九年级')) {
- $filters['phase'] = '初中';
- } elseif (str_contains($grade, '高')) {
- $filters['phase'] = '高中';
- }
- }
- }
- // 调用API获取过滤后的知识点
- $filteredKps = $this->getKnowledgePoints($filters);
- if (!empty($filteredKps)) {
- // 随机选择 5 个知识点
- $kpKeys = array_column($filteredKps, 'kp_code');
- if (empty($kpKeys)) {
- $kpKeys = array_column($filteredKps, 'code');
- }
- if (!empty($kpKeys)) {
- $randomKeys = array_rand(array_flip($kpKeys), min(5, count($kpKeys)));
- $kpCodes = is_array($randomKeys) ? $randomKeys : [$randomKeys];
- Log::info('Randomly selected KPs for student based on grade (API)', [
- 'student_id' => $studentId,
- 'grade' => $student->grade ?? 'unknown',
- 'filters' => $filters,
- 'kps' => $kpCodes
- ]);
- }
- }
- }
- // 2. 调用题库API获取符合条件的所有题目
- $allQuestions = $this->getQuestionsFromBank($kpCodes, $skills, $studentId);
- if (empty($allQuestions)) {
- // 根据是否有选择的知识点给出不同的错误信息
- if (empty($kpCodes)) {
- $message = '未选择知识点,无法生成试卷。请先选择知识点或选择学生以获取薄弱点推荐。';
- } else {
- $message = '题库中暂无可用题目。您可以选择其他知识点,或点击"生成练习题"按钮先补充题库。';
- }
- Log::warning('智能出卷失败 - 未找到题目', [
- 'student_id' => $studentId,
- 'selected_kp_codes' => $kpCodes,
- 'message' => $message
- ]);
- return [
- 'success' => false,
- 'message' => $message,
- 'questions' => []
- ];
- }
- // 3. 根据掌握度对题目进行筛选和排序
- $selectedQuestions = $this->selectQuestionsByMastery(
- $allQuestions,
- $studentId,
- $totalQuestions,
- $questionTypeRatio,
- $difficultyRatio,
- $weaknessFilter
- );
- if (empty($selectedQuestions)) {
- return [
- 'success' => false,
- 'message' => '题目筛选失败',
- 'questions' => []
- ];
- }
- return [
- 'success' => true,
- 'message' => '智能出卷成功',
- 'questions' => $selectedQuestions,
- 'stats' => [
- 'total_selected' => count($selectedQuestions),
- 'source_questions' => count($allQuestions),
- 'weakness_targeted' => $studentId ? count(array_intersect(array_column($selectedQuestions, 'kp_code'), $weaknessFilter)) : 0
- ]
- ];
- } catch (\Exception $e) {
- Log::error('Generate Intelligent Exam Error', [
- 'error' => $e->getMessage(),
- 'trace' => $e->getTraceAsString()
- ]);
- return [
- 'success' => false,
- 'message' => '智能出卷异常: ' . $e->getMessage(),
- 'questions' => []
- ];
- }
- }
- /**
- * 从题库获取题目
- */
- private function getQuestionsFromBank(array $kpCodes, array $skills, ?string $studentId): array
- {
- try {
- // 构建查询参数
- $params = [
- 'kp_codes' => implode(',', $kpCodes),
- 'limit' => 1000 // 获取足够多的题目用于筛选
- ];
- if (!empty($skills)) {
- $params['skills'] = implode(',', $skills);
- }
- if ($studentId) {
- $params['exclude_student_questions'] = $studentId; // 过滤学生做过的题目
- }
- // 调用QuestionBank API
- // 使用 QuestionBankService 获取题目 (使用 filterQuestions 方法以支持 kp_codes)
- // 从容器动态获取实例
- if (!$this->questionBankService) {
- $this->questionBankService = app(QuestionBankService::class);
- }
- $response = $this->questionBankService->filterQuestions($params);
- if (!empty($response['data'])) {
- return $response['data'];
- }
- Log::warning('Get Questions From Bank Failed or Empty', [
- 'params' => $params,
- 'response' => $response
- ]);
- return [];
- } catch (\Exception $e) {
- Log::error('Get Questions From Bank Error', [
- 'error' => $e->getMessage()
- ]);
- }
- return [];
- }
- /**
- * 根据学生掌握度筛选题目
- */
- private function selectQuestionsByMastery(
- array $questions,
- ?string $studentId,
- int $totalQuestions,
- array $questionTypeRatio,
- array $difficultyRatio,
- array $weaknessFilter
- ): array {
- // 1. 按知识点分组
- $questionsByKp = [];
- foreach ($questions as $question) {
- $kpCode = $question['kp_code'] ?? '';
- if (!isset($questionsByKp[$kpCode])) {
- $questionsByKp[$kpCode] = [];
- }
- $questionsByKp[$kpCode][] = $question;
- }
- // 2. 为每个知识点计算权重
- $kpWeights = [];
- foreach (array_keys($questionsByKp) as $kpCode) {
- if ($studentId) {
- // 获取学生对该知识点的掌握度
- $mastery = $this->getStudentKpMastery($studentId, $kpCode);
- // 薄弱点权重更高
- if (in_array($kpCode, $weaknessFilter)) {
- $kpWeights[$kpCode] = 2.0; // 薄弱点权重翻倍
- } else {
- // 掌握度越低,权重越高
- $kpWeights[$kpCode] = 1.0 + (1.0 - $mastery) * 1.5;
- }
- } else {
- $kpWeights[$kpCode] = 1.0; // 未指定学生时平均分配
- }
- }
- // 3. 按权重分配题目数量
- $totalWeight = array_sum($kpWeights);
- $selectedQuestions = [];
- foreach ($questionsByKp as $kpCode => $kpQuestions) {
- // 计算该知识点应该选择的题目数
- $kpQuestionCount = max(1, round(($totalQuestions * $kpWeights[$kpCode]) / $totalWeight));
- // 打乱题目顺序(避免固定模式)
- shuffle($kpQuestions);
- // 选择题目
- $selectedFromKp = array_slice($kpQuestions, 0, $kpQuestionCount);
- $selectedQuestions = array_merge($selectedQuestions, $selectedFromKp);
- }
- // 4. 如果题目过多,按权重排序后截取
- if (count($selectedQuestions) > $totalQuestions) {
- usort($selectedQuestions, function ($a, $b) use ($kpWeights) {
- $weightA = $kpWeights[$a['kp_code']] ?? 1.0;
- $weightB = $kpWeights[$b['kp_code']] ?? 1.0;
- return $weightB <=> $weightA;
- });
- $selectedQuestions = array_slice($selectedQuestions, 0, $totalQuestions);
- }
- // 5. 按题型和难度进行微调
- return $this->adjustQuestionsByRatio($selectedQuestions, $questionTypeRatio, $difficultyRatio);
- }
- /**
- * 获取学生对特定知识点的掌握度
- */
- private function getStudentKpMastery(string $studentId, string $kpCode): float
- {
- try {
- $mastery = DB::table('student_mastery')
- ->where('student_id', $studentId)
- ->where('kp', $kpCode)
- ->value('mastery');
- return $mastery ? (float) $mastery : 0.5; // 默认0.5(中等掌握度)
- } catch (\Exception $e) {
- Log::error('Get Student Kp Mastery Error', [
- 'student_id' => $studentId,
- 'kp_code' => $kpCode,
- 'error' => $e->getMessage()
- ]);
- return 0.5;
- }
- }
- /**
- * 根据题型和难度配比调整题目
- */
- private function adjustQuestionsByRatio(array $questions, array $typeRatio, array $difficultyRatio): array
- {
- // 这里可以实现更精细的调整逻辑
- // 目前先返回原始题目,后续可以基于question_type和difficulty字段进行调整
- return $questions;
- }
- /**
- * 提交手动评分结果到 LearningAnalytics
- *
- * @param array $data 包含 student_id, paper_id, grades 的数组
- * @return array
- */
- public function submitManualGrading(array $data): array
- {
- try {
- $response = Http::timeout($this->timeout)
- ->post($this->baseUrl . '/api/ocr/analyze', [
- 'student_id' => $data['student_id'],
- 'paper_id' => $data['paper_id'],
- 'answers' => $data['grades'],
- ]);
- if ($response->successful()) {
- Log::info('Manual grading submitted successfully', [
- 'student_id' => $data['student_id'],
- 'paper_id' => $data['paper_id'],
- 'question_count' => count($data['grades'])
- ]);
- return $response->json();
- }
- Log::error('Submit Manual Grading Error', [
- 'data' => $data,
- 'status' => $response->status(),
- 'response' => $response->body()
- ]);
- return [
- 'error' => true,
- 'message' => 'Failed to submit manual grading'
- ];
- } catch (\Exception $e) {
- Log::error('Submit Manual Grading Exception', [
- 'error' => $e->getMessage(),
- 'data' => $data
- ]);
- return [
- 'error' => true,
- 'message' => $e->getMessage()
- ];
- }
- }
- }
|