ExamPdfExportService.php 198 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169
  1. <?php
  2. namespace App\Services;
  3. use App\DTO\ExamAnalysisDataDto;
  4. use App\DTO\ReportPayloadDto;
  5. use App\Models\Paper;
  6. use App\Models\Question;
  7. use App\Models\Student;
  8. use App\Services\Analytics\QuestionDifficultyCalibrationAnalyzer;
  9. use App\Support\GradingStyleQuestionStem;
  10. use App\Support\PaperNaming;
  11. use Illuminate\Support\Facades\DB;
  12. use Illuminate\Support\Facades\File;
  13. use Illuminate\Support\Facades\Http;
  14. use Illuminate\Support\Facades\Log;
  15. use Illuminate\Support\Facades\Schema;
  16. use Illuminate\Support\Facades\Storage;
  17. use Illuminate\Support\Facades\URL;
  18. use Illuminate\Support\Str;
  19. use Symfony\Component\Process\Exception\ProcessSignaledException;
  20. use Symfony\Component\Process\Exception\ProcessTimedOutException;
  21. use Symfony\Component\Process\Process;
  22. /**
  23. * PDF导出服务(重构版)
  24. * 负责生成试卷PDF、判卷PDF和学情报告PDF
  25. */
  26. class ExamPdfExportService
  27. {
  28. private ?KatexRenderer $katexRenderer = null;
  29. private const PDF_IMAGE_WIDTH_WIDE_PX = 250;
  30. private const PDF_IMAGE_WIDTH_VERY_WIDE_PX = 330;
  31. /**
  32. * @var array<string, array{w:int,h:int}|null>
  33. */
  34. private array $pdfImageDimensionCache = [];
  35. private ?bool $hasPdfImageMetricsTable = null;
  36. private ?array $knowledgePointMetaCache = null;
  37. public function __construct(
  38. private readonly LearningAnalyticsService $learningAnalyticsService,
  39. private readonly QuestionBankService $questionBankService,
  40. private readonly QuestionServiceApi $questionServiceApi,
  41. private readonly PdfStorageService $pdfStorageService,
  42. private readonly MasteryCalculator $masteryCalculator,
  43. private readonly PdfMerger $pdfMerger
  44. ) {
  45. // 延迟初始化 KatexRenderer(避免循环依赖)
  46. $this->katexRenderer = new KatexRenderer;
  47. }
  48. /**
  49. * 生成试卷 PDF(不含答案)
  50. */
  51. public function generateExamPdf(string $paperId): ?string
  52. {
  53. Log::info('generateExamPdf 开始:', ['paper_id' => $paperId]);
  54. $url = $this->renderAndStoreExamPdf($paperId, includeAnswer: false, suffix: 'exam');
  55. Log::info('generateExamPdf url 生成结果:', ['paper_id' => $paperId, 'url' => $url]);
  56. // 如果生成成功,将 URL 写入数据库
  57. if ($url) {
  58. $this->savePdfUrlToDatabase($paperId, 'exam_pdf_url', $url);
  59. }
  60. return $url;
  61. }
  62. /**
  63. * 生成判卷 PDF(含答案与解析)
  64. */
  65. public function generateGradingPdf(string $paperId): ?string
  66. {
  67. Log::info('generateGradingPdf 开始:', ['paper_id' => $paperId]);
  68. $url = $this->renderAndStoreExamPdf($paperId, includeAnswer: true, suffix: 'grading', useGradingView: true);
  69. Log::info('generateGradingPdf url 生成结果:', ['paper_id' => $paperId, 'url' => $url]);
  70. // 如果生成成功,将 URL 写入数据库
  71. if ($url) {
  72. $this->savePdfUrlToDatabase($paperId, 'grading_pdf_url', $url);
  73. }
  74. return $url;
  75. }
  76. /**
  77. * 渲染试卷 HTML → 生成 PDF → 上传存储(generateExamPdf / generateGradingPdf 共用)
  78. */
  79. private function renderAndStoreExamPdf(string $paperId, bool $includeAnswer, string $suffix, bool $useGradingView = false): ?string
  80. {
  81. $html = $this->renderExamHtml($paperId, $includeAnswer, $useGradingView);
  82. if ($html === null || trim($html) === '') {
  83. Log::error('renderAndStoreExamPdf: HTML 为空', [
  84. 'paper_id' => $paperId,
  85. 'suffix' => $suffix,
  86. ]);
  87. return null;
  88. }
  89. $pdfBinary = $this->buildPdf($html, ! $includeAnswer && ! $useGradingView);
  90. if ($pdfBinary === null || $pdfBinary === '') {
  91. Log::error('renderAndStoreExamPdf: buildPdf 失败', [
  92. 'paper_id' => $paperId,
  93. 'suffix' => $suffix,
  94. ]);
  95. return null;
  96. }
  97. $paper = Paper::query()->where('paper_id', $paperId)->first();
  98. if (! $paper) {
  99. Log::error('renderAndStoreExamPdf: 试卷不存在', ['paper_id' => $paperId]);
  100. return null;
  101. }
  102. $stamp = now()->format('YmdHis').strtoupper(Str::random(4));
  103. $base = $this->buildPaperNamePrefix($paper).'_'.$suffix.'_'.$stamp;
  104. $safe = PaperNaming::toSafeFilename($base).'.pdf';
  105. $path = 'exams/'.$safe;
  106. $url = $this->pdfStorageService->put($path, $pdfBinary);
  107. if (! $url) {
  108. Log::error('renderAndStoreExamPdf: 上传失败', ['paper_id' => $paperId, 'path' => $path]);
  109. return null;
  110. }
  111. Log::info('renderAndStoreExamPdf: 完成', [
  112. 'paper_id' => $paperId,
  113. 'suffix' => $suffix,
  114. 'url' => $url,
  115. ]);
  116. return $url;
  117. }
  118. /**
  119. * 【优化方案】生成统一PDF(卷子 + 判卷一页完成)
  120. * 效率提升40-50%,只需生成一次PDF
  121. *
  122. * @param string $paperId 试卷ID
  123. * @param bool|null $includeKpExplain 是否包含知识点讲解,null则使用配置文件默认值
  124. * @return string|null PDF URL
  125. */
  126. public function generateUnifiedPdf(string $paperId, ?bool $includeKpExplain = null): ?string
  127. {
  128. // 决定是否包含知识点讲解
  129. if ($includeKpExplain === null) {
  130. $includeKpExplain = config('pdf.include_kp_explain_default', false);
  131. }
  132. Log::info('generateUnifiedPdf 开始(终极优化版本,直接HTML合并生成PDF):', [
  133. 'paper_id' => $paperId,
  134. 'include_kp_explain' => $includeKpExplain,
  135. ]);
  136. try {
  137. // 步骤0:获取知识点讲解HTML(如需要)
  138. $kpExplainHtml = null;
  139. if ($includeKpExplain) {
  140. Log::info('generateUnifiedPdf: 开始获取知识点讲解HTML', ['paper_id' => $paperId]);
  141. $kpExplainHtml = $this->fetchKnowledgeExplanationHtml($paperId);
  142. if ($kpExplainHtml) {
  143. // 统一在 mergeHtmlWithPageBreak()->ensureUtf8Html() 阶段处理内联与公式预渲染,
  144. // 避免在此处重复处理导致额外耗时。
  145. Log::info('generateUnifiedPdf: 知识点讲解HTML获取并处理成功', [
  146. 'paper_id' => $paperId,
  147. 'length' => strlen($kpExplainHtml),
  148. ]);
  149. } else {
  150. Log::warning('generateUnifiedPdf: 知识点讲解HTML获取失败,将跳过', ['paper_id' => $paperId]);
  151. }
  152. }
  153. // 步骤1:同时渲染两个页面的HTML
  154. Log::info('generateUnifiedPdf: 开始渲染试卷HTML', ['paper_id' => $paperId]);
  155. $examHtml = $this->renderExamHtml($paperId, includeAnswer: false, useGradingView: false);
  156. if (! $examHtml) {
  157. Log::error('ExamPdfExportService: 渲染卷子HTML失败', ['paper_id' => $paperId]);
  158. return null;
  159. }
  160. Log::info('generateUnifiedPdf: 试卷HTML渲染完成', ['paper_id' => $paperId, 'length' => strlen($examHtml)]);
  161. Log::info('generateUnifiedPdf: 开始渲染判卷HTML', ['paper_id' => $paperId]);
  162. $gradingHtml = $this->renderExamHtml($paperId, includeAnswer: true, useGradingView: true);
  163. if (! $gradingHtml) {
  164. Log::error('ExamPdfExportService: 渲染判卷HTML失败', ['paper_id' => $paperId]);
  165. return null;
  166. }
  167. Log::info('generateUnifiedPdf: 判卷HTML渲染完成', ['paper_id' => $paperId, 'length' => strlen($gradingHtml)]);
  168. // 步骤2:插入分页符,合并HTML
  169. Log::info('generateUnifiedPdf: 开始合并HTML(保留原始样式)', ['paper_id' => $paperId]);
  170. $unifiedHtml = $this->mergeHtmlWithPageBreak($examHtml, $gradingHtml, $kpExplainHtml);
  171. if (! $unifiedHtml) {
  172. Log::error('ExamPdfExportService: HTML合并失败', ['paper_id' => $paperId]);
  173. return null;
  174. }
  175. Log::info('generateUnifiedPdf: HTML合并完成(将直接生成PDF,不使用pdfunite)', [
  176. 'paper_id' => $paperId,
  177. 'length' => strlen($unifiedHtml),
  178. 'has_kp_explain' => ! empty($kpExplainHtml),
  179. ]);
  180. // 步骤3:一次性生成PDF(只需20-25秒,比原来节省10-25秒)
  181. Log::info('generateUnifiedPdf: 开始使用buildPdf直接生成PDF(不使用pdfunite)', ['paper_id' => $paperId]);
  182. $pdfBinary = $this->buildPdf($unifiedHtml, true, true);
  183. if (! $pdfBinary) {
  184. Log::error('ExamPdfExportService: 生成统一PDF失败', ['paper_id' => $paperId]);
  185. return null;
  186. }
  187. Log::info('generateUnifiedPdf: PDF生成完成', ['paper_id' => $paperId, 'pdf_size' => strlen($pdfBinary)]);
  188. // 步骤4:保存PDF
  189. $paper = Paper::where('paper_id', $paperId)->first();
  190. if (! $paper) {
  191. Log::error('ExamPdfExportService: 生成统一PDF失败,未找到试卷', ['paper_id' => $paperId]);
  192. return null;
  193. }
  194. $allPdfName = $this->buildPdfFileName($paper);
  195. $path = "exams/{$allPdfName}";
  196. Log::info('generateUnifiedPdf: 开始保存PDF到云存储', ['paper_id' => $paperId, 'path' => $path]);
  197. $url = $this->pdfStorageService->put($path, $pdfBinary);
  198. if (! $url) {
  199. Log::error('ExamPdfExportService: 保存统一PDF失败', ['path' => $path]);
  200. return null;
  201. }
  202. Log::info('generateUnifiedPdf: PDF保存完成', ['paper_id' => $paperId, 'url' => $url]);
  203. // 步骤5:保存URL到数据库(存储到all_pdf_url字段)
  204. Log::info('generateUnifiedPdf: 开始保存URL到数据库', ['paper_id' => $paperId, 'field' => 'all_pdf_url']);
  205. $this->savePdfUrlToDatabase($paperId, 'all_pdf_url', $url);
  206. Log::info('generateUnifiedPdf: URL保存完成', ['paper_id' => $paperId]);
  207. Log::info('generateUnifiedPdf 全部完成(终极优化:直接HTML合并生成一份PDF)', [
  208. 'paper_id' => $paperId,
  209. 'url' => $url,
  210. 'pdf_size' => strlen($pdfBinary),
  211. 'method' => 'direct HTML merge to PDF (no pdfunite)',
  212. ]);
  213. return $url;
  214. } catch (\Throwable $e) {
  215. Log::error('generateUnifiedPdf 失败', [
  216. 'paper_id' => $paperId,
  217. 'error' => $e->getMessage(),
  218. 'trace' => $e->getTraceAsString(),
  219. ]);
  220. return null;
  221. }
  222. }
  223. /**
  224. * 生成学情分析 PDF
  225. */
  226. public function generateAnalysisReportPdf(string $paperId, string $studentId, ?string $recordId = null): ?string
  227. {
  228. if (function_exists('set_time_limit')) {
  229. @set_time_limit(240);
  230. }
  231. try {
  232. $flowStart = microtime(true);
  233. $lastMark = $flowStart;
  234. $marks = [];
  235. $mark = static function (string $label) use (&$lastMark, &$marks): void {
  236. $now = microtime(true);
  237. $marks[$label] = round(($now - $lastMark) * 1000, 1);
  238. $lastMark = $now;
  239. };
  240. Log::info('ExamPdfExportService: 开始生成学情分析PDF', [
  241. 'paper_id' => $paperId,
  242. 'student_id' => $studentId,
  243. 'record_id' => $recordId,
  244. ]);
  245. // 构建分析数据
  246. $analysisData = $this->buildAnalysisData($paperId, $studentId);
  247. $mark('build_analysis_data_ms');
  248. if (! $analysisData) {
  249. Log::warning('ExamPdfExportService: buildAnalysisData返回空数据', [
  250. 'paper_id' => $paperId,
  251. 'student_id' => $studentId,
  252. ]);
  253. return null;
  254. }
  255. Log::info('ExamPdfExportService: buildAnalysisData返回数据', [
  256. 'paper_id' => $paperId,
  257. 'student_id' => $studentId,
  258. 'analysisData_keys' => array_keys($analysisData),
  259. 'mastery_count' => count($analysisData['mastery']['items'] ?? []),
  260. 'questions_count' => count($analysisData['questions'] ?? []),
  261. ]);
  262. // 创建DTO
  263. $dto = ExamAnalysisDataDto::fromArray($analysisData);
  264. $payloadDto = ReportPayloadDto::fromExamAnalysisDataDto($dto);
  265. $mark('build_payload_dto_ms');
  266. // 打印传给模板的数据
  267. $templateData = $payloadDto->toArray();
  268. Log::info('ExamPdfExportService: 传给模板的数据', [
  269. 'paper' => $templateData['paper'] ?? null,
  270. 'student' => $templateData['student'] ?? null,
  271. 'mastery' => $templateData['mastery'] ?? null,
  272. 'parent_mastery_levels' => $templateData['parent_mastery_levels'] ?? null,
  273. 'questions_count' => count($templateData['questions'] ?? []),
  274. 'insights_count' => count($templateData['question_insights'] ?? []),
  275. 'recommendations_count' => count($templateData['recommendations'] ?? []),
  276. ]);
  277. // V3 学情报告不再渲染逐题错题卡,保留题目元数据用于统计即可。
  278. $mark('prepare_report_data_ms');
  279. // 组装V3报告展示数据(模块化)
  280. $templateData['v3'] = $this->buildAnalysisReportV3Data($templateData);
  281. $mark('build_v3_data_ms');
  282. // 渲染HTML(V3模板)
  283. $html = view('exam-analysis.pdf-report-v3', $templateData)->render();
  284. $mark('render_html_ms');
  285. if (! $html) {
  286. Log::error('ExamPdfExportService: 渲染HTML为空', ['paper_id' => $paperId]);
  287. return null;
  288. }
  289. // 生成PDF
  290. $pdfBinary = $this->buildPdf($html);
  291. $mark('build_pdf_ms');
  292. if (! $pdfBinary) {
  293. return null;
  294. }
  295. // 保存PDF(命名统一:姓名_分析报告_卷子id_卷子类型_时间戳)
  296. $studentName = (string) ($templateData['student']['name'] ?? $studentId);
  297. $paperCode = PaperNaming::extractExamCode((string) ($templateData['paper']['id'] ?? $paperId));
  298. $assembleTypeLabel = (string) ($templateData['paper']['assemble_type_label'] ?? '未知类型');
  299. $stamp = now()->format('YmdHis') . strtoupper(Str::random(4));
  300. $analysisBase = "{$studentName}_分析报告_{$paperCode}_{$assembleTypeLabel}_{$stamp}";
  301. $safeAnalysisFile = PaperNaming::toSafeFilename($analysisBase) . '.pdf';
  302. $path = "analysis_reports/{$safeAnalysisFile}";
  303. $url = $this->pdfStorageService->put($path, $pdfBinary);
  304. $mark('upload_pdf_ms');
  305. if (! $url) {
  306. Log::error('ExamPdfExportService: 保存学情PDF失败', ['path' => $path]);
  307. return null;
  308. }
  309. // 保存URL到数据库
  310. $this->saveAnalysisPdfUrl($paperId, $studentId, $recordId, $url);
  311. $mark('save_pdf_url_ms');
  312. $marks['total_ms'] = round((microtime(true) - $flowStart) * 1000, 1);
  313. Log::info('ExamPdfExportService: 学情分析PDF耗时明细', [
  314. 'paper_id' => $paperId,
  315. 'student_id' => $studentId,
  316. 'record_id' => $recordId,
  317. 'timing' => $marks,
  318. ]);
  319. return $url;
  320. } catch (\Throwable $e) {
  321. Log::error('ExamPdfExportService: 生成学情分析PDF失败', [
  322. 'paper_id' => $paperId,
  323. 'student_id' => $studentId,
  324. 'record_id' => $recordId,
  325. 'error' => $e->getMessage(),
  326. 'exception' => get_class($e),
  327. 'trace' => $e->getTraceAsString(),
  328. ]);
  329. return null;
  330. }
  331. }
  332. /**
  333. * 构建学情报告 V3 展示数据(模块化视图)
  334. */
  335. private function buildAnalysisReportV3Data(array $templateData): array
  336. {
  337. $rawAnalysis = $templateData['analysis_data'] ?? [];
  338. $kpRows = $rawAnalysis['knowledge_point_analysis'] ?? [];
  339. $questionRows = $rawAnalysis['question_analysis'] ?? [];
  340. $overallSummary = $rawAnalysis['overall_summary'] ?? [];
  341. $kpMeta = $this->getKnowledgePointMetaMap();
  342. $grade = (string) ($templateData['student']['grade'] ?? '');
  343. $stage = $this->resolveRadarStage($grade, $templateData['full_parent_mastery_levels'] ?? []);
  344. $profile = $this->getRadarProfileByStage($stage);
  345. $rootCode = (string) ($profile['root_code'] ?? 'M00');
  346. $moduleCodes = $profile['module_codes'] ?? [];
  347. $moduleNames = $profile['module_names'] ?? [];
  348. $moduleAgg = [];
  349. foreach ($moduleCodes as $moduleCode) {
  350. $moduleAgg[$moduleCode] = [
  351. 'mastery_sum' => 0.0,
  352. 'mastery_count' => 0,
  353. 'question_max' => 0.0,
  354. 'question_obtained' => 0.0,
  355. 'question_count' => 0,
  356. ];
  357. }
  358. $fullParentMap = $templateData['full_parent_mastery_levels'] ?? [];
  359. if (! is_array($fullParentMap)) {
  360. $fullParentMap = [];
  361. }
  362. foreach ($kpRows as $row) {
  363. $kpId = trim((string) ($row['kp_id'] ?? ''));
  364. if ($kpId === '') {
  365. continue;
  366. }
  367. $moduleCode = $this->mapKpToStageModule($kpId, $kpMeta, $rootCode);
  368. if (! $moduleCode || ! isset($moduleAgg[$moduleCode])) {
  369. continue;
  370. }
  371. $mastery = (float) ($row['mastery_level'] ?? 0);
  372. $moduleAgg[$moduleCode]['mastery_sum'] += $mastery;
  373. $moduleAgg[$moduleCode]['mastery_count']++;
  374. }
  375. foreach ($questionRows as $questionRow) {
  376. $maxScore = (float) ($questionRow['max_score'] ?? 0);
  377. $obtainedScore = (float) ($questionRow['score_obtained'] ?? 0);
  378. if ($maxScore <= 0) {
  379. continue;
  380. }
  381. $kpId = '';
  382. $questionKps = $questionRow['knowledge_points'] ?? [];
  383. if (is_array($questionKps) && ! empty($questionKps)) {
  384. $first = $questionKps[0] ?? [];
  385. if (is_array($first)) {
  386. $kpId = trim((string) ($first['kp_id'] ?? ''));
  387. }
  388. }
  389. if ($kpId === '') {
  390. continue;
  391. }
  392. $moduleCode = $this->mapKpToStageModule($kpId, $kpMeta, $rootCode);
  393. if (! $moduleCode || ! isset($moduleAgg[$moduleCode])) {
  394. continue;
  395. }
  396. $moduleAgg[$moduleCode]['question_max'] += $maxScore;
  397. $moduleAgg[$moduleCode]['question_obtained'] += max(0.0, min($obtainedScore, $maxScore));
  398. $moduleAgg[$moduleCode]['question_count']++;
  399. }
  400. $moduleRows = [];
  401. foreach ($moduleCodes as $moduleCode) {
  402. $agg = $moduleAgg[$moduleCode] ?? null;
  403. $masteryLevel = null;
  404. $kpCount = 0;
  405. if (isset($fullParentMap[$moduleCode])) {
  406. $parentRow = $fullParentMap[$moduleCode];
  407. $masteryLevel = isset($parentRow['mastery_level']) ? (float) $parentRow['mastery_level'] : null;
  408. $kpCount = (int) ($parentRow['children_total_count'] ?? 0);
  409. }
  410. if ($masteryLevel === null && $agg && $agg['mastery_count'] > 0) {
  411. $masteryLevel = $agg['mastery_sum'] / $agg['mastery_count'];
  412. }
  413. $masteryScore5 = $masteryLevel !== null ? round($masteryLevel * 5, 2) : null;
  414. $examMax = (float) ($agg['question_max'] ?? 0.0);
  415. $examObtained = (float) ($agg['question_obtained'] ?? 0.0);
  416. $examRate = $examMax > 0 ? round($examObtained / $examMax, 4) : null;
  417. if ($kpCount <= 0) {
  418. $kpCount = (int) ($agg['mastery_count'] ?? 0);
  419. }
  420. $moduleRows[] = [
  421. 'module_code' => $moduleCode,
  422. 'module_name' => $moduleNames[$moduleCode] ?? $moduleCode,
  423. 'mastery_level' => $masteryLevel !== null ? round($masteryLevel, 4) : null,
  424. 'mastery_score_5' => $masteryScore5,
  425. 'status' => $this->resolveMasteryStatus($masteryLevel),
  426. 'kp_count' => $kpCount,
  427. 'question_count' => (int) ($agg['question_count'] ?? 0),
  428. 'exam_max_score' => round($examMax, 2),
  429. 'exam_obtained_score' => round($examObtained, 2),
  430. 'exam_score_rate' => $examRate,
  431. ];
  432. }
  433. $allMax = 0.0;
  434. $allObtained = 0.0;
  435. foreach ($moduleRows as $moduleRow) {
  436. $allMax += (float) ($moduleRow['exam_max_score'] ?? 0);
  437. $allObtained += (float) ($moduleRow['exam_obtained_score'] ?? 0);
  438. }
  439. $scoreRate = $allMax > 0 ? round($allObtained / $allMax, 4) : null;
  440. $avgMastery = isset($overallSummary['average_mastery'])
  441. ? (float) $overallSummary['average_mastery']
  442. : $this->averageByKey(array_filter($moduleRows, fn ($m) => $m['mastery_level'] !== null), 'mastery_level');
  443. $paths = $this->buildV3LearningPaths($moduleRows);
  444. $difficultyInsight = $this->buildV3DifficultyInsight($templateData);
  445. $comparisonInsight = $this->buildV3ComparisonInsight(
  446. $templateData,
  447. $scoreRate,
  448. $avgMastery
  449. );
  450. $fallbackOverallLabel = $overallSummary['overall_performance'] ?? $this->resolveOverallPerformanceLabel($avgMastery);
  451. $overallComposite = $this->buildV3OverallCompositeEvaluation(
  452. $scoreRate,
  453. $avgMastery,
  454. $difficultyInsight,
  455. $comparisonInsight,
  456. $fallbackOverallLabel
  457. );
  458. $overallLabel = (string) ($overallComposite['label'] ?? $fallbackOverallLabel);
  459. // 雷达图:轴固定为学段根节点的“第一层父知识点”(根节点的直接子节点)
  460. // 掌握度计算口径:严格沿用上一版父节点掌握度口径(full_parent_mastery_levels / parent_mastery_levels)。
  461. $radar = [];
  462. $hitParentMap = $templateData['parent_mastery_levels'] ?? [];
  463. if (! is_array($hitParentMap)) {
  464. $hitParentMap = [];
  465. }
  466. // 第二块聚类视图数据:严格按学段知识树叶子节点分组(与 math.client-pc 层级一致)
  467. $radarChildrenByModule = [];
  468. $examHitCodes = $templateData['exam_hit_kp_codes'] ?? [];
  469. if (! is_array($examHitCodes)) {
  470. $examHitCodes = [];
  471. }
  472. $examHitSet = array_fill_keys(array_map(static fn ($v) => (string) $v, $examHitCodes), true);
  473. $masteryMapForCluster = $templateData['mastery_map'] ?? [];
  474. if (! is_array($masteryMapForCluster)) {
  475. $masteryMapForCluster = [];
  476. }
  477. $kpChangeMap = [];
  478. foreach ($kpRows as $row) {
  479. $code = trim((string) ($row['kp_code'] ?? $row['knowledge_point_code'] ?? $row['code'] ?? ''));
  480. if ($code === '') {
  481. continue;
  482. }
  483. $changeRaw = $row['mastery_change'] ?? $row['change'] ?? null;
  484. if ($changeRaw === null || $changeRaw === '') {
  485. continue;
  486. }
  487. $kpChangeMap[$code] = (float) $changeRaw;
  488. }
  489. if (empty($kpChangeMap)) {
  490. $studentId = (string) ($templateData['student']['id'] ?? '');
  491. $paperId = (string) ($templateData['paper']['id'] ?? '');
  492. if ($studentId !== '' && $paperId !== '') {
  493. try {
  494. $snapshot = DB::connection('mysql')
  495. ->table('knowledge_point_mastery_snapshots')
  496. ->where('student_id', $studentId)
  497. ->where('paper_id', $paperId)
  498. ->latest('snapshot_time')
  499. ->first();
  500. if ($snapshot && ! empty($snapshot->mastery_data)) {
  501. $snapshotData = json_decode((string) $snapshot->mastery_data, true);
  502. if (is_array($snapshotData)) {
  503. foreach ($snapshotData as $kpCode => $node) {
  504. if (! is_array($node)) {
  505. continue;
  506. }
  507. $change = $node['change'] ?? null;
  508. if ($change === null && isset($node['current_mastery'], $node['previous_mastery'])) {
  509. $change = floatval($node['current_mastery']) - floatval($node['previous_mastery']);
  510. }
  511. if ($change === null || $change === '') {
  512. continue;
  513. }
  514. $code = trim((string) $kpCode);
  515. if ($code === '') {
  516. continue;
  517. }
  518. $kpChangeMap[$code] = (float) $change;
  519. }
  520. }
  521. }
  522. } catch (\Throwable $e) {
  523. Log::warning('ExamPdfExportService: 聚类变化值快照回填失败', [
  524. 'paper_id' => $paperId,
  525. 'student_id' => $studentId,
  526. 'error' => $e->getMessage(),
  527. ]);
  528. }
  529. }
  530. }
  531. $stageCodes = $this->collectStageKnowledgePoints($rootCode);
  532. $childrenByParent = [];
  533. foreach ($kpMeta as $code => $meta) {
  534. $p = trim((string) ($meta['parent_kp_code'] ?? ''));
  535. if ($p !== '') {
  536. $childrenByParent[$p][] = (string) $code;
  537. }
  538. }
  539. $expandedExamHitSet = $examHitSet;
  540. foreach (array_keys($examHitSet) as $hitCode) {
  541. foreach ($this->collectLeafDescendants($hitCode, $childrenByParent) as $leafCode) {
  542. $expandedExamHitSet[$leafCode] = true;
  543. }
  544. }
  545. $resolveHierarchyForCluster = function (string $kpId) use ($kpMeta, $rootCode): array {
  546. $rootName = trim((string) ($kpMeta[$rootCode]['name'] ?? $rootCode));
  547. $lineage = [];
  548. $cursor = $kpId;
  549. $guard = 0;
  550. while ($cursor !== '' && isset($kpMeta[$cursor]) && $guard < 24) {
  551. $nodeName = trim((string) ($kpMeta[$cursor]['name'] ?? $cursor));
  552. if ($nodeName !== '') {
  553. $lineage[] = $nodeName;
  554. }
  555. $parent = trim((string) ($kpMeta[$cursor]['parent_kp_code'] ?? ''));
  556. if ($parent === '' || $parent === $cursor || $parent === $rootCode) {
  557. break;
  558. }
  559. $cursor = $parent;
  560. $guard++;
  561. }
  562. $nonRootPath = array_reverse($lineage); // 等价前端去 root 后的路径
  563. $safePath = !empty($nonRootPath) ? $nonRootPath : [trim((string) ($kpMeta[$kpId]['name'] ?? $kpId))];
  564. $pathCount = count($safePath);
  565. $parentName = $safePath[$pathCount - 2] ?? $safePath[$pathCount - 1] ?? $rootName;
  566. $grandParentName = $safePath[$pathCount - 3] ?? $safePath[0] ?? $parentName;
  567. $greatGrandParentName = $safePath[$pathCount - 4] ?? $safePath[0] ?? $grandParentName;
  568. $path = implode(' > ', array_filter(array_merge([$rootName], $safePath)));
  569. return [
  570. 'parent_name' => $parentName,
  571. 'grand_parent_name' => $grandParentName,
  572. 'great_grand_parent_name' => $greatGrandParentName,
  573. 'path' => $path,
  574. ];
  575. };
  576. foreach ($stageCodes as $kpId) {
  577. $kpId = trim((string) $kpId);
  578. if ($kpId === '' || ! isset($kpMeta[$kpId])) {
  579. continue;
  580. }
  581. // 仅纳入叶子知识点,保证与前端 flattenKnowledgePoints 一致
  582. if (! empty($childrenByParent[$kpId] ?? [])) {
  583. continue;
  584. }
  585. $moduleCode = $this->mapKpToStageModule($kpId, $kpMeta, $rootCode);
  586. if (! $moduleCode || ! in_array($moduleCode, $moduleCodes, true)) {
  587. continue;
  588. }
  589. $parentCode = (string) ($kpMeta[$kpId]['parent_kp_code'] ?? '');
  590. $depth = $this->resolveDepthToModule($kpId, $moduleCode, $kpMeta);
  591. $hierarchy = $resolveHierarchyForCluster($kpId);
  592. $masteryValue = array_key_exists($kpId, $masteryMapForCluster)
  593. ? floatval($masteryMapForCluster[$kpId])
  594. : null;
  595. $changeValue = array_key_exists($kpId, $kpChangeMap)
  596. ? (float) $kpChangeMap[$kpId]
  597. : null;
  598. $isHit = isset($expandedExamHitSet[$kpId]);
  599. $radarChildrenByModule[$moduleCode][] = [
  600. 'code' => $kpId,
  601. 'name' => $kpMeta[$kpId]['name'] ?? $kpId,
  602. 'parent_code' => $parentCode,
  603. 'parent_name' => $hierarchy['parent_name'],
  604. 'grand_parent_name' => $hierarchy['grand_parent_name'],
  605. 'great_grand_parent_name' => $hierarchy['great_grand_parent_name'],
  606. 'path' => $hierarchy['path'],
  607. 'depth' => $depth,
  608. 'change' => $changeValue !== null ? round($changeValue, 4) : null,
  609. 'mastery_level' => $masteryValue !== null ? round($masteryValue, 4) : null,
  610. 'changed' => $changeValue !== null,
  611. 'is_hit' => $isHit,
  612. ];
  613. }
  614. foreach ($radarChildrenByModule as $moduleCode => $items) {
  615. usort($items, static function ($a, $b) {
  616. $da = (int) ($a['depth'] ?? 1);
  617. $db = (int) ($b['depth'] ?? 1);
  618. if ($da !== $db) {
  619. return $da <=> $db;
  620. }
  621. $ca = abs((float) ($a['change'] ?? 0));
  622. $cb = abs((float) ($b['change'] ?? 0));
  623. if ($ca === $cb) {
  624. return strcmp((string) ($a['code'] ?? ''), (string) ($b['code'] ?? ''));
  625. }
  626. return $cb <=> $ca;
  627. });
  628. $radarChildrenByModule[$moduleCode] = $items;
  629. }
  630. foreach ($moduleCodes as $moduleCode) {
  631. $hitParentRow = $hitParentMap[$moduleCode] ?? null;
  632. $hitAvg = null;
  633. if (is_array($hitParentRow) && isset($hitParentRow['children_hit_avg_mastery'])) {
  634. $hitAvg = (float) $hitParentRow['children_hit_avg_mastery'];
  635. }
  636. $fullParentRow = $fullParentMap[$moduleCode] ?? null;
  637. $fullMastery = null;
  638. if (is_array($fullParentRow) && isset($fullParentRow['mastery_level'])) {
  639. $fullMastery = (float) $fullParentRow['mastery_level'];
  640. }
  641. $mastery = $hitAvg ?? $fullMastery;
  642. $hasMastery = $mastery !== null;
  643. $score5 = $hasMastery ? round($mastery * 5, 2) : 0.0;
  644. $status = $hasMastery ? $this->resolveMasteryStatus($mastery) : '未涉及';
  645. $radar[] = [
  646. 'code' => $moduleCode,
  647. 'name' => $moduleNames[$moduleCode] ?? $moduleCode,
  648. 'value' => $score5,
  649. 'status' => $status,
  650. 'has_mastery' => $hasMastery,
  651. 'children' => $radarChildrenByModule[$moduleCode] ?? [],
  652. ];
  653. }
  654. return [
  655. 'summary' => [
  656. 'score_obtained' => round($allObtained, 1),
  657. 'score_total' => round($allMax, 1),
  658. 'score_rate' => $scoreRate,
  659. 'average_mastery' => $avgMastery !== null ? round($avgMastery, 4) : null,
  660. 'overall_label' => $overallLabel,
  661. 'overall_label_detail' => $overallComposite,
  662. 'stage' => $stage,
  663. 'difficulty' => $difficultyInsight,
  664. 'comparison' => $comparisonInsight,
  665. ],
  666. 'radar' => $radar,
  667. 'modules' => $moduleRows,
  668. 'paths' => $paths,
  669. ];
  670. }
  671. private function buildV3LearningPaths(array $moduleRows): array
  672. {
  673. $items = [];
  674. foreach ($moduleRows as $moduleRow) {
  675. if (! isset($moduleRow['mastery_level']) || $moduleRow['mastery_level'] === null) {
  676. continue;
  677. }
  678. $items[] = [
  679. 'name' => (string) ($moduleRow['module_name'] ?? ''),
  680. 'module_code' => (string) ($moduleRow['module_code'] ?? ''),
  681. 'mastery_level' => (float) $moduleRow['mastery_level'],
  682. 'status' => $moduleRow['status'] ?? '未学习',
  683. ];
  684. }
  685. usort($items, fn ($a, $b) => $a['mastery_level'] <=> $b['mastery_level']);
  686. $lowToHigh = $items;
  687. $highToLow = array_reverse($items);
  688. $keep = array_values(array_filter($highToLow, fn ($i) => ($this->toPcMasteryPercent($i['mastery_level']) ?? -1) >= 85));
  689. $boost = array_values(array_filter($lowToHigh, function ($i) {
  690. $percent = $this->toPcMasteryPercent($i['mastery_level']) ?? -1;
  691. return $percent >= 60 && $percent < 85;
  692. }));
  693. $key = array_values(array_filter($lowToHigh, fn ($i) => ($this->toPcMasteryPercent($i['mastery_level']) ?? 101) < 60));
  694. return [
  695. 'keep' => $keep,
  696. 'boost' => $boost,
  697. 'key' => $key,
  698. ];
  699. }
  700. private function resolveMasteryStatus(?float $mastery): string
  701. {
  702. $percent = $this->toPcMasteryPercent($mastery);
  703. if ($percent === null) {
  704. return '未学习';
  705. }
  706. if ($percent >= 85) {
  707. return '已掌握';
  708. }
  709. if ($percent >= 60) {
  710. return '薄弱';
  711. }
  712. return '未入门';
  713. }
  714. private function toPcMasteryPercent(?float $mastery): ?int
  715. {
  716. if ($mastery === null) {
  717. return null;
  718. }
  719. // PC API returns mastery rounded to 2 decimals, then the frontend Math.rounds it to 0-100.
  720. return (int) round(round($mastery, 2) * 100);
  721. }
  722. private function resolveOverallPerformanceLabel(?float $avgMastery): string
  723. {
  724. if ($avgMastery === null) {
  725. return '待评估';
  726. }
  727. if ($avgMastery >= 0.85) {
  728. return '优秀';
  729. }
  730. if ($avgMastery >= 0.7) {
  731. return '良好';
  732. }
  733. if ($avgMastery >= 0.55) {
  734. return '一般';
  735. }
  736. return '需提升';
  737. }
  738. private function averageByKey(array $rows, string $key): ?float
  739. {
  740. if (empty($rows)) {
  741. return null;
  742. }
  743. $sum = 0.0;
  744. $count = 0;
  745. foreach ($rows as $row) {
  746. if (! isset($row[$key])) {
  747. continue;
  748. }
  749. $sum += (float) $row[$key];
  750. $count++;
  751. }
  752. return $count > 0 ? ($sum / $count) : null;
  753. }
  754. private function buildV3DifficultyInsight(array $templateData): array
  755. {
  756. $paper = $templateData['paper'] ?? [];
  757. $questions = $templateData['questions'] ?? [];
  758. $rawCategory = (string) ($paper['difficulty_category'] ?? '');
  759. $level = QuestionDifficultyCalibrationAnalyzer::parsePaperDifficultyCategory($rawCategory);
  760. $levelInt = $level !== null ? (int) round($level) : null;
  761. $range = $this->difficultyRangeByLevel($levelInt);
  762. $difficulties = [];
  763. foreach ($questions as $q) {
  764. $d = $q['difficulty'] ?? null;
  765. if ($d !== null && is_numeric($d)) {
  766. $dv = (float) $d;
  767. if ($dv >= 0.0 && $dv <= 1.0) {
  768. $difficulties[] = $dv;
  769. }
  770. }
  771. }
  772. $actualAvg = ! empty($difficulties) ? (array_sum($difficulties) / count($difficulties)) : null;
  773. $actualLevel = $actualAvg !== null ? $this->mapDifficultyValueToLevel($actualAvg) : null;
  774. $targetCenter = $range !== null ? (($range['min'] + $range['max']) / 2.0) : null;
  775. $deviation = ($actualAvg !== null && $targetCenter !== null) ? ($actualAvg - $targetCenter) : null;
  776. $matchStatus = '暂无';
  777. if ($actualAvg !== null && $range !== null) {
  778. if ($actualAvg > $range['max']) {
  779. $matchStatus = '偏难';
  780. } elseif ($actualAvg < $range['min']) {
  781. $matchStatus = '偏易';
  782. } else {
  783. $matchStatus = '匹配';
  784. }
  785. }
  786. $scoreRate = $this->resolveCurrentScoreRateForDifficultyInsight($templateData);
  787. $scoreBand = $this->resolveScoreRateBandForDifficultyInsight($scoreRate);
  788. $seed = sprintf(
  789. '%s|%s|%s|%s',
  790. (string) ($paper['id'] ?? ''),
  791. (string) (($templateData['student'] ?? [])['id'] ?? ''),
  792. $matchStatus,
  793. $scoreBand
  794. );
  795. $explain = $this->buildDifficultyExplainByContext($matchStatus, $scoreBand, $seed);
  796. return [
  797. 'target_category_raw' => $rawCategory,
  798. 'target_level' => $levelInt,
  799. 'target_label' => $this->difficultyLevelLabel($levelInt, $rawCategory),
  800. 'target_range' => $range,
  801. 'actual_average_difficulty' => $actualAvg !== null ? round($actualAvg, 4) : null,
  802. 'actual_level' => $actualLevel,
  803. 'actual_label' => $actualLevel !== null ? $this->difficultyLevelLabel($actualLevel) : null,
  804. 'deviation' => $deviation !== null ? round($deviation, 4) : null,
  805. 'status' => $matchStatus,
  806. 'question_count' => count($difficulties),
  807. 'score_rate' => $scoreRate !== null ? round($scoreRate, 4) : null,
  808. 'score_band' => $scoreBand,
  809. 'explain' => $explain,
  810. ];
  811. }
  812. private function resolveCurrentScoreRateForDifficultyInsight(array $templateData): ?float
  813. {
  814. $rawOverall = (array) (($templateData['analysis_data'] ?? [])['overall_summary'] ?? []);
  815. if (isset($rawOverall['score_rate']) && is_numeric($rawOverall['score_rate'])) {
  816. $v = (float) $rawOverall['score_rate'];
  817. if ($v >= 0.0 && $v <= 1.0) {
  818. return $v;
  819. }
  820. if ($v > 1.0 && $v <= 100.0) {
  821. return $v / 100.0;
  822. }
  823. }
  824. $questions = $templateData['questions'] ?? [];
  825. $total = 0.0;
  826. $obtained = 0.0;
  827. foreach ($questions as $q) {
  828. $max = $q['score'] ?? $q['max_score'] ?? null;
  829. $got = $q['score_obtained'] ?? null;
  830. if (! is_numeric($max) || ! is_numeric($got)) {
  831. continue;
  832. }
  833. $maxVal = (float) $max;
  834. if ($maxVal <= 0) {
  835. continue;
  836. }
  837. $gotVal = max(0.0, min((float) $got, $maxVal));
  838. $total += $maxVal;
  839. $obtained += $gotVal;
  840. }
  841. return $total > 0 ? ($obtained / $total) : null;
  842. }
  843. private function resolveScoreRateBandForDifficultyInsight(?float $scoreRate): string
  844. {
  845. if ($scoreRate === null) {
  846. return 'unknown';
  847. }
  848. if ($scoreRate >= 0.8) {
  849. return 'high';
  850. }
  851. if ($scoreRate >= 0.6) {
  852. return 'mid';
  853. }
  854. return 'low';
  855. }
  856. private function buildDifficultyExplainByContext(string $matchStatus, string $scoreBand, string $seed): string
  857. {
  858. $messageMap = config('exam.analysis_report_v3.difficulty_explain_messages', []);
  859. if (! is_array($messageMap) || empty($messageMap)) {
  860. $messageMap = [
  861. '暂无' => [
  862. 'unknown' => [
  863. '暂无足够数据评估难度匹配。',
  864. ],
  865. ],
  866. ];
  867. }
  868. $statusMap = $messageMap[$matchStatus] ?? $messageMap['暂无'];
  869. $candidates = $statusMap[$scoreBand] ?? $statusMap['unknown'] ?? $messageMap['暂无']['unknown'];
  870. return $this->pickStableVariantMessage($candidates, $seed);
  871. }
  872. private function pickStableVariantMessage(array $messages, string $seed): string
  873. {
  874. if (empty($messages)) {
  875. return '暂无足够数据评估难度匹配。';
  876. }
  877. $idx = abs(crc32($seed)) % count($messages);
  878. return (string) $messages[$idx];
  879. }
  880. private function buildV3ComparisonInsight(array $templateData, ?float $currentScoreRate, ?float $currentMastery): array
  881. {
  882. $paper = $templateData['paper'] ?? [];
  883. $student = $templateData['student'] ?? [];
  884. $studentId = (string) ($student['id'] ?? '');
  885. $grade = (string) ($student['grade'] ?? '');
  886. $paperId = (string) ($paper['id'] ?? '');
  887. $paperType = isset($paper['paper_type']) ? (int) $paper['paper_type'] : null;
  888. $history = [
  889. 'has_data' => false,
  890. 'is_first_exam' => false,
  891. 'low_baseline_guard' => false,
  892. 'sample_size' => 0,
  893. 'baseline_score_rate' => null,
  894. 'delta_score_rate' => null,
  895. 'trend' => '暂无',
  896. 'message' => '历史样本不足,暂无法形成稳定趋势。',
  897. ];
  898. $peers = [
  899. 'has_data' => false,
  900. 'sample_size' => 0,
  901. 'raw_sample_size' => 0,
  902. 'peer_avg_score_rate' => null,
  903. 'delta_score_rate' => null,
  904. 'percentile' => null,
  905. 'band' => '暂无',
  906. 'display_mode' => 'none',
  907. 'show_line' => false,
  908. 'band_icon' => '•',
  909. 'band_color' => '#64748b',
  910. 'message' => '同群体样本不足,暂无法做稳健对比。',
  911. ];
  912. if ($studentId === '') {
  913. return ['history' => $history, 'peers' => $peers];
  914. }
  915. try {
  916. $historyRows = DB::connection('mysql')
  917. ->table('papers as p')
  918. ->join('paper_questions as pq', 'pq.paper_id', '=', 'p.paper_id')
  919. ->where('p.student_id', $studentId)
  920. ->when($paperId !== '', fn ($q) => $q->where('p.paper_id', '!=', $paperId))
  921. ->groupBy('p.paper_id', 'p.created_at')
  922. ->selectRaw('p.paper_id, p.created_at, SUM(COALESCE(pq.score, 0)) as total_score, SUM(COALESCE(pq.score_obtained, 0)) as obtained_score')
  923. ->havingRaw('SUM(COALESCE(pq.score, 0)) > 0')
  924. ->orderByDesc('p.created_at')
  925. ->limit(7)
  926. ->get();
  927. $historyRates = [];
  928. foreach ($historyRows as $row) {
  929. $total = (float) ($row->total_score ?? 0);
  930. if ($total <= 0) {
  931. continue;
  932. }
  933. $historyRates[] = (float) ($row->obtained_score ?? 0) / $total;
  934. }
  935. if (! empty($historyRates) && $currentScoreRate !== null) {
  936. $baseline = array_sum($historyRates) / count($historyRates);
  937. $delta = $currentScoreRate - $baseline;
  938. $history['has_data'] = true;
  939. $history['sample_size'] = count($historyRates);
  940. $history['baseline_score_rate'] = round($baseline, 4);
  941. $history['delta_score_rate'] = round($delta, 4);
  942. if ($baseline <= 0.02 && count($historyRates) >= 5) {
  943. $history['low_baseline_guard'] = true;
  944. $history['trend'] = '基线偏低';
  945. $history['message'] = '近7次历史基线过低,单次涨跌参考意义有限,建议重点看后续连续3次趋势。';
  946. } else {
  947. $history['trend'] = $this->resolveDeltaTrendLabel($delta);
  948. $history['message'] = $delta >= 0
  949. ? '相较于近期个人表现,本次成绩处于上行区间。'
  950. : '相较于近期个人表现,本次成绩略有回落,建议优先复盘错因分布。';
  951. }
  952. } elseif ($currentScoreRate !== null) {
  953. $history['is_first_exam'] = true;
  954. $history['message'] = $this->pickFirstExamEncouragementMessageByScore($currentScoreRate);
  955. }
  956. } catch (\Throwable $e) {
  957. Log::warning('ExamPdfExportService: 构建历史对比失败', ['error' => $e->getMessage()]);
  958. }
  959. try {
  960. if ($grade !== '' && $currentScoreRate !== null) {
  961. $peerRows = DB::connection('mysql')
  962. ->table('papers as p')
  963. ->join('students as s', 's.student_id', '=', 'p.student_id')
  964. ->join('paper_questions as pq', 'pq.paper_id', '=', 'p.paper_id')
  965. ->where('s.grade', $grade)
  966. ->where('p.student_id', '!=', $studentId)
  967. ->when($paperType !== null, fn ($q) => $q->where('p.paper_type', $paperType))
  968. ->groupBy('p.paper_id', 'p.created_at')
  969. ->selectRaw('p.paper_id, p.created_at, SUM(COALESCE(pq.score, 0)) as total_score, SUM(COALESCE(pq.score_obtained, 0)) as obtained_score')
  970. ->havingRaw('SUM(COALESCE(pq.score, 0)) > 0')
  971. ->orderByDesc('p.created_at')
  972. ->limit(300)
  973. ->get();
  974. $peerRates = [];
  975. foreach ($peerRows as $row) {
  976. $total = (float) ($row->total_score ?? 0);
  977. if ($total <= 0) {
  978. continue;
  979. }
  980. $peerRates[] = (float) ($row->obtained_score ?? 0) / $total;
  981. }
  982. if (! empty($peerRates)) {
  983. sort($peerRates);
  984. $peerAvg = array_sum($peerRates) / count($peerRates);
  985. $ltCount = 0;
  986. $eqCount = 0;
  987. foreach ($peerRates as $rate) {
  988. if ($rate < $currentScoreRate) {
  989. $ltCount++;
  990. } elseif (abs($rate - $currentScoreRate) < 1e-9) {
  991. $eqCount++;
  992. }
  993. }
  994. // 使用 mid-rank percentile,避免并列值把分位夸大到 100%
  995. $percentile = (100.0 * ($ltCount + 0.5 * $eqCount)) / count($peerRates);
  996. $delta = $currentScoreRate - $peerAvg;
  997. $peerCount = count($peerRates);
  998. $band = $this->resolvePeerBand($percentile);
  999. $bandVisual = $this->resolvePeerBandVisual($band);
  1000. $peers['has_data'] = true;
  1001. $peers['show_line'] = true;
  1002. $peers['sample_size'] = $peerCount;
  1003. $peers['raw_sample_size'] = $peerCount;
  1004. $peers['peer_avg_score_rate'] = round($peerAvg, 4);
  1005. $peers['delta_score_rate'] = round($delta, 4);
  1006. $peers['percentile'] = round($percentile, 1);
  1007. $peers['band'] = $band;
  1008. $peers['band_icon'] = $bandVisual['icon'];
  1009. $peers['band_color'] = $bandVisual['color'];
  1010. if ($peerCount < 50) {
  1011. $peers['display_mode'] = 'masked';
  1012. $peers['sample_size'] = null;
  1013. $peers['peer_avg_score_rate'] = null;
  1014. $peers['percentile'] = null;
  1015. $peers['message'] = '已建立同群体参照,当前处于'.$band.'区间。';
  1016. } elseif ($peerCount > 200) {
  1017. $peers['display_mode'] = 'percentile_only';
  1018. $peers['sample_size'] = null;
  1019. $peers['peer_avg_score_rate'] = null;
  1020. $peers['percentile'] = null;
  1021. $peers['message'] = '和上百位同年级同类型学生相比,你当前处于'.$band.'水平。';
  1022. } else {
  1023. $peers['display_mode'] = 'detailed';
  1024. $peers['message'] = '同年级同类型参照中,你当前位于 '
  1025. .number_format($percentile, 1).'% 分位,群体均值 '
  1026. .number_format($peerAvg * 100, 1).'% 。';
  1027. }
  1028. }
  1029. }
  1030. } catch (\Throwable $e) {
  1031. Log::warning('ExamPdfExportService: 构建同群体对比失败', ['error' => $e->getMessage()]);
  1032. }
  1033. return [
  1034. 'history' => $history,
  1035. 'peers' => $peers,
  1036. 'mastery' => [
  1037. 'current_average_mastery' => $currentMastery !== null ? round($currentMastery, 4) : null,
  1038. ],
  1039. ];
  1040. }
  1041. private function difficultyRangeByLevel(?int $level): ?array
  1042. {
  1043. $map = [
  1044. 0 => ['min' => 0.00, 'max' => 0.10],
  1045. 1 => ['min' => 0.10, 'max' => 0.25],
  1046. 2 => ['min' => 0.25, 'max' => 0.50],
  1047. 3 => ['min' => 0.50, 'max' => 0.75],
  1048. 4 => ['min' => 0.75, 'max' => 1.00],
  1049. ];
  1050. if ($level === null || ! isset($map[$level])) {
  1051. return null;
  1052. }
  1053. return $map[$level];
  1054. }
  1055. private function mapDifficultyValueToLevel(float $difficulty): int
  1056. {
  1057. if ($difficulty < 0.10) {
  1058. return 0;
  1059. }
  1060. if ($difficulty < 0.25) {
  1061. return 1;
  1062. }
  1063. if ($difficulty < 0.50) {
  1064. return 2;
  1065. }
  1066. if ($difficulty < 0.75) {
  1067. return 3;
  1068. }
  1069. return 4;
  1070. }
  1071. private function difficultyLevelLabel(?int $level, ?string $fallback = null): string
  1072. {
  1073. $map = [
  1074. 0 => '0基础',
  1075. 1 => '筑基',
  1076. 2 => '提分',
  1077. 3 => '培优',
  1078. 4 => '竞赛',
  1079. ];
  1080. if ($level !== null && isset($map[$level])) {
  1081. return $map[$level];
  1082. }
  1083. $fallback = trim((string) $fallback);
  1084. return $fallback !== '' ? $fallback : '未设置';
  1085. }
  1086. private function resolveDeltaTrendLabel(float $delta): string
  1087. {
  1088. if ($delta >= 0.05) {
  1089. return '显著提升';
  1090. }
  1091. if ($delta >= 0.02) {
  1092. return '小幅提升';
  1093. }
  1094. if ($delta > -0.02) {
  1095. return '基本持平';
  1096. }
  1097. if ($delta > -0.05) {
  1098. return '小幅回落';
  1099. }
  1100. return '明显回落';
  1101. }
  1102. private function resolvePeerBand(float $percentile): string
  1103. {
  1104. if ($percentile >= 75) {
  1105. return '领先';
  1106. }
  1107. if ($percentile >= 45) {
  1108. return '中上';
  1109. }
  1110. if ($percentile >= 25) {
  1111. return '中下';
  1112. }
  1113. return '待提升';
  1114. }
  1115. /**
  1116. * 综合当前表现、历史趋势、同群体位置,给出“整体水平”。
  1117. *
  1118. * @return array{
  1119. * label:string,
  1120. * composite_score:float,
  1121. * current_score:float,
  1122. * history_score:float,
  1123. * peer_score:float,
  1124. * difficulty_adjust:float
  1125. * }
  1126. */
  1127. private function buildV3OverallCompositeEvaluation(
  1128. ?float $scoreRate,
  1129. ?float $avgMastery,
  1130. array $difficultyInsight,
  1131. array $comparisonInsight,
  1132. string $fallbackLabel
  1133. ): array {
  1134. $currentScoreRatePct = $scoreRate !== null ? max(0.0, min(100.0, $scoreRate * 100.0)) : 50.0;
  1135. $currentMasteryPct = $avgMastery !== null ? max(0.0, min(100.0, $avgMastery * 100.0)) : 50.0;
  1136. $currentScore = (0.7 * $currentScoreRatePct) + (0.3 * $currentMasteryPct);
  1137. $history = $comparisonInsight['history'] ?? [];
  1138. $historyScore = 60.0;
  1139. if (! empty($history['is_first_exam'])) {
  1140. $historyScore = 60.0;
  1141. } elseif (! empty($history['low_baseline_guard'])) {
  1142. $historyScore = 60.0;
  1143. } elseif (! empty($history['has_data']) && isset($history['delta_score_rate'])) {
  1144. $delta = (float) $history['delta_score_rate']; // ±1
  1145. $historyScore = 60.0 + (200.0 * $delta); // delta 0.1 => +20
  1146. $historyScore = max(0.0, min(100.0, $historyScore));
  1147. }
  1148. $peers = $comparisonInsight['peers'] ?? [];
  1149. $peerScore = 60.0;
  1150. if (! empty($peers['show_line'])) {
  1151. if (isset($peers['percentile']) && $peers['percentile'] !== null) {
  1152. $peerScore = max(0.0, min(100.0, (float) $peers['percentile']));
  1153. } else {
  1154. $band = (string) ($peers['band'] ?? '暂无');
  1155. $peerScore = match ($band) {
  1156. '领先' => 82.0,
  1157. '中上' => 66.0,
  1158. '中下' => 46.0,
  1159. '待提升' => 28.0,
  1160. default => 60.0,
  1161. };
  1162. }
  1163. }
  1164. $difficultyAdjust = 0.0;
  1165. $difficultyStatus = (string) ($difficultyInsight['status'] ?? '');
  1166. if ($difficultyStatus === '偏难') {
  1167. $difficultyAdjust = 5.0;
  1168. } elseif ($difficultyStatus === '偏易') {
  1169. $difficultyAdjust = -5.0;
  1170. }
  1171. $composite = (0.50 * $currentScore) + (0.25 * $historyScore) + (0.25 * $peerScore) + $difficultyAdjust;
  1172. $composite = max(0.0, min(100.0, $composite));
  1173. // 等级标准统一:
  1174. // S: 90-100, A: 75-89, B: 60-74, C: 40-59, D: 0-39
  1175. $grade = match (true) {
  1176. $composite >= 90.0 => 'S',
  1177. $composite >= 75.0 => 'A',
  1178. $composite >= 60.0 => 'B',
  1179. $composite >= 40.0 => 'C',
  1180. default => 'D',
  1181. };
  1182. $label = match ($grade) {
  1183. 'S', 'A' => '优秀',
  1184. 'B' => '良好',
  1185. 'C' => '一般',
  1186. default => '需加强',
  1187. };
  1188. if ($scoreRate === null && $avgMastery === null) {
  1189. $label = $fallbackLabel !== '' ? $fallbackLabel : '待评估';
  1190. }
  1191. return [
  1192. 'grade' => $grade,
  1193. 'label' => $label,
  1194. 'composite_score' => round($composite, 1),
  1195. 'current_score' => round($currentScore, 1),
  1196. 'history_score' => round($historyScore, 1),
  1197. 'peer_score' => round($peerScore, 1),
  1198. 'difficulty_adjust' => round($difficultyAdjust, 1),
  1199. ];
  1200. }
  1201. /**
  1202. * 首次出报告时,按得分档位随机抽取鼓励文案(每档10条)。
  1203. *
  1204. * 档位标准统一:
  1205. * A: 90-100, B: 75-89, C: 60-74, D: 40-59, E: 0-39
  1206. */
  1207. private function pickFirstExamEncouragementMessageByScore(?float $scoreRate): string
  1208. {
  1209. $score = 0.0;
  1210. if ($scoreRate !== null) {
  1211. $raw = (float) $scoreRate;
  1212. $score = $raw <= 1.0 ? ($raw * 100.0) : $raw;
  1213. $score = max(0.0, min(100.0, $score));
  1214. }
  1215. $bucket = match (true) {
  1216. $score >= 90.0 => 'A',
  1217. $score >= 75.0 => 'B',
  1218. $score >= 60.0 => 'C',
  1219. $score >= 40.0 => 'D',
  1220. default => 'E',
  1221. };
  1222. $messagesByBucket = config('exam.analysis_report_v3.first_exam_messages_by_bucket', []);
  1223. if (! is_array($messagesByBucket) || empty($messagesByBucket)) {
  1224. $messagesByBucket = [
  1225. 'A' => ['这次开局很稳,说明你的基础和状态都在线。'],
  1226. 'B' => ['这个分数是很不错的起点,方向完全正确。'],
  1227. 'C' => ['这是正常且可提升的起点,先稳住基础最关键。'],
  1228. 'D' => ['第一次这个分数不代表上限,只代表当前起点。'],
  1229. 'E' => ['第一次分数偏低很正常,先把学习路径走顺。'],
  1230. ];
  1231. }
  1232. $messages = $messagesByBucket[$bucket] ?? $messagesByBucket['C'];
  1233. $idx = random_int(0, count($messages) - 1);
  1234. return $messages[$idx];
  1235. }
  1236. /**
  1237. * 为同群体区间提供可视化图标与颜色。
  1238. *
  1239. * @return array{icon:string,color:string}
  1240. */
  1241. private function resolvePeerBandVisual(string $band): array
  1242. {
  1243. return match ($band) {
  1244. '领先' => ['icon' => '▲', 'color' => '#16a34a'],
  1245. '中上' => ['icon' => '↗', 'color' => '#0ea5e9'],
  1246. '中下' => ['icon' => '↘', 'color' => '#f59e0b'],
  1247. '待提升' => ['icon' => '▼', 'color' => '#ef4444'],
  1248. default => ['icon' => '•', 'color' => '#64748b'],
  1249. };
  1250. }
  1251. /**
  1252. * 收集某学段根节点下的全量后代知识点(不含根节点本身)
  1253. */
  1254. private function collectStageKnowledgePoints(string $rootCode): array
  1255. {
  1256. if ($rootCode === '') {
  1257. return [];
  1258. }
  1259. try {
  1260. $rows = DB::connection('mysql')
  1261. ->table('knowledge_points')
  1262. ->select('kp_code', 'parent_kp_code')
  1263. ->get();
  1264. $children = [];
  1265. foreach ($rows as $row) {
  1266. $code = trim((string) ($row->kp_code ?? ''));
  1267. $parent = trim((string) ($row->parent_kp_code ?? ''));
  1268. if ($code === '' || $parent === '') {
  1269. continue;
  1270. }
  1271. $children[$parent][] = $code;
  1272. }
  1273. $result = [];
  1274. $queue = [$rootCode];
  1275. $visited = [];
  1276. while (! empty($queue)) {
  1277. $parent = array_shift($queue);
  1278. if (isset($visited[$parent])) {
  1279. continue;
  1280. }
  1281. $visited[$parent] = true;
  1282. foreach (($children[$parent] ?? []) as $childCode) {
  1283. if ($childCode === $rootCode) {
  1284. continue;
  1285. }
  1286. $result[] = $childCode;
  1287. $queue[] = $childCode;
  1288. }
  1289. }
  1290. return array_values(array_unique($result));
  1291. } catch (\Throwable $e) {
  1292. Log::warning('ExamPdfExportService: collectStageKnowledgePoints failed', [
  1293. 'root_code' => $rootCode,
  1294. 'error' => $e->getMessage(),
  1295. ]);
  1296. return [];
  1297. }
  1298. }
  1299. /**
  1300. * Expand a hit knowledge point to leaf descendants so PDF cluster callouts match higher-level paper targets.
  1301. *
  1302. * @param array<string, array<int, string>> $childrenByParent
  1303. * @return array<int, string>
  1304. */
  1305. private function collectLeafDescendants(string $rootCode, array $childrenByParent): array
  1306. {
  1307. $rootCode = trim($rootCode);
  1308. if ($rootCode === '') {
  1309. return [];
  1310. }
  1311. $leaves = [];
  1312. $queue = [$rootCode];
  1313. $visited = [];
  1314. while (! empty($queue)) {
  1315. $code = array_shift($queue);
  1316. if (isset($visited[$code])) {
  1317. continue;
  1318. }
  1319. $visited[$code] = true;
  1320. $children = $childrenByParent[$code] ?? [];
  1321. if (empty($children)) {
  1322. if ($code !== $rootCode) {
  1323. $leaves[] = $code;
  1324. }
  1325. continue;
  1326. }
  1327. foreach ($children as $childCode) {
  1328. $childCode = trim((string) $childCode);
  1329. if ($childCode !== '') {
  1330. $queue[] = $childCode;
  1331. }
  1332. }
  1333. }
  1334. return array_values(array_unique($leaves));
  1335. }
  1336. private function resolveRadarStage(string $grade, array $fullParentLevels = []): string
  1337. {
  1338. $g = trim($grade);
  1339. if ($g !== '') {
  1340. if (preg_match('/高一|高二|高三/u', $g)) {
  1341. return 'high';
  1342. }
  1343. if (preg_match('/\d+/', $g, $m)) {
  1344. $n = (int) $m[0];
  1345. if ($n >= 10) {
  1346. return 'high';
  1347. }
  1348. if ($n > 0 && $n <= 9) {
  1349. return 'junior';
  1350. }
  1351. }
  1352. }
  1353. foreach (array_keys($fullParentLevels) as $kpCode) {
  1354. if (str_starts_with((string) $kpCode, 'S')) {
  1355. return 'high';
  1356. }
  1357. }
  1358. return 'junior';
  1359. }
  1360. private function getRadarProfileByStage(string $stage): array
  1361. {
  1362. if ($stage === 'high') {
  1363. $moduleNames = [
  1364. 'S01_000' => '集合',
  1365. 'S02_000' => '逻辑用语',
  1366. 'S03_000' => '不等式',
  1367. 'S04_000' => '函数',
  1368. 'S05_000' => '导数',
  1369. 'S06_000' => '三角函数与向量',
  1370. 'S07_000' => '立体几何',
  1371. 'S08_000' => '解析几何',
  1372. 'S09_000' => '数列',
  1373. 'S10_000' => '概率统计',
  1374. 'S11_000' => '复数',
  1375. ];
  1376. return [
  1377. 'root_code' => 'S000_000',
  1378. 'module_codes' => array_keys($moduleNames),
  1379. 'module_names' => $moduleNames,
  1380. ];
  1381. }
  1382. return [
  1383. 'root_code' => 'M00',
  1384. 'module_codes' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07'],
  1385. 'module_names' => [
  1386. 'M01' => '数与代数',
  1387. 'M02' => '方程与不等式',
  1388. 'M03' => '图形性质',
  1389. 'M04' => '图形变化与度量',
  1390. 'M05' => '相似与勾股',
  1391. 'M06' => '统计与概率',
  1392. 'M07' => '函数',
  1393. ],
  1394. ];
  1395. }
  1396. private function getKnowledgePointMetaMap(): array
  1397. {
  1398. if ($this->knowledgePointMetaCache !== null) {
  1399. return $this->knowledgePointMetaCache;
  1400. }
  1401. $rows = DB::connection('mysql')
  1402. ->table('knowledge_points')
  1403. ->select(['kp_code', 'name', 'parent_kp_code'])
  1404. ->get();
  1405. $map = [];
  1406. foreach ($rows as $row) {
  1407. $code = trim((string) ($row->kp_code ?? ''));
  1408. if ($code === '') {
  1409. continue;
  1410. }
  1411. $map[$code] = [
  1412. 'name' => (string) ($row->name ?? $code),
  1413. 'parent_kp_code' => trim((string) ($row->parent_kp_code ?? '')),
  1414. ];
  1415. }
  1416. $this->knowledgePointMetaCache = $map;
  1417. return $map;
  1418. }
  1419. private function mapKpToStageModule(string $kpCode, array $kpMeta, string $rootCode): ?string
  1420. {
  1421. $code = trim($kpCode);
  1422. if ($code === '' || empty($kpMeta[$code])) {
  1423. return null;
  1424. }
  1425. $cursor = $code;
  1426. for ($depth = 0; $depth < 16; $depth++) {
  1427. $node = $kpMeta[$cursor] ?? null;
  1428. if (! $node) {
  1429. return null;
  1430. }
  1431. $parent = (string) ($node['parent_kp_code'] ?? '');
  1432. if ($parent === $rootCode) {
  1433. return $cursor;
  1434. }
  1435. if ($parent === '' || $parent === $cursor) {
  1436. return null;
  1437. }
  1438. $cursor = $parent;
  1439. }
  1440. return null;
  1441. }
  1442. private function resolveDepthToModule(string $kpCode, string $moduleCode, array $kpMeta): int
  1443. {
  1444. $depth = 1;
  1445. $cursor = trim($kpCode);
  1446. for ($i = 0; $i < 24; $i++) {
  1447. if ($cursor === '' || ! isset($kpMeta[$cursor])) {
  1448. break;
  1449. }
  1450. if ($cursor === $moduleCode) {
  1451. return max(1, $depth - 1);
  1452. }
  1453. $parent = trim((string) ($kpMeta[$cursor]['parent_kp_code'] ?? ''));
  1454. if ($parent === '' || $parent === $cursor) {
  1455. break;
  1456. }
  1457. $cursor = $parent;
  1458. $depth++;
  1459. }
  1460. return max(1, $depth);
  1461. }
  1462. /**
  1463. * 生成合并PDF(试卷 + 判卷)
  1464. * 先分别生成两个PDF,然后合并
  1465. */
  1466. public function generateMergedPdf(string $paperId): ?string
  1467. {
  1468. Log::info('generateMergedPdf 开始:', ['paper_id' => $paperId]);
  1469. $tempDir = storage_path('app/temp');
  1470. if (! is_dir($tempDir)) {
  1471. mkdir($tempDir, 0755, true);
  1472. }
  1473. $examPdfPath = null;
  1474. $gradingPdfPath = null;
  1475. $mergedPdfPath = null;
  1476. try {
  1477. // 先生成试卷PDF
  1478. $examPdfUrl = $this->generateExamPdf($paperId);
  1479. if (! $examPdfUrl) {
  1480. Log::error('ExamPdfExportService: 生成试卷PDF失败', ['paper_id' => $paperId]);
  1481. return null;
  1482. }
  1483. // 再生成判卷PDF
  1484. $gradingPdfUrl = $this->generateGradingPdf($paperId);
  1485. if (! $gradingPdfUrl) {
  1486. Log::error('ExamPdfExportService: 生成判卷PDF失败', ['paper_id' => $paperId]);
  1487. return null;
  1488. }
  1489. // 【修复】下载PDF文件到本地临时目录
  1490. Log::info('开始下载PDF文件到本地', [
  1491. 'exam_url' => $examPdfUrl,
  1492. 'grading_url' => $gradingPdfUrl,
  1493. ]);
  1494. $examPdfPath = $tempDir."/{$paperId}_exam.pdf";
  1495. $gradingPdfPath = $tempDir."/{$paperId}_grading.pdf";
  1496. // 下载试卷PDF
  1497. $examContent = Http::get($examPdfUrl)->body();
  1498. if (empty($examContent)) {
  1499. Log::error('ExamPdfExportService: 下载试卷PDF失败', ['url' => $examPdfUrl]);
  1500. return null;
  1501. }
  1502. file_put_contents($examPdfPath, $examContent);
  1503. // 下载判卷PDF
  1504. $gradingContent = Http::get($gradingPdfUrl)->body();
  1505. if (empty($gradingContent)) {
  1506. Log::error('ExamPdfExportService: 下载判卷PDF失败', ['url' => $gradingPdfUrl]);
  1507. return null;
  1508. }
  1509. file_put_contents($gradingPdfPath, $gradingContent);
  1510. Log::info('PDF文件下载完成', [
  1511. 'exam_size' => filesize($examPdfPath),
  1512. 'grading_size' => filesize($gradingPdfPath),
  1513. ]);
  1514. // 合并PDF文件
  1515. $mergedPdfPath = $tempDir."/{$paperId}_merged.pdf";
  1516. $merged = $this->pdfMerger->merge([$examPdfPath, $gradingPdfPath], $mergedPdfPath);
  1517. if (! $merged) {
  1518. Log::error('ExamPdfExportService: PDF文件合并失败', [
  1519. 'tool' => $this->pdfMerger->getMergeTool(),
  1520. ]);
  1521. return null;
  1522. }
  1523. // 读取合并后的PDF内容并上传到云存储
  1524. $mergedPdfContent = file_get_contents($mergedPdfPath);
  1525. $paper = Paper::where('paper_id', $paperId)->first();
  1526. if (! $paper) {
  1527. Log::error('ExamPdfExportService: 合并PDF失败,未找到试卷', ['paper_id' => $paperId]);
  1528. return null;
  1529. }
  1530. $allPdfName = $this->buildPdfFileName($paper);
  1531. $path = "exams/{$allPdfName}";
  1532. $mergedUrl = $this->pdfStorageService->put($path, $mergedPdfContent);
  1533. if (! $mergedUrl) {
  1534. Log::error('ExamPdfExportService: 保存合并PDF失败', ['path' => $path]);
  1535. return null;
  1536. }
  1537. // 保存到数据库的all_pdf_url字段
  1538. $this->saveAllPdfUrlToDatabase($paperId, $mergedUrl);
  1539. Log::info('generateMergedPdf 完成:', [
  1540. 'paper_id' => $paperId,
  1541. 'url' => $mergedUrl,
  1542. 'tool' => $this->pdfMerger->getMergeTool(),
  1543. ]);
  1544. return $mergedUrl;
  1545. } catch (\Throwable $e) {
  1546. Log::error('ExamPdfExportService: 生成合并PDF失败', [
  1547. 'paper_id' => $paperId,
  1548. 'error' => $e->getMessage(),
  1549. 'trace' => $e->getTraceAsString(),
  1550. ]);
  1551. return null;
  1552. } finally {
  1553. // 【修复】清理临时文件
  1554. $tempFiles = [$examPdfPath, $gradingPdfPath, $mergedPdfPath];
  1555. foreach ($tempFiles as $file) {
  1556. if ($file && file_exists($file)) {
  1557. @unlink($file);
  1558. }
  1559. }
  1560. Log::debug('清理临时文件完成');
  1561. }
  1562. }
  1563. /**
  1564. * 将URL转换为本地文件路径
  1565. */
  1566. private function convertUrlToPath(string $url): ?string
  1567. {
  1568. // 如果是本地存储,URL格式类似:/storage/exams/paper_id_exam.pdf
  1569. // 需要转换为绝对路径
  1570. if (strpos($url, '/storage/') === 0) {
  1571. return public_path(ltrim($url, '/'));
  1572. }
  1573. // 如果是完整路径,直接返回
  1574. if (strpos($url, '/') === 0 && file_exists($url)) {
  1575. return $url;
  1576. }
  1577. // 如果是相对路径,转换为绝对路径
  1578. $path = public_path($url);
  1579. if (file_exists($path)) {
  1580. return $path;
  1581. }
  1582. return null;
  1583. }
  1584. /**
  1585. * 【新增】获取知识点讲解HTML
  1586. */
  1587. private function fetchKnowledgeExplanationHtml(string $paperId): ?string
  1588. {
  1589. $html = $this->renderKnowledgeExplanationHtmlFromView($paperId);
  1590. if ($html !== null) {
  1591. return $html;
  1592. }
  1593. try {
  1594. $url = route('filament.admin.auth.intelligent-exam.knowledge-explanation', ['paper_id' => $paperId]);
  1595. $timeout = max(1, (int) config('pdf.kp_explain_fetch_timeout_seconds', 2));
  1596. $response = Http::timeout($timeout)->get($url);
  1597. if ($response->successful()) {
  1598. $html = $response->body();
  1599. if (! empty(trim($html))) {
  1600. Log::info('ExamPdfExportService: 成功获取知识点讲解HTML', [
  1601. 'paper_id' => $paperId,
  1602. 'length' => strlen($html),
  1603. ]);
  1604. $html = $this->ensureUtf8Html($html);
  1605. $html = $this->renderKpExplainMarkdown($html);
  1606. return $html;
  1607. }
  1608. }
  1609. Log::warning('ExamPdfExportService: 获取知识点讲解HTML失败', [
  1610. 'paper_id' => $paperId,
  1611. 'url' => $url,
  1612. 'timeout_seconds' => $timeout,
  1613. ]);
  1614. return null;
  1615. } catch (\Exception $e) {
  1616. Log::warning('ExamPdfExportService: 获取知识点讲解HTML异常', [
  1617. 'paper_id' => $paperId,
  1618. 'error' => $e->getMessage(),
  1619. 'timeout_seconds' => config('pdf.kp_explain_fetch_timeout_seconds', 2),
  1620. ]);
  1621. return null;
  1622. }
  1623. }
  1624. private function renderKnowledgeExplanationHtmlFromView(string $paperId): ?string
  1625. {
  1626. try {
  1627. $paper = Paper::query()->where('paper_id', $paperId)->first();
  1628. if (! $paper) {
  1629. Log::warning('ExamPdfExportService: 本地渲染知识点讲解失败,试卷不存在', ['paper_id' => $paperId]);
  1630. return null;
  1631. }
  1632. $studentModel = Student::find($paper->student_id);
  1633. $studentName = $studentModel->name ?? ($paper->student_id ?? '________');
  1634. $examCode = PaperNaming::extractExamCode((string) $paper->paper_id);
  1635. try {
  1636. $assembleTypeLabel = PaperNaming::assembleTypeLabel((int) $paper->paper_type);
  1637. } catch (\Throwable $e) {
  1638. $assembleTypeLabel = '未知类型';
  1639. }
  1640. $pdfMeta = [
  1641. 'student_name' => $studentName,
  1642. 'exam_code' => $examCode,
  1643. 'assemble_type_label' => $assembleTypeLabel,
  1644. 'header_title' => $examCode,
  1645. 'exam_pdf_title' => '试卷_'.$examCode,
  1646. 'grading_pdf_title' => '判卷_'.$examCode,
  1647. 'knowledge_pdf_title' => '知识点梳理_'.$examCode,
  1648. ];
  1649. $kpCodes = $paper->explanation_kp_codes ?? [];
  1650. if (empty($kpCodes)) {
  1651. $paperQuestions = \App\Models\PaperQuestion::where('paper_id', $paperId)->get();
  1652. $seen = [];
  1653. $questionBankIds = $paperQuestions
  1654. ->pluck('question_bank_id')
  1655. ->filter()
  1656. ->unique()
  1657. ->values();
  1658. $questionKpMap = [];
  1659. if ($questionBankIds->isNotEmpty()) {
  1660. $questionKpMap = Question::whereIn('id', $questionBankIds)
  1661. ->pluck('kp_code', 'id')
  1662. ->toArray();
  1663. }
  1664. foreach ($paperQuestions as $paperQuestion) {
  1665. $kpCode = trim((string) ($paperQuestion->knowledge_point ?? ''));
  1666. if ($kpCode === '' && ! empty($paperQuestion->question_bank_id)) {
  1667. $kpCode = trim((string) ($questionKpMap[$paperQuestion->question_bank_id] ?? ''));
  1668. }
  1669. if ($kpCode === '' || isset($seen[$kpCode])) {
  1670. continue;
  1671. }
  1672. $seen[$kpCode] = true;
  1673. $kpCodes[] = $kpCode;
  1674. }
  1675. }
  1676. $html = view('pdf.exam-knowledge-explanation', [
  1677. 'paperId' => $paperId,
  1678. 'examCode' => $examCode,
  1679. 'studentName' => $studentName,
  1680. 'generateDateTime' => now()->format('Y年m月d日 H:i:s'),
  1681. 'knowledgePoints' => $this->buildExplanations($kpCodes),
  1682. 'pdfMeta' => $pdfMeta,
  1683. ])->render();
  1684. if (empty(trim($html))) {
  1685. Log::warning('ExamPdfExportService: 本地渲染知识点讲解结果为空', ['paper_id' => $paperId]);
  1686. return null;
  1687. }
  1688. $html = $this->ensureUtf8Html($html);
  1689. return $this->renderKpExplainMarkdown($html);
  1690. } catch (\Throwable $e) {
  1691. Log::warning('ExamPdfExportService: 本地渲染知识点讲解异常', [
  1692. 'paper_id' => $paperId,
  1693. 'error' => $e->getMessage(),
  1694. ]);
  1695. return null;
  1696. }
  1697. }
  1698. private function renderKpExplainMarkdown(string $html): string
  1699. {
  1700. if (! class_exists(\Michelf\MarkdownExtra::class)) {
  1701. return $html;
  1702. }
  1703. $parser = new \Michelf\MarkdownExtra;
  1704. return preg_replace_callback(
  1705. '/<div class="kp-markdown-source"[^>]*>([\s\S]*?)<\/div>\s*<div class="kp-markdown-container[^"]*"[^>]*><\/div>/i',
  1706. function ($matches) use ($parser) {
  1707. $markdown = html_entity_decode(trim($matches[1]), ENT_QUOTES, 'UTF-8');
  1708. $rendered = $parser->transform($markdown);
  1709. return '<div class="kp-markdown-container kp-markdown-content">'.$rendered.'</div>';
  1710. },
  1711. $html
  1712. );
  1713. }
  1714. private function renderExamHtml(string $paperId, bool $includeAnswer, bool $useGradingView): ?string
  1715. {
  1716. // PDF worker 已经运行在 Laravel 进程内,优先直接渲染 Blade,避免 HTTP 自调用吞掉数秒。
  1717. $html = $this->renderExamHtmlFromView($paperId, $includeAnswer, $useGradingView);
  1718. if ($html !== null) {
  1719. return $html;
  1720. }
  1721. try {
  1722. // 兜底:保留原 HTTP 路由渲染路径,避免特殊页面上下文下直接视图失败。
  1723. $routeName = $useGradingView
  1724. ? 'filament.admin.auth.intelligent-exam.grading'
  1725. : 'filament.admin.auth.intelligent-exam.pdf';
  1726. $url = route($routeName, ['paper_id' => $paperId, 'answer' => $includeAnswer ? 'true' : 'false']);
  1727. $response = Http::get($url);
  1728. if ($response->successful()) {
  1729. $html = $response->body();
  1730. if (! empty(trim($html))) {
  1731. return $this->ensureUtf8Html($html);
  1732. }
  1733. }
  1734. Log::warning('ExamPdfExportService: 通过HTTP获取试卷HTML失败,使用备用方案', [
  1735. 'paper_id' => $paperId,
  1736. 'url' => $url,
  1737. ]);
  1738. } catch (\Exception $e) {
  1739. Log::warning('ExamPdfExportService: 通过HTTP获取试卷HTML异常', [
  1740. 'paper_id' => $paperId,
  1741. 'error' => $e->getMessage(),
  1742. ]);
  1743. }
  1744. // 备用方案:直接渲染视图
  1745. return $this->renderExamHtmlFromView($paperId, $includeAnswer, $useGradingView);
  1746. }
  1747. /**
  1748. * 备用方案:直接渲染视图生成试卷HTML
  1749. */
  1750. private function renderExamHtmlFromView(string $paperId, bool $includeAnswer, bool $useGradingView): ?string
  1751. {
  1752. try {
  1753. $paper = Paper::with('questions')->find($paperId);
  1754. if (! $paper) {
  1755. Log::error('ExamPdfExportService: 试卷不存在', ['paper_id' => $paperId]);
  1756. return null;
  1757. }
  1758. if ($paper->questions->isEmpty()) {
  1759. Log::error('ExamPdfExportService: 试卷没有题目数据', [
  1760. 'paper_id' => $paperId,
  1761. 'question_count' => 0,
  1762. ]);
  1763. return null;
  1764. }
  1765. $viewName = $this->resolveExamViewName($useGradingView);
  1766. // 构造视图需要的变量
  1767. $questions = ['choice' => [], 'fill' => [], 'answer' => []];
  1768. foreach ($paper->questions as $pq) {
  1769. $qType = $this->normalizeQuestionType($pq->question_type ?? 'answer');
  1770. $questions[$qType][] = $this->normalizeAnswerFieldForPdf($pq);
  1771. }
  1772. $studentModel = \App\Models\Student::find($paper->student_id);
  1773. $teacherModel = \App\Models\Teacher::find($paper->teacher_id);
  1774. if (! $teacherModel && ! empty($paper->teacher_id)) {
  1775. $teacherModel = \App\Models\Teacher::query()
  1776. ->where('teacher_id', $paper->teacher_id)
  1777. ->first();
  1778. }
  1779. $student = ['name' => $studentModel->name ?? ($paper->student_id ?? '________'), 'grade' => $studentModel->grade ?? '________'];
  1780. $teacher = ['name' => $teacherModel->name ?? ($paper->teacher_id ?? '________')];
  1781. $examCode = PaperNaming::extractExamCode((string) $paper->paper_id);
  1782. try {
  1783. $assembleTypeLabel = PaperNaming::assembleTypeLabel((int) $paper->paper_type);
  1784. } catch (\Throwable $e) {
  1785. $assembleTypeLabel = '未知类型';
  1786. }
  1787. $pdfMeta = [
  1788. 'student_name' => $student['name'],
  1789. 'exam_code' => $examCode,
  1790. 'assemble_type_label' => $assembleTypeLabel,
  1791. 'header_title' => $examCode,
  1792. 'exam_pdf_title' => '试卷_'.$examCode,
  1793. 'grading_pdf_title' => '判卷_'.$examCode,
  1794. 'knowledge_pdf_title' => '知识点梳理_'.$examCode,
  1795. ];
  1796. $html = view($viewName, [
  1797. 'paper' => $paper,
  1798. 'questions' => $questions,
  1799. 'includeAnswer' => $includeAnswer,
  1800. 'student' => $student,
  1801. 'teacher' => $teacher,
  1802. 'pdfMeta' => $pdfMeta,
  1803. ])->render();
  1804. if (empty(trim($html))) {
  1805. Log::error('ExamPdfExportService: 视图渲染结果为空', [
  1806. 'paper_id' => $paperId,
  1807. 'view_name' => $viewName,
  1808. 'question_count' => $paper->questions->count(),
  1809. ]);
  1810. return null;
  1811. }
  1812. return $this->ensureUtf8Html($html);
  1813. } catch (\Exception $e) {
  1814. Log::error('ExamPdfExportService: 备用方案渲染失败', [
  1815. 'paper_id' => $paperId,
  1816. 'error' => $e->getMessage(),
  1817. 'trace' => $e->getTraceAsString(),
  1818. ]);
  1819. return null;
  1820. }
  1821. }
  1822. /**
  1823. * 构建分析数据(重构版)
  1824. * 优先使用本地MySQL数据,减少API依赖
  1825. */
  1826. private function buildAnalysisData(string $paperId, string $studentId): ?array
  1827. {
  1828. // 【关键调试】确认方法被调用
  1829. Log::warning('ExamPdfExportService: buildAnalysisData方法被调用了!', [
  1830. 'paper_id' => $paperId,
  1831. 'student_id' => $studentId,
  1832. 'timestamp' => now()->toISOString(),
  1833. ]);
  1834. $paper = Paper::with(['questions' => function ($query) {
  1835. $query->orderBy('question_number')->orderBy('id');
  1836. }])->find($paperId);
  1837. if (! $paper) {
  1838. Log::warning('ExamPdfExportService: 未找到试卷,将尝试仅基于分析数据生成PDF', [
  1839. 'paper_id' => $paperId,
  1840. 'student_id' => $studentId,
  1841. ]);
  1842. // 【修复】即使试卷不存在,也尝试基于分析数据生成PDF
  1843. $paper = new \stdClass;
  1844. $paper->paper_id = $paperId;
  1845. $paper->paper_name = "学情分析报告_{$studentId}_{$paperId}";
  1846. $paper->question_count = 0;
  1847. $paper->total_score = 0;
  1848. $paper->created_at = now();
  1849. $paper->questions = collect();
  1850. }
  1851. $student = Student::find($studentId);
  1852. $studentInfo = [
  1853. 'id' => $student?->student_id ?? $studentId,
  1854. 'name' => $student?->name ?? $studentId,
  1855. 'grade' => $student?->grade ?? '未知年级',
  1856. 'class' => $student?->class_name ?? '未知班级',
  1857. ];
  1858. $teacherInfo = $this->getTeacherInfo((string) ($paper->teacher_id ?? ''));
  1859. $assembleType = ($paper->paper_type === null || $paper->paper_type === '')
  1860. ? null
  1861. : (int) $paper->paper_type;
  1862. try {
  1863. $assembleTypeLabel = $assembleType !== null ? PaperNaming::assembleTypeLabel($assembleType) : '未知类型';
  1864. } catch (\Throwable $e) {
  1865. $assembleTypeLabel = '未知类型';
  1866. }
  1867. // 【修改】直接从本地数据库获取分析数据(不再调用API)
  1868. $analysisData = [];
  1869. // 首先尝试从paper->analysis_id获取
  1870. if (! empty($paper->analysis_id)) {
  1871. Log::info('ExamPdfExportService: 从本地数据库获取试卷分析数据', [
  1872. 'paper_id' => $paperId,
  1873. 'student_id' => $studentId,
  1874. 'analysis_id' => $paper->analysis_id,
  1875. ]);
  1876. $analysisRecord = \DB::table('exam_analysis_results')
  1877. ->where('id', $paper->analysis_id)
  1878. ->where('student_id', $studentId)
  1879. ->first();
  1880. if ($analysisRecord && ! empty($analysisRecord->analysis_data)) {
  1881. $analysisData = json_decode($analysisRecord->analysis_data, true);
  1882. Log::info('ExamPdfExportService: 成功获取本地分析数据(通过analysis_id)', [
  1883. 'data_size' => strlen($analysisRecord->analysis_data),
  1884. ]);
  1885. } else {
  1886. Log::warning('ExamPdfExportService: 未找到本地分析数据,将尝试其他方式', [
  1887. 'paper_id' => $paperId,
  1888. 'student_id' => $studentId,
  1889. 'analysis_id' => $paper->analysis_id,
  1890. ]);
  1891. }
  1892. }
  1893. // 如果没有analysis_id或未找到数据,直接从exam_analysis_results表查询
  1894. if (empty($analysisData)) {
  1895. Log::info('ExamPdfExportService: 直接从exam_analysis_results表查询分析数据', [
  1896. 'paper_id' => $paperId,
  1897. 'student_id' => $studentId,
  1898. ]);
  1899. $analysisRecord = \DB::table('exam_analysis_results')
  1900. ->where('paper_id', $paperId)
  1901. ->where('student_id', $studentId)
  1902. ->orderByDesc('created_at')
  1903. ->first();
  1904. if ($analysisRecord && ! empty($analysisRecord->analysis_data)) {
  1905. $analysisData = json_decode($analysisRecord->analysis_data, true);
  1906. Log::info('ExamPdfExportService: 成功获取本地分析数据(直接查询)', [
  1907. 'data_size' => strlen($analysisRecord->analysis_data),
  1908. 'question_count' => count($analysisData['question_analysis'] ?? []),
  1909. ]);
  1910. } else {
  1911. Log::warning('ExamPdfExportService: 未找到任何分析数据,将使用空数据', [
  1912. 'paper_id' => $paperId,
  1913. 'student_id' => $studentId,
  1914. ]);
  1915. }
  1916. }
  1917. // 【修复】优先使用analysisData中的knowledge_point_analysis数据
  1918. $masteryData = [];
  1919. $parentMasteryLevels = []; // 新增:父节点掌握度数据
  1920. Log::info('ExamPdfExportService: 开始处理掌握度数据', [
  1921. 'student_id' => $studentId,
  1922. 'analysisData_keys' => array_keys($analysisData),
  1923. 'has_knowledge_point_analysis' => ! empty($analysisData['knowledge_point_analysis']),
  1924. ]);
  1925. $fullMasteryMap = [];
  1926. $snapshotMasteryData = [];
  1927. $snapshotCurrentMasteryMap = [];
  1928. if (! empty($analysisData['knowledge_point_analysis'])) {
  1929. // 将knowledge_point_analysis转换为buildMasterySummary期望的格式
  1930. foreach ($analysisData['knowledge_point_analysis'] as $kp) {
  1931. $masteryData[] = [
  1932. 'kp_code' => $kp['kp_id'] ?? null,
  1933. 'kp_name' => $kp['kp_id'] ?? '未知知识点',
  1934. 'mastery_level' => $kp['mastery_level'] ?? 0,
  1935. 'mastery_change' => $kp['change'] ?? null,
  1936. ];
  1937. }
  1938. // 【修复】基于所有兄弟节点历史数据计算父节点掌握度,并获取掌握度变化
  1939. try {
  1940. // 获取本次考试涉及的知识点代码列表
  1941. $examKpCodes = array_column($masteryData, 'kp_code');
  1942. Log::info('ExamPdfExportService: 本次考试涉及的知识点', [
  1943. 'count' => count($examKpCodes),
  1944. 'kp_codes' => $examKpCodes,
  1945. ]);
  1946. // 获取最新快照的数据(mastery_data 内已包含 current_mastery 和 previous_mastery)
  1947. $lastSnapshot = DB::connection('mysql')
  1948. ->table('knowledge_point_mastery_snapshots')
  1949. ->where('student_id', $studentId)
  1950. ->where('paper_id', $paper->paper_id)
  1951. ->latest('snapshot_time')
  1952. ->first();
  1953. $previousMasteryData = [];
  1954. $snapshotMasteryData = [];
  1955. if ($lastSnapshot) {
  1956. $currentMasteryJson = json_decode((string) ($lastSnapshot->current_mastery ?? ''), true);
  1957. if (is_array($currentMasteryJson)) {
  1958. foreach ($currentMasteryJson as $kpCode => $level) {
  1959. $code = trim((string) $kpCode);
  1960. if ($code !== '' && is_numeric($level)) {
  1961. $snapshotCurrentMasteryMap[$code] = floatval($level);
  1962. }
  1963. }
  1964. }
  1965. $previousMasteryJson = json_decode($lastSnapshot->mastery_data, true);
  1966. if (is_array($previousMasteryJson)) {
  1967. foreach ($previousMasteryJson as $kpCode => $data) {
  1968. if (! is_array($data)) {
  1969. continue;
  1970. }
  1971. $snapshotMasteryData[$kpCode] = [
  1972. 'current_mastery' => isset($data['current_mastery']) ? floatval($data['current_mastery']) : null,
  1973. 'previous_mastery' => isset($data['previous_mastery']) ? floatval($data['previous_mastery']) : null,
  1974. 'change' => isset($data['change']) ? floatval($data['change']) : null,
  1975. ];
  1976. $code = trim((string) $kpCode);
  1977. if (
  1978. $code !== ''
  1979. && ! array_key_exists($code, $snapshotCurrentMasteryMap)
  1980. && isset($data['current_mastery'])
  1981. && is_numeric($data['current_mastery'])
  1982. ) {
  1983. $snapshotCurrentMasteryMap[$code] = floatval($data['current_mastery']);
  1984. }
  1985. $previousMasteryData[$kpCode] = [
  1986. 'current_mastery' => $data['current_mastery'] ?? 0,
  1987. 'previous_mastery' => $data['previous_mastery'] ?? null,
  1988. ];
  1989. }
  1990. }
  1991. Log::info('ExamPdfExportService: 获取到上一次快照数据', [
  1992. 'snapshot_time' => $lastSnapshot->snapshot_time,
  1993. 'kp_count' => count($previousMasteryData),
  1994. 'current_mastery_count' => count($snapshotCurrentMasteryMap),
  1995. ]);
  1996. }
  1997. // 为当前知识点添加变化数据
  1998. foreach ($masteryData as &$item) {
  1999. $kpCode = $item['kp_code'];
  2000. if (isset($previousMasteryData[$kpCode]) && $previousMasteryData[$kpCode]['previous_mastery'] !== null) {
  2001. $previous = floatval($previousMasteryData[$kpCode]['previous_mastery']);
  2002. $current = floatval($item['mastery_level']);
  2003. $item['mastery_change'] = $current - $previous;
  2004. }
  2005. }
  2006. unset($item); // 解除引用
  2007. // 获取所有父节点掌握度
  2008. $masteryOverview = $this->masteryCalculator->getStudentMasteryOverviewWithHierarchy($studentId);
  2009. $allParentMasteryLevels = $masteryOverview['parent_mastery_levels'] ?? [];
  2010. $overviewDetails = $masteryOverview['details'] ?? [];
  2011. foreach ($overviewDetails as $detail) {
  2012. if (is_object($detail)) {
  2013. $code = $detail->kp_code ?? null;
  2014. if ($code) {
  2015. $fullMasteryMap[$code] = floatval($detail->mastery_level ?? 0);
  2016. }
  2017. } elseif (is_array($detail)) {
  2018. $code = $detail['kp_code'] ?? null;
  2019. if ($code) {
  2020. $fullMasteryMap[$code] = floatval($detail['mastery_level'] ?? 0);
  2021. }
  2022. }
  2023. }
  2024. // 计算与本次考试相关的父节点掌握度(基于所有兄弟节点)
  2025. $parentMasteryLevels = [];
  2026. // 【修复】使用数据库查询正确匹配父子关系,而不是字符串前缀
  2027. foreach ($allParentMasteryLevels as $parentKpCode => $parentMastery) {
  2028. // 查询这个父节点的所有子节点
  2029. $childNodes = DB::connection('mysql')
  2030. ->table('knowledge_points')
  2031. ->where('parent_kp_code', $parentKpCode)
  2032. ->pluck('kp_code')
  2033. ->toArray();
  2034. // 检查是否有子节点在本次考试中出现
  2035. $relevantChildren = array_intersect($examKpCodes, $childNodes);
  2036. if (! empty($relevantChildren)) {
  2037. // 口径统一:父节点掌握度 = 全部直接子节点(含未命中,缺失按0)均值
  2038. $childCurrentLevels = [];
  2039. $childPreviousLevels = [];
  2040. foreach ($childNodes as $childKpCode) {
  2041. $currentChild = floatval($fullMasteryMap[$childKpCode] ?? 0);
  2042. $childCurrentLevels[] = $currentChild;
  2043. $prevFromSnapshot = $snapshotMasteryData[$childKpCode]['previous_mastery'] ?? null;
  2044. $currFromSnapshot = $snapshotMasteryData[$childKpCode]['current_mastery'] ?? null;
  2045. $previousChild = $prevFromSnapshot ?? $currFromSnapshot ?? $currentChild;
  2046. $childPreviousLevels[] = floatval($previousChild);
  2047. }
  2048. $finalParentMastery = ! empty($childCurrentLevels)
  2049. ? array_sum($childCurrentLevels) / count($childCurrentLevels)
  2050. : floatval($parentMastery);
  2051. $previousParentMastery = ! empty($childPreviousLevels)
  2052. ? array_sum($childPreviousLevels) / count($childPreviousLevels)
  2053. : $finalParentMastery;
  2054. $finalParentChange = $finalParentMastery - $previousParentMastery;
  2055. // 获取父节点中文名称
  2056. $parentKpInfo = DB::connection('mysql')
  2057. ->table('knowledge_points')
  2058. ->where('kp_code', $parentKpCode)
  2059. ->first();
  2060. $parentMasteryLevels[$parentKpCode] = [
  2061. 'kp_code' => $parentKpCode,
  2062. 'kp_name' => $parentKpInfo->name ?? $parentKpCode,
  2063. 'mastery_level' => $finalParentMastery,
  2064. 'mastery_percentage' => round($finalParentMastery * 100, 1),
  2065. 'mastery_change' => $finalParentChange,
  2066. 'change_source' => 'children_all_average',
  2067. 'children' => $relevantChildren,
  2068. ];
  2069. }
  2070. }
  2071. Log::info('ExamPdfExportService: 过滤后的父节点掌握度', [
  2072. 'all_parent_count' => count($allParentMasteryLevels),
  2073. 'filtered_parent_count' => count($parentMasteryLevels),
  2074. 'filtered_codes' => array_keys($parentMasteryLevels),
  2075. ]);
  2076. } catch (\Exception $e) {
  2077. Log::warning('ExamPdfExportService: 获取父节点掌握度失败', [
  2078. 'error' => $e->getMessage(),
  2079. ]);
  2080. }
  2081. Log::info('ExamPdfExportService: 使用analysisData中的掌握度数据', [
  2082. 'count' => count($masteryData),
  2083. 'masteryData_sample' => ! empty($masteryData) ? array_slice($masteryData, 0, 2) : [],
  2084. ]);
  2085. } else {
  2086. // 如果没有knowledge_point_analysis,使用MasteryCalculator获取多层级掌握度概览
  2087. try {
  2088. Log::info('ExamPdfExportService: 获取学生多层级掌握度概览', [
  2089. 'student_id' => $studentId,
  2090. ]);
  2091. $masteryOverview = $this->masteryCalculator->getStudentMasteryOverviewWithHierarchy($studentId);
  2092. $masteryData = $masteryOverview['details'] ?? [];
  2093. $parentMasteryLevels = $masteryOverview['parent_mastery_levels'] ?? []; // 获取父节点掌握度
  2094. // 【修复】将对象数组转换为关联数组(避免 stdClass 对象访问错误)
  2095. if (! empty($masteryData) && is_array($masteryData)) {
  2096. $masteryData = array_map(function ($item) {
  2097. if (is_object($item)) {
  2098. $kpCode = $item->kp_code ?? null;
  2099. return [
  2100. 'kp_code' => $kpCode,
  2101. 'kp_name' => $item->kp_name ?? null,
  2102. 'mastery_level' => floatval($item->mastery_level ?? 0),
  2103. 'mastery_change' => $item->mastery_change !== null ? floatval($item->mastery_change) : null,
  2104. ];
  2105. }
  2106. return $item;
  2107. }, $masteryData);
  2108. }
  2109. foreach ($masteryData as $m) {
  2110. $code = $m['kp_code'] ?? null;
  2111. if ($code) {
  2112. $fullMasteryMap[$code] = floatval($m['mastery_level'] ?? 0);
  2113. }
  2114. }
  2115. // 【修复】获取快照数据以计算掌握度变化
  2116. $lastSnapshot = DB::connection('mysql')
  2117. ->table('knowledge_point_mastery_snapshots')
  2118. ->where('student_id', $studentId)
  2119. ->latest('snapshot_time')
  2120. ->first();
  2121. if ($lastSnapshot) {
  2122. $currentMasteryJson = json_decode((string) ($lastSnapshot->current_mastery ?? ''), true);
  2123. if (is_array($currentMasteryJson)) {
  2124. foreach ($currentMasteryJson as $kpCode => $level) {
  2125. $code = trim((string) $kpCode);
  2126. if ($code !== '' && is_numeric($level)) {
  2127. $snapshotCurrentMasteryMap[$code] = floatval($level);
  2128. }
  2129. }
  2130. }
  2131. $previousMasteryJson = json_decode($lastSnapshot->mastery_data, true);
  2132. if (is_array($previousMasteryJson)) {
  2133. foreach ($masteryData as &$item) {
  2134. $kpCode = $item['kp_code'];
  2135. if (isset($previousMasteryJson[$kpCode]) && is_array($previousMasteryJson[$kpCode])) {
  2136. $snapshotNode = $previousMasteryJson[$kpCode];
  2137. $code = trim((string) $kpCode);
  2138. if (
  2139. $code !== ''
  2140. && ! array_key_exists($code, $snapshotCurrentMasteryMap)
  2141. && isset($snapshotNode['current_mastery'])
  2142. && is_numeric($snapshotNode['current_mastery'])
  2143. ) {
  2144. $snapshotCurrentMasteryMap[$code] = floatval($snapshotNode['current_mastery']);
  2145. }
  2146. $previous = floatval($previousMasteryJson[$kpCode]['previous_mastery'] ?? 0);
  2147. $current = floatval($item['mastery_level']);
  2148. $item['mastery_change'] = $current - $previous;
  2149. }
  2150. }
  2151. unset($item);
  2152. }
  2153. }
  2154. Log::info('ExamPdfExportService: 成功获取多层级掌握度数据', [
  2155. 'count' => count($masteryData),
  2156. 'parent_count' => count($parentMasteryLevels),
  2157. ]);
  2158. } catch (\Exception $e) {
  2159. Log::error('ExamPdfExportService: 获取掌握度数据失败', [
  2160. 'student_id' => $studentId,
  2161. 'error' => $e->getMessage(),
  2162. ]);
  2163. }
  2164. }
  2165. // 【修改】使用本地方法获取学习路径推荐(替代API调用)
  2166. $recommendations = [];
  2167. try {
  2168. Log::info('ExamPdfExportService: 获取学习路径推荐', [
  2169. 'student_id' => $studentId,
  2170. ]);
  2171. $learningPaths = $this->learningAnalyticsService->recommendLearningPaths($studentId, 3);
  2172. $recommendations = $learningPaths['recommendations'] ?? [];
  2173. Log::info('ExamPdfExportService: 成功获取学习路径推荐', [
  2174. 'count' => count($recommendations),
  2175. ]);
  2176. } catch (\Exception $e) {
  2177. Log::error('ExamPdfExportService: 获取学习路径推荐失败', [
  2178. 'student_id' => $studentId,
  2179. 'error' => $e->getMessage(),
  2180. ]);
  2181. }
  2182. // 获取知识点名称映射
  2183. $kpNameMap = $this->buildKnowledgePointNameMap();
  2184. Log::info('ExamPdfExportService: 获取知识点名称映射', [
  2185. 'kpNameMap_count' => count($kpNameMap),
  2186. 'kpNameMap_keys_sample' => ! empty($kpNameMap) ? array_slice(array_keys($kpNameMap), 0, 5) : [],
  2187. ]);
  2188. // 【修复】直接从MySQL数据库获取题目详情(不通过API)
  2189. // 只有当 $paper 是 Paper 模型时才查询题目详情
  2190. $questionDetails = ($paper instanceof \App\Models\Paper)
  2191. ? $this->getQuestionDetailsFromMySQL($paper)
  2192. : [];
  2193. // 处理题目数据
  2194. $questions = $this->processQuestionsForReport($paper, $questionDetails, $kpNameMap);
  2195. // 【关键调试】查看buildMasterySummary的返回结果
  2196. $masterySummary = $this->buildMasterySummary($masteryData, $kpNameMap);
  2197. Log::info('ExamPdfExportService: buildMasterySummary返回结果', [
  2198. 'masteryData_count' => count($masteryData),
  2199. 'kpNameMap_count' => count($kpNameMap),
  2200. 'masterySummary_keys' => array_keys($masterySummary),
  2201. 'masterySummary_items_count' => count($masterySummary['items'] ?? []),
  2202. 'masterySummary_items_sample' => ! empty($masterySummary['items']) ? array_slice($masterySummary['items'], 0, 2) : [],
  2203. ]);
  2204. // 构建当前学生掌握度映射,供父子影响分析展示使用
  2205. // 与 PC 端保持一致:优先使用当前报告/学案对应快照的 current_mastery。
  2206. $masteryMap = !empty($snapshotCurrentMasteryMap)
  2207. ? $snapshotCurrentMasteryMap
  2208. : (!empty($fullMasteryMap) ? $fullMasteryMap : []);
  2209. if (empty($masteryMap)) {
  2210. foreach ($masteryData as $m) {
  2211. $code = $m['kp_code'] ?? null;
  2212. if ($code) {
  2213. $masteryMap[$code] = floatval($m['mastery_level'] ?? 0);
  2214. }
  2215. }
  2216. }
  2217. // 本卷命中知识点:严格按“这套卷子题目关联知识点”计算
  2218. $examQuestionKpCodes = array_values(array_unique(array_filter(array_map(
  2219. fn ($q) => trim((string) ($q['knowledge_point'] ?? '')),
  2220. $questions
  2221. ))));
  2222. // 父节点列表:直接按“本卷命中子知识点”反查父节点,避免历史全集/补齐口径带偏
  2223. $processedParentMastery = $this->buildParentMasteryFromHitCodes(
  2224. $examQuestionKpCodes,
  2225. $kpNameMap,
  2226. $masteryMap,
  2227. $snapshotMasteryData
  2228. );
  2229. Log::info('ExamPdfExportService: 处理后的父节点掌握度', [
  2230. 'raw_count' => count($parentMasteryLevels),
  2231. 'processed_count' => count($processedParentMastery),
  2232. 'processed_sample' => ! empty($processedParentMastery) ? array_slice($processedParentMastery, 0, 3) : [],
  2233. ]);
  2234. return [
  2235. 'paper' => [
  2236. 'id' => $paper->paper_id,
  2237. 'name' => $paper->paper_name,
  2238. 'paper_type' => $paper->paper_type,
  2239. 'difficulty_category' => $paper->difficulty_category,
  2240. 'assemble_type_label' => $assembleTypeLabel,
  2241. 'total_questions' => $paper->question_count,
  2242. 'total_score' => $paper->total_score,
  2243. 'created_at' => $paper->created_at,
  2244. ],
  2245. 'student' => $studentInfo,
  2246. 'teacher' => $teacherInfo,
  2247. 'questions' => $questions,
  2248. 'mastery' => $masterySummary,
  2249. 'exam_hit_kp_codes' => $examQuestionKpCodes,
  2250. 'parent_mastery_levels' => $processedParentMastery, // 【修复】使用处理后的父节点数据
  2251. 'insights' => $analysisData['question_analysis'] ?? [], // 使用question_analysis替代question_results
  2252. 'recommendations' => $recommendations,
  2253. 'analysis_data' => $analysisData,
  2254. 'mastery_map' => $masteryMap,
  2255. ];
  2256. }
  2257. /**
  2258. * 【修复】直接从PaperQuestion表获取题目详情(不通过API)
  2259. */
  2260. private function getQuestionDetailsFromMySQL(Paper $paper): array
  2261. {
  2262. $details = [];
  2263. Log::info('ExamPdfExportService: 从PaperQuestion表查询题目详情', [
  2264. 'paper_id' => $paper->paper_id,
  2265. 'question_count' => $paper->questions->count(),
  2266. ]);
  2267. foreach ($paper->questions as $pq) {
  2268. try {
  2269. // 【关键修复】直接从PaperQuestion对象获取solution和correct_answer
  2270. $detail = [
  2271. 'id' => $pq->question_id,
  2272. 'content' => $pq->question_text,
  2273. 'question_type' => $pq->question_type,
  2274. 'answer' => $pq->correct_answer ?? null, // 【修复】从PaperQuestion获取正确答案
  2275. 'solution' => $pq->solution ?? null, // 【修复】从PaperQuestion获取解题思路
  2276. ];
  2277. $details[(string) ($pq->question_id ?? $pq->id)] = $detail;
  2278. Log::debug('ExamPdfExportService: 成功获取题目详情', [
  2279. 'paper_question_id' => $pq->id,
  2280. 'question_id' => $pq->question_id,
  2281. 'has_answer' => ! empty($pq->correct_answer),
  2282. 'has_solution' => ! empty($pq->solution),
  2283. 'answer_preview' => $pq->correct_answer ? substr($pq->correct_answer, 0, 50) : null,
  2284. ]);
  2285. } catch (\Throwable $e) {
  2286. Log::error('ExamPdfExportService: 获取题目详情失败', [
  2287. 'paper_question_id' => $pq->id,
  2288. 'error' => $e->getMessage(),
  2289. ]);
  2290. }
  2291. }
  2292. return $details;
  2293. }
  2294. /**
  2295. * 将题库 options 转为 [A=>文本, B=>文本, ...],供学情报告展示
  2296. *
  2297. * @param mixed $raw questions.options(JSON/数组)
  2298. * @return array<string, string>
  2299. */
  2300. private function normalizeChoiceOptionsMap($raw): array
  2301. {
  2302. if ($raw === null || $raw === '') {
  2303. return [];
  2304. }
  2305. if (is_string($raw)) {
  2306. $decoded = json_decode($raw, true);
  2307. $raw = is_array($decoded) ? $decoded : [];
  2308. }
  2309. if (! is_array($raw)) {
  2310. return [];
  2311. }
  2312. $out = [];
  2313. foreach ($raw as $k => $v) {
  2314. if (is_string($k) && preg_match('/([A-H])/i', $k, $m)) {
  2315. $letter = strtoupper($m[1]);
  2316. $text = is_array($v)
  2317. ? (string) ($v['content'] ?? $v['text'] ?? $v['value'] ?? '')
  2318. : (string) $v;
  2319. $text = trim($text);
  2320. if ($text !== '') {
  2321. $out[$letter] = $text;
  2322. }
  2323. }
  2324. }
  2325. if (! empty($out)) {
  2326. return $out;
  2327. }
  2328. $letters = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'];
  2329. $i = 0;
  2330. foreach ($raw as $v) {
  2331. if ($i >= count($letters)) {
  2332. break;
  2333. }
  2334. $text = is_array($v)
  2335. ? (string) ($v['content'] ?? $v['text'] ?? $v['value'] ?? '')
  2336. : (string) $v;
  2337. $text = trim($text);
  2338. if ($text !== '') {
  2339. $out[$letters[$i]] = $text;
  2340. }
  2341. $i++;
  2342. }
  2343. return $out;
  2344. }
  2345. /**
  2346. * 从题干 HTML 中解析选项(与 ExamPdfController::extractOptions 口径一致,输出为字母=>文本)
  2347. *
  2348. * @return array<string, string>
  2349. */
  2350. private function extractChoiceOptionsFromStem(string $content): array
  2351. {
  2352. $out = [];
  2353. $contentWithoutSvg = preg_replace('/<svg[^>]*>.*?<\/svg>/is', '[SVG_PLACEHOLDER]', $content);
  2354. $pattern = '/(?:^|\s)([A-H])[\.、:.:]\s*(.+?)(?=(?:^|\s)[A-H][\.、:.:]|$)/su';
  2355. if (preg_match_all($pattern, $contentWithoutSvg, $matches, PREG_SET_ORDER)) {
  2356. foreach ($matches as $match) {
  2357. $letter = strtoupper($match[1]);
  2358. $optionText = trim($match[2]);
  2359. $optionText = preg_replace('/\s+$/', '', $optionText);
  2360. $optionText = preg_replace('/^\$\$\s*/', '', $optionText);
  2361. $optionText = preg_replace('/\s*\$\$$/', '', $optionText);
  2362. if ($optionText !== '') {
  2363. $out[$letter] = $optionText;
  2364. }
  2365. }
  2366. }
  2367. if (empty($out)) {
  2368. $lines = preg_split('/[\r\n]+/', $contentWithoutSvg);
  2369. foreach ($lines as $line) {
  2370. $line = trim($line);
  2371. if (preg_match('/^([A-H])[\.、:.:]\s*(.+)$/u', $line, $match)) {
  2372. $letter = strtoupper($match[1]);
  2373. $optionText = trim($match[2]);
  2374. if ($optionText !== '') {
  2375. $out[$letter] = $optionText;
  2376. }
  2377. }
  2378. }
  2379. }
  2380. return $out;
  2381. }
  2382. /**
  2383. * 处理题目数据(用于报告)
  2384. */
  2385. private function processQuestionsForReport($paper, array $questionDetails, array $kpNameMap): array
  2386. {
  2387. $grouped = [
  2388. 'choice' => [],
  2389. 'fill' => [],
  2390. 'answer' => [],
  2391. ];
  2392. // 【修复】处理空的试卷(questions可能不存在)
  2393. $questions = $paper->questions ?? collect();
  2394. if ($questions->isEmpty()) {
  2395. Log::info('ExamPdfExportService: 试卷没有题目,返回空数组');
  2396. return $grouped;
  2397. }
  2398. $sortedQuestions = $questions
  2399. ->sortBy(function ($q, int $idx) {
  2400. $number = $q->question_number ?? $idx + 1;
  2401. return is_numeric($number) ? (float) $number : ($q->id ?? $idx);
  2402. });
  2403. $bankIds = $sortedQuestions->pluck('question_bank_id')->filter()->unique()->values()->all();
  2404. $optionsByBankId = [];
  2405. if (! empty($bankIds)) {
  2406. $optionsByBankId = Question::whereIn('id', $bankIds)
  2407. ->pluck('options', 'id')
  2408. ->toArray();
  2409. }
  2410. foreach ($sortedQuestions as $idx => $question) {
  2411. $kpCode = $question->knowledge_point ?? '';
  2412. $kpName = $kpNameMap[$kpCode] ?? $kpCode ?: '未标注';
  2413. // 【修复】直接从PaperQuestion对象获取solution和correct_answer
  2414. $answer = $question->correct_answer ?? null; // 直接从PaperQuestion获取
  2415. $solution = $question->solution ?? null; // 直接从PaperQuestion获取
  2416. $detail = $questionDetails[(string) ($question->question_id ?? $question->id)] ?? [];
  2417. $typeRaw = $question->question_type ?? ($detail['question_type'] ?? $detail['type'] ?? '');
  2418. $normalizedType = $this->normalizeQuestionType($typeRaw);
  2419. $number = $question->question_number ?? ($idx + 1);
  2420. // 处理题干文本
  2421. $questionText = is_array($question->question_text)
  2422. ? json_encode($question->question_text, JSON_UNESCAPED_UNICODE)
  2423. : ($question->question_text ?? '');
  2424. $optionsFromBank = $question->question_bank_id
  2425. ? ($optionsByBankId[$question->question_bank_id] ?? null)
  2426. : null;
  2427. $choiceOptionsMap = $this->normalizeChoiceOptionsMap($optionsFromBank);
  2428. if (empty($choiceOptionsMap) && $normalizedType === 'choice') {
  2429. $choiceOptionsMap = $this->extractChoiceOptionsFromStem((string) $questionText);
  2430. }
  2431. $questionTextForPayload = $this->formatNewlines($questionText);
  2432. $questionTextPreprocessed = false;
  2433. if ($normalizedType === 'choice') {
  2434. $questionTextForPayload = GradingStyleQuestionStem::buildChoiceStemForReport(
  2435. (string) $questionTextForPayload
  2436. );
  2437. $questionTextPreprocessed = true;
  2438. }
  2439. $payload = [
  2440. 'question_id' => $question->question_id ?? null,
  2441. 'question_bank_id' => $question->question_bank_id ?? $question->question_id ?? null,
  2442. 'question_number' => $number,
  2443. 'question_text' => $questionTextForPayload,
  2444. 'question_text_preprocessed' => $questionTextPreprocessed,
  2445. 'question_type' => $normalizedType,
  2446. 'knowledge_point' => $kpCode,
  2447. 'knowledge_point_name' => $kpName,
  2448. 'difficulty' => isset($question->difficulty) ? (float) $question->difficulty : null,
  2449. 'score' => $question->score,
  2450. 'answer' => $this->formatNewlines($answer), // 格式化换行
  2451. 'solution' => $this->formatNewlines($solution), // 格式化换行
  2452. 'student_answer' => $this->formatNewlines($question->student_answer ?? null), // 格式化换行
  2453. 'correct_answer' => $this->formatNewlines($answer), // 格式化换行
  2454. 'is_correct' => $question->is_correct ?? null,
  2455. 'score_obtained' => $question->score_obtained ?? null,
  2456. 'options' => $choiceOptionsMap,
  2457. ];
  2458. $grouped[$normalizedType][] = $payload;
  2459. // 【调试】记录题目数据
  2460. Log::debug('ExamPdfExportService: 处理题目数据', [
  2461. 'paper_question_id' => $question->id,
  2462. 'question_id' => $question->question_id,
  2463. 'has_answer' => ! empty($answer),
  2464. 'has_solution' => ! empty($solution),
  2465. 'answer_preview' => $answer ? substr($answer, 0, 50) : null,
  2466. ]);
  2467. }
  2468. $ordered = array_merge($grouped['choice'], $grouped['fill'], $grouped['answer']);
  2469. // 按卷面顺序重新编号
  2470. foreach ($ordered as $i => &$q) {
  2471. $q['display_number'] = $i + 1;
  2472. }
  2473. unset($q);
  2474. return $ordered;
  2475. }
  2476. /**
  2477. * 构建PDF
  2478. */
  2479. private function buildPdf(string $html, bool $applyWideImageSizing = false, bool $scopeToExamPart = false): ?string
  2480. {
  2481. $tmpHtml = tempnam(sys_get_temp_dir(), 'exam_html_').'.html';
  2482. $utf8Html = $this->ensureUtf8Html($html);
  2483. if ($applyWideImageSizing) {
  2484. $utf8Html = $scopeToExamPart
  2485. ? $this->applyAdaptiveWideImageSizingToExamPart($utf8Html)
  2486. : $this->applyAdaptiveWideImageSizing($utf8Html);
  2487. }
  2488. $written = file_put_contents($tmpHtml, $utf8Html);
  2489. Log::debug('ExamPdfExportService: HTML文件已创建', [
  2490. 'path' => $tmpHtml,
  2491. 'html_length' => strlen($utf8Html),
  2492. 'written_bytes' => $written,
  2493. ]);
  2494. // 【调试】如果启用了HTML保存调试,复制HTML到storage用于分析
  2495. if (config('pdf.debug_save_html', false)) {
  2496. $debugPath = storage_path('app/debug_pdf_'.date('YmdHis').'.html');
  2497. @copy($tmpHtml, $debugPath);
  2498. Log::warning('ExamPdfExportService: [DEBUG] HTML副本已保存', ['path' => $debugPath]);
  2499. }
  2500. // 仅使用Chrome渲染
  2501. $chromePdf = $this->renderWithChrome($tmpHtml);
  2502. @unlink($tmpHtml);
  2503. return $chromePdf;
  2504. }
  2505. /**
  2506. * 对扁长/超扁长图片做全局自适应放大,普通图片不处理。
  2507. */
  2508. private function applyAdaptiveWideImageSizing(string $html): string
  2509. {
  2510. return (string) preg_replace_callback(
  2511. '/<img\b[^>]*\bsrc=(["\'])([^"\']+)\1[^>]*>/i',
  2512. function (array $m): string {
  2513. $fullTag = $m[0] ?? '';
  2514. $src = $m[2] ?? '';
  2515. if ($fullTag === '' || $src === '' || str_starts_with($src, 'data:')) {
  2516. return $fullTag;
  2517. }
  2518. // 选项区图片使用独立规则,不参与全局宽图放大,避免 4 列选项被撑出边界
  2519. if (stripos($fullTag, 'data-option-image="1"') !== false || stripos($fullTag, "data-option-image='1'") !== false) {
  2520. return $fullTag;
  2521. }
  2522. if (! $this->shouldApplyAdaptiveSizingToSrc($src)) {
  2523. return $fullTag;
  2524. }
  2525. $dim = $this->getPdfImageDimensions($src);
  2526. if (! $dim || ($dim['w'] ?? 0) <= 0 || ($dim['h'] ?? 0) <= 0) {
  2527. return $fullTag;
  2528. }
  2529. $ratio = $dim['w'] / max(1, $dim['h']);
  2530. if ($ratio < 2.8) {
  2531. return $fullTag;
  2532. }
  2533. $targetWidth = $ratio >= 3.5 ? self::PDF_IMAGE_WIDTH_VERY_WIDE_PX : self::PDF_IMAGE_WIDTH_WIDE_PX;
  2534. $targetWidth = min($targetWidth, $dim['w']);
  2535. $targetStyle = sprintf(
  2536. 'width:%dpx!important;max-width:%dpx!important;max-height:60mm!important;height:auto!important;object-fit:contain!important;',
  2537. $targetWidth,
  2538. $targetWidth
  2539. );
  2540. if (preg_match('/\sstyle=(["\'])(.*?)\1/i', $fullTag, $sm)) {
  2541. $originStyle = $sm[2] ?? '';
  2542. $originStyle = preg_replace('/\bmax-width\s*:[^;]+;?/i', '', $originStyle);
  2543. $originStyle = preg_replace('/\bmax-height\s*:[^;]+;?/i', '', $originStyle);
  2544. $originStyle = preg_replace('/\bwidth\s*:[^;]+;?/i', '', $originStyle);
  2545. $originStyle = preg_replace('/\bheight\s*:[^;]+;?/i', '', $originStyle);
  2546. $originStyle = preg_replace('/\bobject-fit\s*:[^;]+;?/i', '', $originStyle);
  2547. $newStyle = $targetStyle.trim((string) $originStyle);
  2548. return preg_replace(
  2549. '/\sstyle=(["\'])(.*?)\1/i',
  2550. ' style="'.$newStyle.'"',
  2551. $fullTag,
  2552. 1
  2553. ) ?? $fullTag;
  2554. }
  2555. return preg_replace('/<img\b/i', '<img style="'.$targetStyle.'"', $fullTag, 1) ?? $fullTag;
  2556. },
  2557. $html
  2558. );
  2559. }
  2560. /**
  2561. * 仅在 unified HTML 的试卷容器中应用扁图策略,避免影响判卷/知识点讲解部分。
  2562. */
  2563. private function applyAdaptiveWideImageSizingToExamPart(string $html): string
  2564. {
  2565. $startMarker = '<!-- EXAM_PART_START -->';
  2566. $endMarker = '<!-- EXAM_PART_END -->';
  2567. $startPos = strpos($html, $startMarker);
  2568. $endPos = strpos($html, $endMarker);
  2569. if ($startPos === false || $endPos === false || $endPos <= $startPos) {
  2570. return $html;
  2571. }
  2572. $contentStart = $startPos + strlen($startMarker);
  2573. $examContent = substr($html, $contentStart, $endPos - $contentStart);
  2574. if ($examContent === false || $examContent === '') {
  2575. return $html;
  2576. }
  2577. $processedExamContent = $this->applyAdaptiveWideImageSizing($examContent);
  2578. return substr($html, 0, $contentStart).$processedExamContent.substr($html, $endPos);
  2579. }
  2580. /**
  2581. * @return array{w:int,h:int}|null
  2582. */
  2583. private function getPdfImageDimensions(string $src): ?array
  2584. {
  2585. if (array_key_exists($src, $this->pdfImageDimensionCache)) {
  2586. return $this->pdfImageDimensionCache[$src];
  2587. }
  2588. try {
  2589. $persisted = $this->getPersistedPdfImageMetrics($src);
  2590. if ($persisted !== null) {
  2591. $this->pdfImageDimensionCache[$src] = $persisted;
  2592. return $persisted;
  2593. }
  2594. if (! str_starts_with($src, 'http://') && ! str_starts_with($src, 'https://')) {
  2595. $this->pdfImageDimensionCache[$src] = null;
  2596. return null;
  2597. }
  2598. $socketTimeoutBackup = null;
  2599. $imageProbeTimeout = max(1, (int) config('pdf.image_probe_timeout_seconds', 2));
  2600. if (str_starts_with($src, 'http://') || str_starts_with($src, 'https://')) {
  2601. // 远程图片探测加硬超时,避免首次命中慢图源拖慢整份 PDF 生成。
  2602. $socketTimeoutBackup = ini_get('default_socket_timeout');
  2603. @ini_set('default_socket_timeout', (string) $imageProbeTimeout);
  2604. }
  2605. $size = @getimagesize($src);
  2606. if ($socketTimeoutBackup !== null && $socketTimeoutBackup !== false) {
  2607. @ini_set('default_socket_timeout', (string) $socketTimeoutBackup);
  2608. }
  2609. if (is_array($size) && count($size) >= 2) {
  2610. $data = ['w' => (int) $size[0], 'h' => (int) $size[1]];
  2611. $this->persistPdfImageMetrics($src, $data);
  2612. $this->pdfImageDimensionCache[$src] = $data;
  2613. return $data;
  2614. }
  2615. $this->pdfImageDimensionCache[$src] = null;
  2616. return null;
  2617. } catch (\Throwable $e) {
  2618. Log::debug('ExamPdfExportService: 图片尺寸探测失败', ['src' => $src, 'error' => $e->getMessage()]);
  2619. $this->pdfImageDimensionCache[$src] = null;
  2620. return null;
  2621. }
  2622. }
  2623. /**
  2624. * @return array{w:int,h:int}|null
  2625. */
  2626. private function getPersistedPdfImageMetrics(string $src): ?array
  2627. {
  2628. if (! $this->isPdfImageMetricsTableReady()) {
  2629. return null;
  2630. }
  2631. $row = DB::table('pdf_image_metrics')
  2632. ->where('src', $src)
  2633. ->first(['width', 'height']);
  2634. if (! $row) {
  2635. return null;
  2636. }
  2637. $w = (int) ($row->width ?? 0);
  2638. $h = (int) ($row->height ?? 0);
  2639. if ($w <= 0 || $h <= 0) {
  2640. return null;
  2641. }
  2642. return ['w' => $w, 'h' => $h];
  2643. }
  2644. /**
  2645. * @param array{w:int,h:int} $data
  2646. */
  2647. private function persistPdfImageMetrics(string $src, array $data): void
  2648. {
  2649. if (! $this->isPdfImageMetricsTableReady()) {
  2650. return;
  2651. }
  2652. $w = (int) ($data['w'] ?? 0);
  2653. $h = (int) ($data['h'] ?? 0);
  2654. if ($w <= 0 || $h <= 0) {
  2655. return;
  2656. }
  2657. DB::table('pdf_image_metrics')->upsert([
  2658. [
  2659. 'src' => $src,
  2660. 'width' => $w,
  2661. 'height' => $h,
  2662. 'ratio' => round($w / max(1, $h), 4),
  2663. 'updated_at' => now(),
  2664. 'created_at' => now(),
  2665. ],
  2666. ], ['src'], ['width', 'height', 'ratio', 'updated_at']);
  2667. }
  2668. private function isPdfImageMetricsTableReady(): bool
  2669. {
  2670. if ($this->hasPdfImageMetricsTable !== null) {
  2671. return $this->hasPdfImageMetricsTable;
  2672. }
  2673. $this->hasPdfImageMetricsTable = Schema::hasTable('pdf_image_metrics');
  2674. return $this->hasPdfImageMetricsTable;
  2675. }
  2676. private function shouldApplyAdaptiveSizingToSrc(string $src): bool
  2677. {
  2678. $parts = parse_url($src);
  2679. if (! is_array($parts)) {
  2680. return false;
  2681. }
  2682. $host = strtolower((string) ($parts['host'] ?? ''));
  2683. $path = (string) ($parts['path'] ?? '');
  2684. if ($host !== 'file.chunsunqiuzhu.com') {
  2685. return false;
  2686. }
  2687. if (! str_contains($path, '/data/')) {
  2688. return false;
  2689. }
  2690. return (bool) preg_match('/\.(png|jpe?g|webp)$/i', $path);
  2691. }
  2692. /**
  2693. * 使用Chrome渲染PDF
  2694. */
  2695. private function renderWithChrome(string $htmlPath): ?string
  2696. {
  2697. $tmpPdf = tempnam(sys_get_temp_dir(), 'exam_pdf_').'.pdf';
  2698. $userDataDir = sys_get_temp_dir().'/chrome-profile-'.uniqid();
  2699. $chromeBinary = $this->findChromeBinary();
  2700. if (! $chromeBinary) {
  2701. Log::error('ExamPdfExportService: 未找到可用的Chrome/Chromium');
  2702. return null;
  2703. }
  2704. // 设置运行时目录
  2705. $runtimeHome = sys_get_temp_dir().'/chrome-home';
  2706. $runtimeXdg = sys_get_temp_dir().'/chrome-xdg';
  2707. if (! File::exists($runtimeHome)) {
  2708. @File::makeDirectory($runtimeHome, 0755, true);
  2709. }
  2710. if (! File::exists($runtimeXdg)) {
  2711. @File::makeDirectory($runtimeXdg, 0755, true);
  2712. }
  2713. $process = new Process([
  2714. $chromeBinary,
  2715. '--headless=new', // 【优化】使用新渲染引擎
  2716. '--disable-gpu',
  2717. '--no-sandbox',
  2718. '--disable-setuid-sandbox',
  2719. '--disable-dev-shm-usage',
  2720. '--disable-web-security',
  2721. '--disable-features=VizDisplayCompositor',
  2722. '--disable-extensions',
  2723. // '--disable-background-networking', // 注释掉,可能阻止必要的网络请求
  2724. '--disable-component-update',
  2725. '--disable-client-side-phishing-detection',
  2726. '--disable-default-apps',
  2727. '--disable-domain-reliability',
  2728. '--disable-sync',
  2729. '--no-first-run',
  2730. '--no-default-browser-check',
  2731. '--disable-crash-reporter',
  2732. '--disable-print-preview',
  2733. '--disable-features=TranslateUI',
  2734. '--disable-features=OptimizationHints',
  2735. '--disable-ipc-flooding-protection',
  2736. '--disable-background-timer-throttling',
  2737. '--disable-backgrounding-occluded-windows',
  2738. '--disable-renderer-backgrounding',
  2739. '--disable-features=AudioServiceOutOfProcess',
  2740. '--disable-gpu-sandbox',
  2741. '--disable-software-rasterizer',
  2742. '--disable-background-mode',
  2743. '--disable-extensions-http-throttling',
  2744. '--disable-ipc-flooding-protection',
  2745. '--disable-features=Dbus', // 禁用 dbus
  2746. // 【关键修复】添加虚拟时间预算,让Chrome有足够时间加载CDN资源和执行JS
  2747. '--virtual-time-budget=30000', // 30秒虚拟时间用于加载外部资源
  2748. '--run-all-compositor-stages-before-draw', // 确保所有渲染完成后再生成PDF
  2749. '--user-data-dir='.$userDataDir,
  2750. '--print-to-pdf='.$tmpPdf,
  2751. '--print-to-pdf-no-header',
  2752. '--allow-file-access-from-files',
  2753. '--font-render-hinting=none', // 【优化】禁用字体渲染提示
  2754. '--disable-font-antialiasing',
  2755. 'file://'.$htmlPath,
  2756. ], null, [
  2757. 'HOME' => $runtimeHome,
  2758. 'XDG_RUNTIME_DIR' => $runtimeXdg,
  2759. ]);
  2760. $process->setTimeout(180); // 复杂学情报告页允许更长渲染时间,降低超时失败率
  2761. $killSignal = \defined('SIGKILL') ? \SIGKILL : 9;
  2762. Log::warning('ExamPdfExportService: [调试] Chrome命令准备执行', [
  2763. 'chrome_binary' => $chromeBinary,
  2764. 'html_path' => $htmlPath,
  2765. 'html_exists' => file_exists($htmlPath),
  2766. 'html_size' => file_exists($htmlPath) ? filesize($htmlPath) : 0,
  2767. 'pdf_path' => $tmpPdf,
  2768. 'user_data_dir' => $userDataDir,
  2769. ]);
  2770. try {
  2771. $startedAt = microtime(true);
  2772. $process->start();
  2773. $pdfGenerated = false;
  2774. // 轮询检测PDF是否生成
  2775. $pollStart = microtime(true);
  2776. $maxPollSeconds = max(10, (int) config('pdf.chrome_poll_timeout_seconds', 40));
  2777. while ($process->isRunning() && (microtime(true) - $pollStart) < $maxPollSeconds) {
  2778. if (file_exists($tmpPdf) && filesize($tmpPdf) > 0) {
  2779. $pdfGenerated = true;
  2780. Log::info('ExamPdfExportService: PDF生成成功,提前终止Chrome进程', [
  2781. 'elapsed' => round(microtime(true) - $startedAt, 2),
  2782. 'pdf_size' => filesize($tmpPdf),
  2783. ]);
  2784. $process->stop(3, $killSignal); // 【优化】减少停止等待时间
  2785. break;
  2786. }
  2787. usleep(100_000); // 【优化】从200ms减少到100ms
  2788. }
  2789. if ($process->isRunning()) {
  2790. $process->stop(3, $killSignal); // 【优化】减少停止等待时间
  2791. }
  2792. // 【优化】删除不必要的wait()调用,避免重复等待
  2793. // $process->wait();
  2794. } catch (ProcessTimedOutException|ProcessSignaledException $e) {
  2795. if ($process->isRunning()) {
  2796. $process->stop(3, $killSignal); // 【优化】减少停止等待时间
  2797. }
  2798. Log::warning('ExamPdfExportService: Chrome进程超时或被信号中断', [
  2799. 'elapsed' => round((microtime(true) - $startedAt), 2),
  2800. 'exception' => get_class($e),
  2801. ]);
  2802. $result = $this->handleChromeProcessResult($tmpPdf, $userDataDir, $process, $startedAt);
  2803. if ($result !== null) {
  2804. return $result;
  2805. }
  2806. return $this->renderWithChromeMinimal($chromeBinary, $htmlPath);
  2807. } catch (\Throwable $e) {
  2808. if ($process->isRunning()) {
  2809. $process->stop(3, $killSignal); // 【优化】减少停止等待时间
  2810. }
  2811. Log::error('ExamPdfExportService: Chrome进程异常', [
  2812. 'elapsed' => round((microtime(true) - $startedAt), 2),
  2813. 'error' => $e->getMessage(),
  2814. ]);
  2815. $result = $this->handleChromeProcessResult($tmpPdf, $userDataDir, $process, null);
  2816. if ($result !== null) {
  2817. return $result;
  2818. }
  2819. return $this->renderWithChromeMinimal($chromeBinary, $htmlPath);
  2820. }
  2821. $result = $this->handleChromeProcessResult($tmpPdf, $userDataDir, $process, null);
  2822. if ($result !== null) {
  2823. return $result;
  2824. }
  2825. return $this->renderWithChromeMinimal($chromeBinary, $htmlPath);
  2826. }
  2827. /**
  2828. * 处理Chrome进程结果
  2829. */
  2830. private function handleChromeProcessResult(string $tmpPdf, string $userDataDir, Process $process, ?float $startedAt): ?string
  2831. {
  2832. $pdfExists = file_exists($tmpPdf);
  2833. $pdfSize = $pdfExists ? filesize($tmpPdf) : null;
  2834. $elapsed = $startedAt ? round((microtime(true) - $startedAt), 2) : null;
  2835. // 【优化】即使进程未成功,只要PDF存在且大小合理就返回
  2836. if ($pdfExists && $pdfSize > 1000) { // 至少1KB
  2837. Log::info('ExamPdfExportService: PDF生成成功', [
  2838. 'elapsed' => $elapsed,
  2839. 'pdf_size' => $pdfSize,
  2840. 'exit_code' => $process->getExitCode(),
  2841. 'is_successful' => $process->isSuccessful(),
  2842. ]);
  2843. $pdfBinary = file_get_contents($tmpPdf);
  2844. @unlink($tmpPdf);
  2845. File::deleteDirectory($userDataDir);
  2846. return $pdfBinary;
  2847. }
  2848. // 如果PDF不存在或太小,记录错误
  2849. Log::error('ExamPdfExportService: Chrome渲染失败', [
  2850. 'elapsed' => $elapsed,
  2851. 'pdf_exists' => $pdfExists,
  2852. 'pdf_size' => $pdfSize,
  2853. 'exit_code' => $process->getExitCode(),
  2854. 'error' => $process->getErrorOutput(),
  2855. 'output' => $process->getOutput(),
  2856. ]);
  2857. @unlink($tmpPdf);
  2858. File::deleteDirectory($userDataDir);
  2859. return null;
  2860. }
  2861. /**
  2862. * Chrome主渲染失败时的最小参数兜底。
  2863. */
  2864. private function renderWithChromeMinimal(string $chromeBinary, string $htmlPath): ?string
  2865. {
  2866. $tmpPdf = tempnam(sys_get_temp_dir(), 'exam_pdf_fallback_').'.pdf';
  2867. $process = new Process([
  2868. $chromeBinary,
  2869. '--headless=new',
  2870. '--disable-gpu',
  2871. '--no-sandbox',
  2872. '--print-to-pdf='.$tmpPdf,
  2873. 'file://'.$htmlPath,
  2874. ]);
  2875. $process->setTimeout(180);
  2876. try {
  2877. $process->run();
  2878. if (file_exists($tmpPdf) && filesize($tmpPdf) > 1000) {
  2879. Log::warning('ExamPdfExportService: Chrome最小参数兜底成功', [
  2880. 'pdf_size' => filesize($tmpPdf),
  2881. 'exit_code' => $process->getExitCode(),
  2882. ]);
  2883. $pdfBinary = file_get_contents($tmpPdf);
  2884. @unlink($tmpPdf);
  2885. return $pdfBinary;
  2886. }
  2887. Log::error('ExamPdfExportService: Chrome最小参数兜底失败', [
  2888. 'exit_code' => $process->getExitCode(),
  2889. 'error' => $process->getErrorOutput(),
  2890. 'output' => $process->getOutput(),
  2891. ]);
  2892. } catch (\Throwable $e) {
  2893. Log::error('ExamPdfExportService: Chrome最小参数兜底异常', [
  2894. 'error' => $e->getMessage(),
  2895. ]);
  2896. }
  2897. @unlink($tmpPdf);
  2898. return null;
  2899. }
  2900. /**
  2901. * 查找Chrome二进制文件
  2902. */
  2903. private function findChromeBinary(): ?string
  2904. {
  2905. $candidates = [
  2906. env('PDF_CHROME_BINARY'),
  2907. env('CHROME_BIN'), // Docker Alpine 环境变量
  2908. '/usr/bin/chromium-browser', // Alpine Linux
  2909. '/usr/bin/chromium',
  2910. '/usr/bin/google-chrome-stable',
  2911. '/usr/bin/google-chrome',
  2912. '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome', // macOS
  2913. ];
  2914. foreach ($candidates as $path) {
  2915. if ($path && is_file($path) && is_executable($path)) {
  2916. return $path;
  2917. }
  2918. }
  2919. return null;
  2920. }
  2921. /**
  2922. * 确保HTML为UTF-8编码,并内联外部资源
  2923. */
  2924. private function ensureUtf8Html(string $html): string
  2925. {
  2926. $meta = '<meta charset="UTF-8">';
  2927. if (stripos($html, '<head>') !== false) {
  2928. $html = preg_replace('/<head>/i', "<head>{$meta}", $html, 1);
  2929. } else {
  2930. $html = $meta.$html;
  2931. }
  2932. // 【关键修复】内联KaTeX CSS,避免Chrome在容器中加载CDN资源超时
  2933. $html = $this->inlineExternalResources($html);
  2934. return $html;
  2935. }
  2936. /**
  2937. * 将CDN资源替换为内联资源
  2938. * 【关键修复】避免Chrome在容器中加载CDN资源超时,同时支持本地路径
  2939. */
  2940. private function inlineExternalResources(string $html): string
  2941. {
  2942. // 检查是否包含 KaTeX 资源(CDN 或本地)
  2943. $hasKatexCdn = strpos($html, 'cdn.jsdelivr.net/npm/katex') !== false;
  2944. $hasKatexLocal = strpos($html, '/js/katex.min.js') !== false || strpos($html, '/css/katex/katex.min.css') !== false;
  2945. // 【调试】记录HTML内容信息
  2946. Log::warning('ExamPdfExportService: inlineExternalResources', [
  2947. 'html_length' => strlen($html),
  2948. 'has_katex_cdn' => $hasKatexCdn,
  2949. 'has_katex_local' => $hasKatexLocal,
  2950. ]);
  2951. // 如果既没有 CDN 也没有本地链接,仍尝试注入 KaTeX 关系符通用修复
  2952. if (! $hasKatexCdn && ! $hasKatexLocal) {
  2953. Log::warning('ExamPdfExportService: HTML 中没有 KaTeX 资源链接,跳过内联');
  2954. return $this->applyKatexRelationGlyphFixes($html);
  2955. }
  2956. try {
  2957. // 读取并内联 KaTeX CSS(无论 CDN 还是本地)
  2958. $katexCssPath = public_path('css/katex/katex.min.css');
  2959. if (file_exists($katexCssPath)) {
  2960. $katexCss = file_get_contents($katexCssPath);
  2961. // 修复字体路径:将相对路径改为 data URI
  2962. $fontsDir = public_path('css/katex/fonts');
  2963. $katexCss = preg_replace_callback(
  2964. '/url\(["\']?fonts\/([^"\')\s]+)["\']?\)/i',
  2965. function ($matches) use ($fontsDir) {
  2966. $fontFile = $fontsDir.'/'.$matches[1];
  2967. if (file_exists($fontFile)) {
  2968. $fontData = base64_encode(file_get_contents($fontFile));
  2969. $mimeType = str_ends_with($matches[1], '.woff2') ? 'font/woff2' : 'font/woff';
  2970. return 'url(data:'.$mimeType.';base64,'.$fontData.')';
  2971. }
  2972. return $matches[0];
  2973. },
  2974. $katexCss
  2975. );
  2976. // 替换 CDN CSS 链接
  2977. if ($hasKatexCdn) {
  2978. $html = preg_replace(
  2979. '/<link[^>]*href=["\']https:\/\/cdn\.jsdelivr\.net\/npm\/katex[^"\']*katex\.min\.css["\'][^>]*>/i',
  2980. '<style type="text/css">'.$katexCss.'</style>',
  2981. $html
  2982. );
  2983. }
  2984. // 替换本地 CSS 链接
  2985. if ($hasKatexLocal) {
  2986. $html = preg_replace(
  2987. '/<link[^>]*href=["\']\/css\/katex\/katex\.min\.css["\'][^>]*>/i',
  2988. '<style type="text/css">'.$katexCss.'</style>',
  2989. $html
  2990. );
  2991. }
  2992. Log::info('ExamPdfExportService: KaTeX CSS 已内联(含字体 data URI)');
  2993. }
  2994. // 读取本地 KaTeX JS(用于移除)
  2995. $katexJsPath = public_path('js/katex.min.js');
  2996. $autoRenderJsPath = public_path('js/auto-render.min.js');
  2997. if (file_exists($katexJsPath)) {
  2998. $katexJs = file_get_contents($katexJsPath);
  2999. $html = preg_replace(
  3000. '/<script[^>]*src=["\']https:\/\/cdn\.jsdelivr\.net\/npm\/katex[^"\']*katex\.min\.js["\'][^>]*><\/script>/i',
  3001. '<script type="text/javascript">'.$katexJs.'</script>',
  3002. $html
  3003. );
  3004. }
  3005. if (file_exists($autoRenderJsPath)) {
  3006. $autoRenderJs = file_get_contents($autoRenderJsPath);
  3007. $html = preg_replace(
  3008. '/<script[^>]*src=["\']https:\/\/cdn\.jsdelivr\.net\/npm\/katex[^"\']*auto-render[^"\']*["\'][^>]*><\/script>/i',
  3009. '<script type="text/javascript">'.$autoRenderJs.'</script>',
  3010. $html
  3011. );
  3012. }
  3013. // 【关键修复】使用服务端预渲染,而不是依赖客户端 JavaScript
  3014. // Chrome headless 的 --print-to-pdf 不会等待 JS 执行完成
  3015. // 所以我们使用 Node.js KaTeX 在服务端预渲染所有公式
  3016. // 1. 移除所有 KaTeX JavaScript(不再需要,因为使用服务端渲染)
  3017. // 移除内联的 katex.min.js
  3018. $html = preg_replace(
  3019. '/<script[^>]*type=["\']text\/javascript["\'][^>]*>[\s\S]*?katex[\s\S]*?<\/script>/i',
  3020. '<!-- KaTeX JS removed, using server-side rendering -->',
  3021. $html
  3022. );
  3023. // 移除 DOMContentLoaded 监听器
  3024. $html = preg_replace(
  3025. '/<script[^>]*>[\s\S]*?document\.addEventListener[\s\S]*?DOMContentLoaded[\s\S]*?<\/script>/i',
  3026. '<!-- DOMContentLoaded removed -->',
  3027. $html
  3028. );
  3029. // 2. 使用 KatexRenderer 进行服务端预渲染
  3030. if ($this->katexRenderer) {
  3031. $beforeLength = strlen($html);
  3032. $html = $this->katexRenderer->renderHtml($html);
  3033. $afterLength = strlen($html);
  3034. Log::info('ExamPdfExportService: LaTeX 公式服务端预渲染完成', [
  3035. 'before_length' => $beforeLength,
  3036. 'after_length' => $afterLength,
  3037. 'size_change' => $afterLength - $beforeLength,
  3038. ]);
  3039. // 通用修复:统一优化 KaTeX 关系运算符(mrel)字形
  3040. // 覆盖平行、垂直、等于、不等于等关系符,避免出现“平行符像 ||”的问题
  3041. $html = $this->applyKatexRelationGlyphFixes($html);
  3042. } else {
  3043. Log::warning('ExamPdfExportService: KatexRenderer 未初始化,跳过预渲染');
  3044. }
  3045. // 【换行处理】将字面的 \n 转换为 <br> 标签(在 KaTeX 渲染后处理,避免破坏公式)
  3046. // 先替换所有 \n 为 <br>,然后合并连续的 <br>(最多保留2个)
  3047. $html = str_replace('\\n', '<br>', $html);
  3048. $html = preg_replace('/(<br>\s*){3,}/', '<br><br>', $html); // 3个以上合并为2个
  3049. } catch (\Exception $e) {
  3050. Log::warning('ExamPdfExportService: 内联资源处理失败,保留原始HTML', [
  3051. 'error' => $e->getMessage(),
  3052. ]);
  3053. }
  3054. return $this->applyKatexRelationGlyphFixes($html);
  3055. }
  3056. /**
  3057. * 应用 KaTeX 关系符通用修复(先标记,再注入样式)
  3058. */
  3059. private function applyKatexRelationGlyphFixes(string $html): string
  3060. {
  3061. $html = $this->tagKatexParallelRelationSpans($html);
  3062. return $this->injectKatexRelationGlyphStyle($html);
  3063. }
  3064. /**
  3065. * 标记 KaTeX 中的平行关系符(∥),便于使用字体无关样式兜底
  3066. */
  3067. private function tagKatexParallelRelationSpans(string $html): string
  3068. {
  3069. if (strpos($html, '∥') === false || strpos($html, 'mrel') === false) {
  3070. return $html;
  3071. }
  3072. $pattern = '/<span(?P<attrs>[^>]*)class=(["\'])(?P<class>[^"\']*\bmrel\b[^"\']*)\2(?P<tail>[^>]*)>\s*∥\s*<\/span>/u';
  3073. $replaced = preg_replace_callback($pattern, static function (array $matches): string {
  3074. $attrs = $matches['attrs'] ?? '';
  3075. $quote = $matches[2] ?? '"';
  3076. $class = trim($matches['class'] ?? '');
  3077. $tail = $matches['tail'] ?? '';
  3078. if ($class === '') {
  3079. $class = 'mrel katex-rel-parallel';
  3080. } elseif (! preg_match('/\bkatex-rel-parallel\b/', $class)) {
  3081. $class .= ' katex-rel-parallel';
  3082. }
  3083. return '<span'.$attrs.'class='.$quote.$class.$quote.$tail.'>∥</span>';
  3084. }, $html);
  3085. return $replaced ?? $html;
  3086. }
  3087. /**
  3088. * 注入 KaTeX 关系运算符统一字形样式(全局、通用)
  3089. */
  3090. private function injectKatexRelationGlyphStyle(string $html): string
  3091. {
  3092. if (strpos($html, 'class="katex"') === false && strpos($html, 'class="katex-html"') === false) {
  3093. return $html;
  3094. }
  3095. if (strpos($html, 'id="katex-relation-glyph-style"') !== false) {
  3096. return $html;
  3097. }
  3098. $style = '<style id="katex-relation-glyph-style">'
  3099. .'.katex .mrel{'
  3100. .'font-family:"KaTeX_AMS","KaTeX_Main","NotoSerifCJKsc-Regular","NotoSerifCJKsc-Bold","NotoSans-Regular","NotoSans-Bold","NotoSansMonoCJKjp-Regular",serif !important;'
  3101. .'letter-spacing:.04em;'
  3102. .'}'
  3103. .'.katex .mrel .mord{font-family:inherit !important;}'
  3104. .'.katex .mrel.katex-rel-parallel{'
  3105. .'display:inline-block;'
  3106. .'font-size:1.22em;'
  3107. .'line-height:1.28;'
  3108. .'letter-spacing:.04em;'
  3109. .'vertical-align:0;'
  3110. .'transform:skewX(-14deg) scaleY(1.42);'
  3111. .'transform-origin:center;'
  3112. .'}'
  3113. .'</style>';
  3114. if (stripos($html, '</head>') !== false) {
  3115. return preg_replace('/<\/head>/i', $style.'</head>', $html, 1) ?? ($html.$style);
  3116. }
  3117. return $html.$style;
  3118. }
  3119. /**
  3120. * 【新增】合并两个HTML页面,插入分页符
  3121. * 保留原始页面样式和结构,只在中间插入分页符
  3122. */
  3123. private function mergeHtmlWithPageBreak(string $examHtml, string $gradingHtml, ?string $kpExplainHtml = null): ?string
  3124. {
  3125. try {
  3126. // 确保HTML编码正确
  3127. $examHtml = $this->ensureUtf8Html($examHtml);
  3128. $gradingHtml = $this->ensureUtf8Html($gradingHtml);
  3129. if ($kpExplainHtml) {
  3130. $kpExplainHtml = $this->ensureUtf8Html($kpExplainHtml);
  3131. }
  3132. // 提取body内容
  3133. $examBody = $this->extractBodyContent($examHtml);
  3134. $gradingBody = $this->extractBodyContent($gradingHtml);
  3135. // 知识点讲解使用专门的提取方法,避免嵌套完整HTML结构
  3136. $kpExplainBody = $kpExplainHtml ? $this->extractKpExplainContent($kpExplainHtml) : null;
  3137. if (empty($examBody) || empty($gradingBody)) {
  3138. Log::error('ExamPdfExportService: HTML内容提取失败', [
  3139. 'exam_body_length' => strlen($examBody),
  3140. 'grading_body_length' => strlen($gradingBody),
  3141. ]);
  3142. return null;
  3143. }
  3144. // 提取head内容(保留原始样式和meta信息)
  3145. $examHead = $this->extractHeadContent($examHtml);
  3146. $gradingHead = $this->extractHeadContent($gradingHtml);
  3147. $kpExplainHead = $kpExplainHtml ? $this->extractHeadContent($kpExplainHtml) : null;
  3148. // 构建统一HTML文档(保留原始结构)
  3149. $unifiedHtml = $this->buildUnifiedHtmlWithOriginalStructure(
  3150. $examHead,
  3151. $examBody,
  3152. $gradingBody,
  3153. $gradingHead,
  3154. $kpExplainBody,
  3155. $kpExplainHead
  3156. );
  3157. Log::info('HTML合并成功(保留原始样式)', [
  3158. 'exam_length' => strlen($examBody),
  3159. 'grading_length' => strlen($gradingBody),
  3160. 'kp_explain_length' => $kpExplainBody ? strlen($kpExplainBody) : 0,
  3161. 'unified_length' => strlen($unifiedHtml),
  3162. 'head_length' => strlen($examHead),
  3163. 'has_kp_explain' => ! empty($kpExplainBody),
  3164. ]);
  3165. return $unifiedHtml;
  3166. } catch (\Throwable $e) {
  3167. Log::error('mergeHtmlWithPageBreak 失败', [
  3168. 'error' => $e->getMessage(),
  3169. 'trace' => $e->getTraceAsString(),
  3170. ]);
  3171. return null;
  3172. }
  3173. }
  3174. /**
  3175. * 【新增】提取HTML的body内容
  3176. */
  3177. private function extractBodyContent(string $html): string
  3178. {
  3179. // 匹配body标签内容
  3180. if (preg_match('/<body[^>]*>(.*)<\/body>/is', $html, $matches)) {
  3181. return $matches[1];
  3182. }
  3183. // 如果没有body标签,返回整个HTML
  3184. return $html;
  3185. }
  3186. /**
  3187. * 【新增】提取HTML的head内容
  3188. * 保留原始页面的样式和meta信息
  3189. */
  3190. private function extractHeadContent(string $html): string
  3191. {
  3192. // 匹配head标签内容
  3193. if (preg_match('/<head[^>]*>(.*)<\/head>/is', $html, $matches)) {
  3194. return $matches[1];
  3195. }
  3196. // 如果没有head标签,返回默认meta
  3197. return '<meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0">';
  3198. }
  3199. /**
  3200. * 【新增】提取知识点讲解的核心内容
  3201. * 只提取 kp-explain 容器内部的内容,避免嵌套完整的HTML结构
  3202. */
  3203. private function extractKpExplainContent(string $html): string
  3204. {
  3205. // 如果 HTML 中包含嵌套的 <html> 标签,提取嵌套内容
  3206. if (preg_match('/<html[^>]*>(.*)<\/html>/is', $html, $htmlMatches)) {
  3207. $html = $htmlMatches[1];
  3208. }
  3209. // 如果 HTML 中包含 <head> 标签,跳过 head
  3210. if (preg_match('/<head[^>]*>.*?<\/head>/is', $html, $headMatch)) {
  3211. $html = substr($html, strpos($html, '</head>') + 7);
  3212. }
  3213. // 如果 HTML 中包含 <body> 标签,提取 body 内容
  3214. if (preg_match('/<body[^>]*>(.*)<\/body>/is', $html, $bodyMatches)) {
  3215. $html = $bodyMatches[1];
  3216. }
  3217. // 移除可能存在的嵌套 <html>, <head>, <body> 标签
  3218. $html = preg_replace('/<\/?(html|head|body)[^>]*>/is', '', $html);
  3219. // 移除 script 标签和注释
  3220. $html = preg_replace('/<script[^>]*>.*?<\/script>/is', '', $html);
  3221. $html = preg_replace('/<!--[^>]*-->/is', '', $html);
  3222. return trim($html);
  3223. }
  3224. /**
  3225. * 【优化重构】构建统一的HTML文档(容器结构 + 消除空白页)
  3226. * 使用容器结构替代空的 page-break div,避免中间出现空白页
  3227. */
  3228. private function buildUnifiedHtmlWithOriginalStructure(
  3229. string $examHead,
  3230. string $examBody,
  3231. string $gradingBody,
  3232. string $gradingHead,
  3233. ?string $kpExplainBody = null,
  3234. ?string $kpExplainHead = null
  3235. ): string
  3236. {
  3237. // 清洗内容:移除可能存在的分页符,避免双重分页
  3238. $examBody = $this->stripPageBreakElements($examBody);
  3239. $gradingBody = $this->stripPageBreakElements($gradingBody);
  3240. if ($kpExplainBody) {
  3241. $kpExplainBody = $this->stripPageBreakElements($kpExplainBody);
  3242. }
  3243. // 合并 head 内容:试卷 head + 判卷 head + 知识点讲解 head(去重)+ 分页控制样式
  3244. $mergedHead = $examHead;
  3245. // 按顺序合并其他 head 里的 <style>(避免重复)
  3246. foreach ([$gradingHead, $kpExplainHead] as $extraHead) {
  3247. if (! $extraHead) {
  3248. continue;
  3249. }
  3250. if (preg_match_all('/<style[^>]*>(.*?)<\/style>/is', $extraHead, $styleMatches)) {
  3251. foreach ($styleMatches[0] as $idx => $styleTag) {
  3252. if (! str_contains($mergedHead, $styleMatches[1][$idx])) {
  3253. $mergedHead .= "\n ".$styleTag;
  3254. }
  3255. }
  3256. }
  3257. }
  3258. // 添加分页控制样式
  3259. $headContent = $mergedHead.'
  3260. <style>
  3261. /* 容器基础样式 - 保持现有页面边距 */
  3262. .exam-part,
  3263. .grading-part,
  3264. .kp-explain-part {
  3265. width: 100%;
  3266. margin: 0;
  3267. padding: 0;
  3268. }
  3269. /* 试卷部分 - 只有在知识点讲解后才需要分页 */
  3270. .exam-part {
  3271. /* 如果有知识点讲解,需要在新页面开始(通过 kp-explain-part 的 break-after 控制) */
  3272. /* 如果没有知识点讲解,试卷从第一页开始,不需要分页 */
  3273. break-after: auto;
  3274. page-break-after: auto;
  3275. /* 确保顶部没有额外边距 */
  3276. margin-top: 0;
  3277. padding-top: 0;
  3278. }
  3279. /* 核心分页控制:只在 grading-part 上设置 */
  3280. .grading-part {
  3281. /* CSS3 新标准 */
  3282. break-before: page;
  3283. /* 兼容旧版 WebKit */
  3284. page-break-before: always;
  3285. /* 确保顶部没有额外边距 */
  3286. margin-top: 0;
  3287. padding-top: 0;
  3288. }
  3289. /* 知识点讲解部分末尾强制分页(确保试卷从新页面开始) */
  3290. .kp-explain-part {
  3291. break-after: page;
  3292. page-break-after: always;
  3293. }
  3294. /* 防止试卷部分末尾分页 */
  3295. .exam-part {
  3296. /* 确保试卷内容连续 */
  3297. break-after: auto;
  3298. page-break-after: auto;
  3299. }
  3300. /* 避免在关键元素中间分页 */
  3301. .exam-part h1, .exam-part h2,
  3302. .grading-part h1, .grading-part h2 {
  3303. break-after: avoid;
  3304. page-break-after: avoid;
  3305. }
  3306. .exam-part table, .exam-part .question-item,
  3307. .grading-part table, .grading-part .answer-item {
  3308. break-inside: avoid;
  3309. page-break-inside: avoid;
  3310. }
  3311. /* 防止孤儿行 */
  3312. .exam-part p, .exam-part li,
  3313. .grading-part p, .grading-part li {
  3314. orphans: 2;
  3315. widows: 2;
  3316. }
  3317. /* 数学公式优化 */
  3318. .katex {
  3319. break-inside: avoid;
  3320. page-break-inside: avoid;
  3321. }
  3322. </style>';
  3323. // 构建HTML内容
  3324. $bodyContent = '';
  3325. $mergedTitle = '试卷与判卷合并';
  3326. if (preg_match('/<title>(.*?)<\/title>/is', $examHead, $titleMatches)) {
  3327. $candidateTitle = trim(strip_tags($titleMatches[1]));
  3328. if ($candidateTitle !== '') {
  3329. $mergedTitle = $candidateTitle;
  3330. }
  3331. }
  3332. // 如果有知识点讲解,添加到最前面
  3333. if ($kpExplainBody) {
  3334. $bodyContent .= '
  3335. <!-- 知识点讲解部分 -->
  3336. <div class="kp-explain-part">
  3337. '.$kpExplainBody.'
  3338. </div>
  3339. ';
  3340. }
  3341. // 添加试卷部分
  3342. $bodyContent .= '
  3343. <!-- EXAM_PART_START -->
  3344. <!-- 试卷部分 - 连续显示 -->
  3345. <div class="exam-part">
  3346. '.$examBody.'
  3347. </div>
  3348. <!-- EXAM_PART_END -->
  3349. ';
  3350. // 添加判卷部分
  3351. $bodyContent .= '
  3352. <!-- 判卷部分 - 强制新页面开始 -->
  3353. <div class="grading-part">
  3354. '.$gradingBody.'
  3355. </div>
  3356. ';
  3357. return '<!DOCTYPE html>
  3358. <html lang="zh-CN">
  3359. <head>
  3360. <meta charset="UTF-8">
  3361. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  3362. <title>'.$mergedTitle.'</title>
  3363. '.$headContent.'
  3364. </head>
  3365. <body>
  3366. '.$bodyContent.'
  3367. </body>
  3368. </html>';
  3369. }
  3370. /**
  3371. * 【新增】清洗HTML内容中的分页符元素
  3372. * 移除可能存在的 page-break 元素,避免双重分页导致空白页
  3373. */
  3374. private function stripPageBreakElements(string $content): string
  3375. {
  3376. // 只移除空的 page-break div 元素(通常是 <div class="page-break"></div>)
  3377. // 使用更精确的正则,只匹配空内容或纯空白内容的 div
  3378. $patterns = [
  3379. '/<div[^>]*class="[^"]*page-break[^"]*"[^>]*>\s*<\/div>/si',
  3380. '/<div[^>]*style="[^"]*page-break[^"]*"[^>]*>\s*<\/div>/si',
  3381. ];
  3382. foreach ($patterns as $pattern) {
  3383. $content = preg_replace($pattern, '', $content);
  3384. }
  3385. return $content;
  3386. }
  3387. /**
  3388. * 【新增】获取PDF通用样式
  3389. */
  3390. private function getCommonPdfStyles(): string
  3391. {
  3392. return '
  3393. * {
  3394. margin: 0;
  3395. padding: 0;
  3396. box-sizing: border-box;
  3397. }
  3398. body {
  3399. font-family: "Microsoft YaHei", "SimHei", Arial, sans-serif;
  3400. font-size: 14px;
  3401. line-height: 1.6;
  3402. color: #333;
  3403. background: #fff;
  3404. }
  3405. .paper-container {
  3406. max-width: 210mm;
  3407. margin: 0 auto;
  3408. padding: 20mm;
  3409. background: white;
  3410. }
  3411. .paper-header {
  3412. text-align: center;
  3413. margin-bottom: 30px;
  3414. padding-bottom: 15px;
  3415. border-bottom: 2px solid #333;
  3416. }
  3417. .paper-title {
  3418. font-size: 24px;
  3419. font-weight: bold;
  3420. margin-bottom: 10px;
  3421. }
  3422. .paper-info {
  3423. font-size: 14px;
  3424. color: #666;
  3425. }
  3426. .question {
  3427. margin-bottom: 30px;
  3428. padding: 20px;
  3429. border: 1px solid #ddd;
  3430. border-radius: 5px;
  3431. }
  3432. .question-number {
  3433. font-weight: bold;
  3434. margin-bottom: 10px;
  3435. }
  3436. .question-stem {
  3437. margin-bottom: 15px;
  3438. }
  3439. .options {
  3440. list-style: none;
  3441. margin-left: 20px;
  3442. }
  3443. .options li {
  3444. margin-bottom: 8px;
  3445. }
  3446. .answer-section {
  3447. margin-top: 20px;
  3448. padding-top: 15px;
  3449. border-top: 1px solid #eee;
  3450. }
  3451. .answer-label {
  3452. font-weight: bold;
  3453. color: #d9534f;
  3454. }
  3455. .solution {
  3456. margin-top: 10px;
  3457. padding: 10px;
  3458. background: #f5f5f5;
  3459. border-left: 4px solid #5bc0de;
  3460. }
  3461. ';
  3462. }
  3463. /**
  3464. * 构建知识点名称映射
  3465. */
  3466. private function buildKnowledgePointNameMap(): array
  3467. {
  3468. try {
  3469. $options = $this->questionServiceApi->getKnowledgePointOptions();
  3470. return $options ?: [];
  3471. } catch (\Throwable $e) {
  3472. Log::warning('ExamPdfExportService: 获取知识点名称失败', [
  3473. 'error' => $e->getMessage(),
  3474. ]);
  3475. return [];
  3476. }
  3477. }
  3478. /**
  3479. * 构建掌握度摘要
  3480. */
  3481. private function buildMasterySummary(array $masteryData, array $kpNameMap): array
  3482. {
  3483. Log::info('ExamPdfExportService: buildMasterySummary开始处理', [
  3484. 'masteryData_count' => count($masteryData),
  3485. 'kpNameMap_count' => count($kpNameMap),
  3486. ]);
  3487. $items = [];
  3488. $total = 0;
  3489. $count = 0;
  3490. foreach ($masteryData as $row) {
  3491. $code = $row['kp_code'] ?? null;
  3492. // 【修复】使用kpNameMap转换名称为友好显示名
  3493. $name = $kpNameMap[$code] ?? $row['kp_name'] ?? $code ?: '未知知识点';
  3494. $level = (float) ($row['mastery_level'] ?? 0);
  3495. $delta = $row['mastery_change'] ?? null;
  3496. $items[] = [
  3497. 'kp_code' => $code,
  3498. 'kp_name' => $name,
  3499. 'mastery_level' => $level,
  3500. 'mastery_change' => $delta,
  3501. ];
  3502. $total += $level;
  3503. $count++;
  3504. }
  3505. $average = $count > 0 ? round($total / $count, 2) : null;
  3506. // 按掌握度从低到高排序
  3507. if (! empty($items)) {
  3508. usort($items, fn ($a, $b) => ($a['mastery_level'] <=> $b['mastery_level']));
  3509. }
  3510. $result = [
  3511. 'items' => $items,
  3512. 'average' => $average,
  3513. 'weak_list' => array_slice($items, 0, 5),
  3514. ];
  3515. Log::info('ExamPdfExportService: buildMasterySummary完成', [
  3516. 'total_count' => $count,
  3517. 'items_count' => count($items),
  3518. ]);
  3519. return $result;
  3520. }
  3521. /**
  3522. * 标准化题型
  3523. */
  3524. private function normalizeQuestionType(string $type): string
  3525. {
  3526. $t = strtolower(trim($type));
  3527. return match (true) {
  3528. str_contains($t, 'choice') || str_contains($t, '选择') => 'choice',
  3529. str_contains($t, 'fill') || str_contains($t, 'blank') || str_contains($t, '填空') => 'fill',
  3530. default => 'answer',
  3531. };
  3532. }
  3533. private function buildPaperNamePrefix(Paper $paper): string
  3534. {
  3535. $assembleType = ($paper->paper_type === null || $paper->paper_type === '')
  3536. ? null
  3537. : (int) $paper->paper_type;
  3538. $studentName = Student::query()
  3539. ->where('student_id', $paper->student_id)
  3540. ->value('name') ?? ($paper->student_id ?: '________');
  3541. try {
  3542. $assembleTypeLabel = $assembleType !== null ? PaperNaming::assembleTypeLabel($assembleType) : '未知类型';
  3543. } catch (\Throwable $e) {
  3544. $assembleTypeLabel = '未知类型';
  3545. }
  3546. return "{$studentName}_".PaperNaming::extractExamCode((string) $paper->paper_id)."_{$assembleTypeLabel}";
  3547. }
  3548. private function buildPaperDisplayTitle(Paper $paper): string
  3549. {
  3550. return $this->buildPaperNamePrefix($paper).'_'.now()->format('Ymd');
  3551. }
  3552. private function buildPdfFileName(Paper $paper, ?string $stamp = null): string
  3553. {
  3554. $basePrefix = $this->buildPaperNamePrefix($paper);
  3555. $stamp = $stamp ?: now()->format('YmdHis').strtoupper(Str::random(4));
  3556. $base = "{$basePrefix}_{$stamp}";
  3557. $safe = PaperNaming::toSafeFilename($base);
  3558. return "{$safe}.pdf";
  3559. }
  3560. private function extractUploadStamp(string $url): ?string
  3561. {
  3562. $path = parse_url($url, PHP_URL_PATH);
  3563. if (! is_string($path) || $path === '') {
  3564. return null;
  3565. }
  3566. $stem = pathinfo($path, PATHINFO_FILENAME);
  3567. if (! is_string($stem) || $stem === '') {
  3568. return null;
  3569. }
  3570. if (preg_match('/(\d{14}[A-Za-z0-9]{4})/', $stem, $matches)) {
  3571. return $matches[1];
  3572. }
  3573. return null;
  3574. }
  3575. /**
  3576. * 保存PDF URL到数据库
  3577. */
  3578. private function savePdfUrlToDatabase(string $paperId, string $field, string $url): void
  3579. {
  3580. try {
  3581. $paper = Paper::where('paper_id', $paperId)->first();
  3582. if ($paper) {
  3583. $paperDisplayTitle = $this->buildPaperDisplayTitle($paper);
  3584. $stamp = $this->extractUploadStamp($url);
  3585. if ($stamp) {
  3586. $paperDisplayTitle = $this->buildPaperNamePrefix($paper).'_'.$stamp;
  3587. }
  3588. $updatePayload = [
  3589. $field => $url,
  3590. 'paper_name' => $paperDisplayTitle,
  3591. ];
  3592. $paper->update($updatePayload);
  3593. Log::info('ExamPdfExportService: PDF URL已写入数据库', [
  3594. 'paper_id' => $paperId,
  3595. 'field' => $field,
  3596. 'url' => $url,
  3597. 'paper_name' => $paperDisplayTitle,
  3598. ]);
  3599. }
  3600. } catch (\Throwable $e) {
  3601. Log::error('ExamPdfExportService: 写入PDF URL失败', [
  3602. 'paper_id' => $paperId,
  3603. 'field' => $field,
  3604. 'error' => $e->getMessage(),
  3605. ]);
  3606. }
  3607. }
  3608. /**
  3609. * 保存学情分析PDF URL
  3610. */
  3611. private function saveAnalysisPdfUrl(string $paperId, string $studentId, ?string $recordId, string $url): void
  3612. {
  3613. try {
  3614. if ($recordId) {
  3615. // OCR记录
  3616. $ocrRecord = \App\Models\OCRRecord::find($recordId);
  3617. if ($ocrRecord) {
  3618. $ocrRecord->update(['analysis_pdf_url' => $url]);
  3619. Log::info('ExamPdfExportService: OCR记录学情分析PDF URL已写入数据库', [
  3620. 'record_id' => $recordId,
  3621. 'paper_id' => $paperId,
  3622. 'student_id' => $studentId,
  3623. 'url' => $url,
  3624. ]);
  3625. }
  3626. } else {
  3627. // 【修复】同时更新 exam_analysis_results 表和分析报告表
  3628. $updated = \DB::connection('mysql')->table('exam_analysis_results')
  3629. ->where('student_id', $studentId)
  3630. ->where('paper_id', $paperId)
  3631. ->update([
  3632. 'analysis_pdf_url' => $url,
  3633. 'updated_at' => now(),
  3634. ]);
  3635. if ($updated) {
  3636. Log::info('ExamPdfExportService: 学情分析PDF URL已写入exam_analysis_results表', [
  3637. 'student_id' => $studentId,
  3638. 'paper_id' => $paperId,
  3639. 'url' => $url,
  3640. 'updated_rows' => $updated,
  3641. ]);
  3642. } else {
  3643. Log::warning('ExamPdfExportService: 未找到要更新的学情分析记录', [
  3644. 'student_id' => $studentId,
  3645. 'paper_id' => $paperId,
  3646. ]);
  3647. }
  3648. // 学生记录 - 使用新的 student_reports 表(备用)
  3649. \App\Models\StudentReport::updateOrCreate(
  3650. [
  3651. 'student_id' => $studentId,
  3652. 'report_type' => 'exam_analysis',
  3653. 'paper_id' => $paperId,
  3654. ],
  3655. [
  3656. 'pdf_url' => $url,
  3657. 'generation_status' => 'completed',
  3658. 'generated_at' => now(),
  3659. 'updated_at' => now(),
  3660. ]
  3661. );
  3662. Log::info('ExamPdfExportService: 学生学情报告PDF URL已保存到student_reports表(备用)', [
  3663. 'student_id' => $studentId,
  3664. 'paper_id' => $paperId,
  3665. 'url' => $url,
  3666. ]);
  3667. }
  3668. } catch (\Throwable $e) {
  3669. Log::error('ExamPdfExportService: 写入学情分析PDF URL失败', [
  3670. 'paper_id' => $paperId,
  3671. 'student_id' => $studentId,
  3672. 'record_id' => $recordId,
  3673. 'error' => $e->getMessage(),
  3674. ]);
  3675. }
  3676. }
  3677. /**
  3678. * 【修复】处理父节点掌握度数据
  3679. * 1. 过滤掉掌握度为0或null的父节点
  3680. * 2. 将kp_code转换为友好的kp_name
  3681. * 3. 构建父子层级关系(只显示本次考试相关的子节点)
  3682. */
  3683. private function processParentMasteryLevels(
  3684. array $parentMasteryLevels,
  3685. array $kpNameMap,
  3686. array $examKpCodes = [],
  3687. array $masteryMap = [],
  3688. array $snapshotMasteryData = []
  3689. ): array
  3690. {
  3691. $processed = [];
  3692. foreach ($parentMasteryLevels as $kpCode => $masteryData) {
  3693. // 兼容不同数据结构:可能是数组或数字
  3694. $masteryLevel = is_array($masteryData) ? ($masteryData['mastery_level'] ?? 0) : $masteryData;
  3695. $masteryChange = is_array($masteryData) ? ($masteryData['mastery_change'] ?? null) : null;
  3696. $changeSource = is_array($masteryData) ? ($masteryData['change_source'] ?? null) : null;
  3697. // 获取友好名称
  3698. $kpName = $kpNameMap[$kpCode] ?? $kpCode;
  3699. // 构建父节点数据,包含子节点信息(只显示本次考试相关的)
  3700. $childrenData = $this->getChildKnowledgePoints($kpCode, $kpNameMap, $examKpCodes, $masteryMap);
  3701. $allChildren = $childrenData['all_children'] ?? [];
  3702. // 口径统一:优先使用全部直接子节点均值作为父节点掌握度
  3703. if (! empty($allChildren)) {
  3704. $allLevels = array_map(
  3705. fn ($c) => floatval($c['mastery_level'] ?? 0),
  3706. $allChildren
  3707. );
  3708. $masteryLevel = ! empty($allLevels)
  3709. ? array_sum($allLevels) / count($allLevels)
  3710. : floatval($masteryLevel);
  3711. if (! empty($snapshotMasteryData)) {
  3712. $prevLevels = [];
  3713. foreach ($allChildren as $child) {
  3714. $childCode = (string) ($child['kp_code'] ?? '');
  3715. if ($childCode === '') {
  3716. continue;
  3717. }
  3718. $currentChild = floatval($masteryMap[$childCode] ?? 0);
  3719. $prevFromSnapshot = $snapshotMasteryData[$childCode]['previous_mastery'] ?? null;
  3720. $currFromSnapshot = $snapshotMasteryData[$childCode]['current_mastery'] ?? null;
  3721. $previousChild = $prevFromSnapshot ?? $currFromSnapshot ?? $currentChild;
  3722. $prevLevels[] = floatval($previousChild);
  3723. }
  3724. if (! empty($prevLevels)) {
  3725. $masteryChange = $masteryLevel - (array_sum($prevLevels) / count($prevLevels));
  3726. $changeSource = 'children_all_average';
  3727. }
  3728. }
  3729. }
  3730. // 仅过滤空值;0 掌握度的命中父节点也要展示
  3731. if ($masteryLevel === null) {
  3732. continue;
  3733. }
  3734. $hitLevels = array_map(
  3735. fn ($c) => floatval($c['mastery_level'] ?? 0),
  3736. $childrenData['hit_children'] ?? []
  3737. );
  3738. $hitAvg = ! empty($hitLevels) ? array_sum($hitLevels) / count($hitLevels) : null;
  3739. $hitCount = count($childrenData['hit_children'] ?? []);
  3740. // 父节点仅展示“本卷命中知识点”对应的父节点
  3741. if ($hitCount <= 0) {
  3742. continue;
  3743. }
  3744. $processed[$kpCode] = [
  3745. 'kp_code' => $kpCode,
  3746. 'kp_name' => $kpName,
  3747. 'mastery_level' => round(floatval($masteryLevel), 4),
  3748. 'mastery_percentage' => round(floatval($masteryLevel) * 100, 2),
  3749. 'mastery_change' => $masteryChange !== null ? round(floatval($masteryChange), 4) : null,
  3750. 'change_source' => $changeSource,
  3751. // 兼容旧模板字段:仅命中子节点
  3752. 'children' => $childrenData['hit_children'] ?? [],
  3753. // 新增:全部直接子节点(含掌握度、是否命中)
  3754. 'children_all' => $childrenData['all_children'] ?? [],
  3755. 'children_hit_count' => $hitCount,
  3756. 'children_total_count' => count($childrenData['all_children'] ?? []),
  3757. 'children_hit_avg_mastery' => $hitAvg !== null ? round($hitAvg, 4) : null,
  3758. 'level' => $this->calculateKnowledgePointLevel($kpCode),
  3759. ];
  3760. }
  3761. // 按掌握度降序排序
  3762. uasort($processed, function ($a, $b) {
  3763. return $b['mastery_level'] <=> $a['mastery_level'];
  3764. });
  3765. return $processed;
  3766. }
  3767. /**
  3768. * 【修复】获取子知识点列表(只返回本次考试涉及的)
  3769. */
  3770. private function getChildKnowledgePoints(string $parentKpCode, array $kpNameMap, array $examKpCodes = [], array $masteryMap = []): array
  3771. {
  3772. $allChildren = [];
  3773. $hitChildren = [];
  3774. try {
  3775. $childCodes = DB::connection('mysql')
  3776. ->table('knowledge_points')
  3777. ->where('parent_kp_code', $parentKpCode)
  3778. ->pluck('kp_code')
  3779. ->toArray();
  3780. foreach ($childCodes as $childCode) {
  3781. $isHit = in_array($childCode, $examKpCodes);
  3782. $childData = [
  3783. 'kp_code' => $childCode,
  3784. 'kp_name' => $kpNameMap[$childCode] ?? $childCode,
  3785. 'mastery_level' => floatval($masteryMap[$childCode] ?? 0),
  3786. 'is_hit' => $isHit,
  3787. ];
  3788. $allChildren[] = $childData;
  3789. if ($isHit) {
  3790. $hitChildren[] = $childData;
  3791. }
  3792. }
  3793. } catch (\Exception $e) {
  3794. Log::warning('获取子知识点失败', [
  3795. 'parent_kp_code' => $parentKpCode,
  3796. 'error' => $e->getMessage(),
  3797. ]);
  3798. }
  3799. return [
  3800. 'all_children' => $allChildren,
  3801. 'hit_children' => $hitChildren,
  3802. ];
  3803. }
  3804. /**
  3805. * 当历史父节点概览缺失时,直接由“本卷命中知识点”反推出父节点并构建展示数据。
  3806. */
  3807. private function buildParentMasteryFromHitCodes(
  3808. array $examKpCodes,
  3809. array $kpNameMap,
  3810. array $masteryMap = [],
  3811. array $snapshotMasteryData = []
  3812. ): array {
  3813. $codes = array_values(array_unique(array_filter(array_map(fn ($c) => trim((string) $c), $examKpCodes))));
  3814. if (empty($codes)) {
  3815. return [];
  3816. }
  3817. $rows = DB::connection('mysql')
  3818. ->table('knowledge_points')
  3819. ->whereIn('kp_code', $codes)
  3820. ->whereNotNull('parent_kp_code')
  3821. ->where('parent_kp_code', '!=', '')
  3822. ->select('kp_code', 'parent_kp_code')
  3823. ->get();
  3824. $parentMap = [];
  3825. foreach ($rows as $r) {
  3826. $parentCode = trim((string) ($r->parent_kp_code ?? ''));
  3827. $childCode = trim((string) ($r->kp_code ?? ''));
  3828. if ($parentCode === '' || $childCode === '') {
  3829. continue;
  3830. }
  3831. $parentMap[$parentCode][] = $childCode;
  3832. }
  3833. if (empty($parentMap)) {
  3834. return [];
  3835. }
  3836. $parents = DB::connection('mysql')
  3837. ->table('knowledge_points')
  3838. ->whereIn('kp_code', array_keys($parentMap))
  3839. ->pluck('name', 'kp_code')
  3840. ->toArray();
  3841. $processed = [];
  3842. foreach ($parentMap as $parentCode => $hitChildrenCodes) {
  3843. $childrenData = $this->getChildKnowledgePoints($parentCode, $kpNameMap, $codes, $masteryMap);
  3844. $allChildren = $childrenData['all_children'] ?? [];
  3845. $hitChildren = $childrenData['hit_children'] ?? [];
  3846. $hitCount = count($hitChildren);
  3847. if ($hitCount <= 0) {
  3848. continue;
  3849. }
  3850. $allLevels = array_map(fn ($c) => floatval($c['mastery_level'] ?? 0), $allChildren);
  3851. $masteryLevel = !empty($allLevels) ? array_sum($allLevels) / count($allLevels) : 0.0;
  3852. $prevLevels = [];
  3853. foreach ($allChildren as $child) {
  3854. $childCode = (string) ($child['kp_code'] ?? '');
  3855. if ($childCode === '') {
  3856. continue;
  3857. }
  3858. $currentChild = floatval($masteryMap[$childCode] ?? 0);
  3859. $prevFromSnapshot = $snapshotMasteryData[$childCode]['previous_mastery'] ?? null;
  3860. $currFromSnapshot = $snapshotMasteryData[$childCode]['current_mastery'] ?? null;
  3861. $previousChild = $prevFromSnapshot ?? $currFromSnapshot ?? $currentChild;
  3862. $prevLevels[] = floatval($previousChild);
  3863. }
  3864. $masteryChange = !empty($prevLevels) ? ($masteryLevel - (array_sum($prevLevels) / count($prevLevels))) : null;
  3865. $hitLevels = array_map(fn ($c) => floatval($c['mastery_level'] ?? 0), $hitChildren);
  3866. $hitAvg = !empty($hitLevels) ? array_sum($hitLevels) / count($hitLevels) : null;
  3867. $processed[$parentCode] = [
  3868. 'kp_code' => $parentCode,
  3869. 'kp_name' => $parents[$parentCode] ?? ($kpNameMap[$parentCode] ?? $parentCode),
  3870. 'mastery_level' => round(floatval($masteryLevel), 4),
  3871. 'mastery_percentage' => round(floatval($masteryLevel) * 100, 2),
  3872. 'mastery_change' => $masteryChange !== null ? round(floatval($masteryChange), 4) : null,
  3873. 'change_source' => 'hit_kp_parent_fallback',
  3874. 'children' => $hitChildren,
  3875. 'children_all' => $allChildren,
  3876. 'children_hit_count' => $hitCount,
  3877. 'children_total_count' => count($allChildren),
  3878. 'children_hit_avg_mastery' => $hitAvg !== null ? round($hitAvg, 4) : null,
  3879. 'level' => $this->calculateKnowledgePointLevel($parentCode),
  3880. ];
  3881. }
  3882. uasort($processed, fn ($a, $b) => $b['mastery_level'] <=> $a['mastery_level']);
  3883. return $processed;
  3884. }
  3885. /**
  3886. * 计算知识点层级深度
  3887. */
  3888. private function calculateKnowledgePointLevel(string $kpCode): int
  3889. {
  3890. // 根据kp_code前缀判断层级深度
  3891. // 例如: M (1级) -> M01 (2级) -> M01A (3级)
  3892. if (preg_match('/^[A-Z]+$/', $kpCode)) {
  3893. return 1; // 一级分类,如 M, S, E, G
  3894. } elseif (preg_match('/^[A-Z]+\d+$/', $kpCode)) {
  3895. return 2; // 二级分类,如 M01, S02
  3896. } elseif (preg_match('/^[A-Z]+\d+[A-Z]+$/', $kpCode)) {
  3897. return 3; // 三级分类,如 M01A, S02B
  3898. } elseif (preg_match('/^[A-Z]+\d+[A-Z]+\d+$/', $kpCode)) {
  3899. return 4; // 四级分类,如 M01A1
  3900. }
  3901. return 1; // 默认一级
  3902. }
  3903. /**
  3904. * 构建题目数据(用于PDF生成)
  3905. */
  3906. private function buildQuestionsData(Paper $paper): array
  3907. {
  3908. $paperQuestions = $paper->questions()->orderBy('question_number')->get();
  3909. $questionsData = [];
  3910. foreach ($paperQuestions as $pq) {
  3911. $questionsData[] = [
  3912. 'id' => $pq->question_bank_id,
  3913. 'question_number' => $pq->question_number, // 传递原始题号,确保渲染时序号正确
  3914. 'kp_code' => $pq->knowledge_point,
  3915. 'question_type' => $pq->question_type ?? 'answer',
  3916. 'stem' => $pq->question_text ?? '题目内容缺失',
  3917. 'solution' => $pq->solution ?? '',
  3918. 'answer' => $pq->correct_answer ?? '',
  3919. 'difficulty' => $pq->difficulty ?? 0.5,
  3920. 'score' => $pq->score ?? 5,
  3921. 'tags' => '',
  3922. 'content' => $pq->question_text ?? '',
  3923. ];
  3924. }
  3925. // 获取完整题目详情
  3926. if (! empty($questionsData)) {
  3927. $questionIds = array_column($questionsData, 'id');
  3928. $questionsResponse = $this->questionServiceApi->getQuestionsByIds($questionIds);
  3929. $responseData = $questionsResponse['data'] ?? [];
  3930. if (! empty($responseData)) {
  3931. $responseDataMap = [];
  3932. foreach ($responseData as $respQ) {
  3933. $responseDataMap[$respQ['id']] = $respQ;
  3934. }
  3935. $questionsData = array_map(function ($q) use ($responseDataMap) {
  3936. if (isset($responseDataMap[$q['id']])) {
  3937. $apiData = $responseDataMap[$q['id']];
  3938. $q['stem'] = $apiData['stem'] ?? $q['stem'] ?? $q['content'] ?? '';
  3939. $q['content'] = $q['stem'];
  3940. $q['answer'] = $apiData['answer'] ?? $q['answer'] ?? '';
  3941. $q['solution'] = $apiData['solution'] ?? $q['solution'] ?? '';
  3942. $q['tags'] = $apiData['tags'] ?? $q['tags'] ?? '';
  3943. $q['options'] = $apiData['options'] ?? [];
  3944. }
  3945. return $q;
  3946. }, $questionsData);
  3947. }
  3948. }
  3949. // 按题型分类
  3950. $classified = ['choice' => [], 'fill' => [], 'answer' => []];
  3951. foreach ($questionsData as $q) {
  3952. $type = $this->determineQuestionType($q);
  3953. $classified[$type][] = (object) $q;
  3954. }
  3955. // 【调试】记录题目分类情况
  3956. Log::debug('buildQuestionsData: 题目分类结果', [
  3957. 'total_questions' => count($questionsData),
  3958. 'choice_count' => count($classified['choice']),
  3959. 'fill_count' => count($classified['fill']),
  3960. 'answer_count' => count($classified['answer']),
  3961. 'choice_numbers' => array_map(fn ($q) => $q->question_number ?? 'N/A', $classified['choice']),
  3962. 'fill_numbers' => array_map(fn ($q) => $q->question_number ?? 'N/A', $classified['fill']),
  3963. 'answer_numbers' => array_map(fn ($q) => $q->question_number ?? 'N/A', $classified['answer']),
  3964. ]);
  3965. return $classified;
  3966. }
  3967. /**
  3968. * 获取学生信息
  3969. */
  3970. private function getStudentInfo(?string $studentId): array
  3971. {
  3972. if (! $studentId) {
  3973. return [
  3974. 'name' => '未知学生',
  3975. 'grade' => '未知年级',
  3976. 'class' => '未知班级',
  3977. ];
  3978. }
  3979. try {
  3980. $student = DB::table('students')
  3981. ->where('student_id', $studentId)
  3982. ->first();
  3983. if ($student) {
  3984. return [
  3985. 'name' => $student->name ?? $studentId,
  3986. 'grade' => $student->grade ?? '未知',
  3987. 'class' => $student->class ?? '未知',
  3988. ];
  3989. }
  3990. } catch (\Exception $e) {
  3991. Log::warning('获取学生信息失败', [
  3992. 'student_id' => $studentId,
  3993. 'error' => $e->getMessage(),
  3994. ]);
  3995. }
  3996. return [
  3997. 'name' => $studentId,
  3998. 'grade' => '未知',
  3999. 'class' => '未知',
  4000. ];
  4001. }
  4002. /**
  4003. * 获取教师信息
  4004. */
  4005. private function getTeacherInfo(?string $teacherId): array
  4006. {
  4007. if (! $teacherId) {
  4008. return [
  4009. 'name' => '未知老师',
  4010. 'subject' => '数学',
  4011. ];
  4012. }
  4013. try {
  4014. $query = DB::table('teachers')->where('teacher_id', $teacherId);
  4015. // 仅在列存在时追加,避免 Unknown column 'id'
  4016. if (Schema::hasColumn('teachers', 'id')) {
  4017. $query->orWhere('id', $teacherId);
  4018. }
  4019. $teacher = $query->first();
  4020. if ($teacher) {
  4021. return [
  4022. 'name' => $teacher->name ?? '________',
  4023. 'subject' => $teacher->subject ?? '数学',
  4024. ];
  4025. }
  4026. } catch (\Exception $e) {
  4027. Log::warning('获取教师信息失败', [
  4028. 'teacher_id' => $teacherId,
  4029. 'error' => $e->getMessage(),
  4030. ]);
  4031. }
  4032. return [
  4033. 'name' => '________',
  4034. 'subject' => '数学',
  4035. ];
  4036. }
  4037. /**
  4038. * 判断题目类型
  4039. * 【修复】优先使用 question_type 字段,避免选择题因含有()被误判为填空题
  4040. */
  4041. private function determineQuestionType(array $question): string
  4042. {
  4043. // 1. 【优先】根据已有类型字段判断(最可靠的来源)
  4044. if (! empty($question['question_type'])) {
  4045. $type = strtolower(trim($question['question_type']));
  4046. if (in_array($type, ['choice', '选择题'])) {
  4047. return 'choice';
  4048. }
  4049. if (in_array($type, ['fill', '填空题'])) {
  4050. return 'fill';
  4051. }
  4052. if (in_array($type, ['answer', '解答题'])) {
  4053. return 'answer';
  4054. }
  4055. }
  4056. // 2. 如果没有明确类型,则根据题干内容推断
  4057. $stem = $question['stem'] ?? $question['content'] ?? '';
  4058. if (is_string($stem)) {
  4059. // 检查是否有选项模式 A. B. C. D.
  4060. $hasOptionA = preg_match('/\bA\s*[\.\、\:]/', $stem) || preg_match('/\(A\)/', $stem) || preg_match('/^A[\.\s]/', $stem);
  4061. $hasOptionB = preg_match('/\bB\s*[\.\、\:]/', $stem) || preg_match('/\(B\)/', $stem) || preg_match('/^B[\.\s]/', $stem);
  4062. $hasOptionC = preg_match('/\bC\s*[\.\、\:]/', $stem) || preg_match('/\(C\)/', $stem) || preg_match('/^C[\.\s]/', $stem);
  4063. $hasOptionD = preg_match('/\bD\s*[\.\、\:]/', $stem) || preg_match('/\(D\)/', $stem) || preg_match('/^D[\.\s]/', $stem);
  4064. $optionCount = ($hasOptionA ? 1 : 0) + ($hasOptionB ? 1 : 0) + ($hasOptionC ? 1 : 0) + ($hasOptionD ? 1 : 0);
  4065. if ($optionCount >= 2) {
  4066. return 'choice';
  4067. }
  4068. // 检查是否有填空标记(但要排除选择题的括号)
  4069. if (preg_match('/(\s*)|\(\s*\)/', $stem)) {
  4070. return 'fill';
  4071. }
  4072. }
  4073. // 3. 默认返回解答题
  4074. return 'answer';
  4075. }
  4076. /**
  4077. * 格式化换行符:将字面的 \n 转换为 HTML <br> 标签
  4078. * 用于 PDF 渲染时正确显示换行
  4079. */
  4080. private function formatNewlines(?string $text): ?string
  4081. {
  4082. if ($text === null) {
  4083. return null;
  4084. }
  4085. // 【修复】替换 \n 为 <br>,但保护 LaTeX 命令如 \neq, \ne, \newline, \nu 等
  4086. // 使用负向前瞻 (?![a-zA-Z]) 避免误伤 LaTeX 命令
  4087. $text = preg_replace('/\\\\n(?![a-zA-Z])/', '<br>', $text);
  4088. // 合并连续的 <br>(最多保留2个)
  4089. return preg_replace('/(<br>\s*){3,}/', '<br><br>', $text);
  4090. }
  4091. /**
  4092. * 根据指定的题目生成PDF(新增方法)
  4093. *
  4094. * @param object $paper 虚拟试卷对象
  4095. * @param array $groupedQuestions 按题型分组的题目数据
  4096. * @param array $student 学生信息 ['name' => '', 'grade' => '']
  4097. * @param array $teacher 教师信息 ['name' => '']
  4098. * @param bool $includeGrading 是否包含判卷版本
  4099. * @return array 返回 ['pdf_url' => '...', 'grading_pdf_url' => '...']
  4100. */
  4101. public function generateByQuestions(
  4102. object $paper,
  4103. array $groupedQuestions,
  4104. array $student = [],
  4105. array $teacher = [],
  4106. bool $includeGrading = false
  4107. ): array {
  4108. Log::info('generateByQuestions 开始', [
  4109. 'paper_id' => $paper->paper_id,
  4110. 'question_counts' => [
  4111. 'choice' => count($groupedQuestions['choice'] ?? []),
  4112. 'fill' => count($groupedQuestions['fill'] ?? []),
  4113. 'answer' => count($groupedQuestions['answer'] ?? []),
  4114. ],
  4115. 'include_grading' => $includeGrading,
  4116. ]);
  4117. try {
  4118. $result = [];
  4119. // 1. 生成试卷PDF(不含答案)
  4120. $examHtml = $this->renderCustomExamHtml($paper, $groupedQuestions, $student, $teacher, false);
  4121. if ($examHtml) {
  4122. // 【修复】使用服务端 KaTeX 预渲染 LaTeX 公式
  4123. if ($this->katexRenderer) {
  4124. $examHtml = $this->katexRenderer->renderHtml($examHtml);
  4125. }
  4126. // 与学生卷 PDF 一致:扁长图走自适应宽度(与 renderAndStoreExamPdf 第二参语义对齐)
  4127. $examPdf = $this->buildPdf($examHtml, true);
  4128. if ($examPdf) {
  4129. $examPath = "custom_exams/{$paper->paper_id}_exam.pdf";
  4130. $examUrl = $this->pdfStorageService->put($examPath, $examPdf);
  4131. $result['pdf_url'] = $examUrl;
  4132. Log::info('试卷PDF生成成功', ['url' => $examUrl]);
  4133. }
  4134. }
  4135. // 2. 如果需要,生成判卷PDF(含答案)
  4136. if ($includeGrading) {
  4137. $gradingHtml = $this->renderCustomExamHtml($paper, $groupedQuestions, $student, $teacher, true);
  4138. if ($gradingHtml) {
  4139. // 【修复】使用服务端 KaTeX 预渲染 LaTeX 公式
  4140. if ($this->katexRenderer) {
  4141. $gradingHtml = $this->katexRenderer->renderHtml($gradingHtml);
  4142. }
  4143. $gradingPdf = $this->buildPdf($gradingHtml, true);
  4144. if ($gradingPdf) {
  4145. $gradingPath = "custom_exams/{$paper->paper_id}_grading.pdf";
  4146. $gradingUrl = $this->pdfStorageService->put($gradingPath, $gradingPdf);
  4147. $result['grading_pdf_url'] = $gradingUrl;
  4148. Log::info('判卷PDF生成成功', ['url' => $gradingUrl]);
  4149. }
  4150. }
  4151. }
  4152. return $result;
  4153. } catch (\Throwable $e) {
  4154. Log::error('generateByQuestions 失败', [
  4155. 'paper_id' => $paper->paper_id,
  4156. 'error' => $e->getMessage(),
  4157. 'trace' => $e->getTraceAsString(),
  4158. ]);
  4159. throw $e;
  4160. }
  4161. }
  4162. /**
  4163. * 题目质检专用 PDF:固定使用判题卡体系模板(答案详解 + 判题卡)。
  4164. * 不进入正常组卷流程,仅用于检查题干、答案、解题思路渲染效果。
  4165. *
  4166. * @return array{pdf_url?: string,grading_pdf_url?: string,local_path?: string}
  4167. */
  4168. public function generateQuestionCheckPdf(
  4169. object $paper,
  4170. array $groupedQuestions,
  4171. array $student = [],
  4172. array $teacher = [],
  4173. ?string $localOutputPath = null
  4174. ): array {
  4175. Log::info('generateQuestionCheckPdf 开始', [
  4176. 'paper_id' => $paper->paper_id ?? null,
  4177. 'question_counts' => [
  4178. 'choice' => count($groupedQuestions['choice'] ?? []),
  4179. 'fill' => count($groupedQuestions['fill'] ?? []),
  4180. 'answer' => count($groupedQuestions['answer'] ?? []),
  4181. ],
  4182. ]);
  4183. $studentName = $student['name'] ?? ($paper->student_id ?? '________');
  4184. $examCode = \App\Support\PaperNaming::extractExamCode((string) ($paper->paper_id ?? 'custom'));
  4185. $pdfMeta = [
  4186. 'student_name' => $studentName,
  4187. 'exam_code' => $examCode,
  4188. 'assemble_type_label' => '题目质检',
  4189. 'header_title' => $examCode,
  4190. 'exam_pdf_title' => '题目质检_'.$examCode,
  4191. 'grading_pdf_title' => '题目质检_'.$examCode,
  4192. 'knowledge_pdf_title' => '题目质检_'.$examCode,
  4193. ];
  4194. try {
  4195. // 固定走题目质检专用模板:题干+答案+解题思路 + 判题卡附页
  4196. $html = view('pdf.question-check', [
  4197. 'paper' => $paper,
  4198. 'questions' => $groupedQuestions,
  4199. 'student' => $student,
  4200. 'teacher' => $teacher,
  4201. 'pdfMeta' => $pdfMeta,
  4202. ])->render();
  4203. if (empty(trim($html))) {
  4204. Log::error('generateQuestionCheckPdf: HTML 渲染为空', [
  4205. 'paper_id' => $paper->paper_id ?? null,
  4206. ]);
  4207. return [];
  4208. }
  4209. if ($this->katexRenderer) {
  4210. $html = $this->katexRenderer->renderHtml($html);
  4211. }
  4212. // 与 renderAndStoreExamPdf 学生卷一致:启用扁长图自适应(buildPdf 第二参 true)
  4213. $pdfBinary = $this->buildPdf($this->ensureUtf8Html($html), true);
  4214. if (empty($pdfBinary)) {
  4215. Log::error('generateQuestionCheckPdf: buildPdf 失败', [
  4216. 'paper_id' => $paper->paper_id ?? null,
  4217. ]);
  4218. return [];
  4219. }
  4220. if ($localOutputPath !== null && $localOutputPath !== '') {
  4221. $dir = dirname($localOutputPath);
  4222. if ($dir !== '.' && $dir !== '' && ! is_dir($dir)) {
  4223. @mkdir($dir, 0775, true);
  4224. }
  4225. if (file_put_contents($localOutputPath, $pdfBinary) === false) {
  4226. Log::error('generateQuestionCheckPdf: 本地写入失败', [
  4227. 'paper_id' => $paper->paper_id ?? null,
  4228. 'local_path' => $localOutputPath,
  4229. ]);
  4230. return [];
  4231. }
  4232. Log::info('generateQuestionCheckPdf: 已写入本地', [
  4233. 'paper_id' => $paper->paper_id ?? null,
  4234. 'local_path' => $localOutputPath,
  4235. 'bytes' => strlen($pdfBinary),
  4236. ]);
  4237. return [
  4238. 'local_path' => $localOutputPath,
  4239. ];
  4240. }
  4241. $path = 'custom_exams/'.($paper->paper_id ?? ('custom_'.time())).'.pdf';
  4242. $url = $this->pdfStorageService->put($path, $pdfBinary);
  4243. if (! $url) {
  4244. Log::error('generateQuestionCheckPdf: 上传失败', [
  4245. 'paper_id' => $paper->paper_id ?? null,
  4246. 'path' => $path,
  4247. ]);
  4248. return [];
  4249. }
  4250. return [
  4251. 'pdf_url' => $url,
  4252. 'grading_pdf_url' => $url,
  4253. ];
  4254. } catch (\Throwable $e) {
  4255. Log::error('generateQuestionCheckPdf 失败', [
  4256. 'paper_id' => $paper->paper_id ?? null,
  4257. 'error' => $e->getMessage(),
  4258. 'trace' => $e->getTraceAsString(),
  4259. ]);
  4260. throw $e;
  4261. }
  4262. }
  4263. /**
  4264. * 渲染自定义题目的HTML
  4265. */
  4266. private function renderCustomExamHtml(
  4267. object $paper,
  4268. array $groupedQuestions,
  4269. array $student,
  4270. array $teacher,
  4271. bool $grading
  4272. ): ?string {
  4273. try {
  4274. $viewName = $this->resolveExamViewName($grading);
  4275. $html = view($viewName, [
  4276. 'paper' => $paper,
  4277. 'questions' => $groupedQuestions,
  4278. 'student' => $student,
  4279. 'teacher' => $teacher,
  4280. 'grading' => $grading,
  4281. 'includeAnswer' => false, // exam-paper 视图需要这个变量
  4282. ])->render();
  4283. if (empty(trim($html))) {
  4284. Log::error('renderCustomExamHtml: 视图渲染结果为空', [
  4285. 'paper_id' => $paper->paper_id,
  4286. 'view_name' => $viewName,
  4287. ]);
  4288. return null;
  4289. }
  4290. return $this->ensureUtf8Html($html);
  4291. } catch (\Exception $e) {
  4292. Log::error('renderCustomExamHtml 失败', [
  4293. 'paper_id' => $paper->paper_id,
  4294. 'error' => $e->getMessage(),
  4295. 'trace' => $e->getTraceAsString(),
  4296. ]);
  4297. return null;
  4298. }
  4299. }
  4300. private function resolveExamViewName(bool $useGradingView): string
  4301. {
  4302. if (! $useGradingView) {
  4303. return 'pdf.exam-paper';
  4304. }
  4305. return config('exam.pdf_grading_append_scan_sheet', false)
  4306. ? 'pdf.exam-answer-detail'
  4307. : 'pdf.exam-grading';
  4308. }
  4309. private function normalizeAnswerFieldForPdf(object $question): object
  4310. {
  4311. $normalizedQuestion = clone $question;
  4312. // 以 paper_questions.question_text 为标准题干字段,兼容旧链路 content。
  4313. $questionText = trim((string) ($normalizedQuestion->question_text ?? ''));
  4314. if ($questionText === '') {
  4315. $questionText = trim((string) ($normalizedQuestion->content ?? ''));
  4316. }
  4317. if ($questionText !== '') {
  4318. $normalizedQuestion->question_text = $questionText;
  4319. $normalizedQuestion->content = $questionText;
  4320. }
  4321. $answerText = trim((string) ($normalizedQuestion->answer ?? ''));
  4322. if ($answerText !== '') {
  4323. return $normalizedQuestion;
  4324. }
  4325. foreach (['correct_answer', 'standard_answer', 'reference_answer'] as $fallbackField) {
  4326. $candidate = trim((string) ($normalizedQuestion->{$fallbackField} ?? ''));
  4327. if ($candidate !== '') {
  4328. $normalizedQuestion->answer = $candidate;
  4329. break;
  4330. }
  4331. }
  4332. return $normalizedQuestion;
  4333. }
  4334. /**
  4335. * 生成预览 PDF(用于题目预览验证工具)
  4336. *
  4337. * @param array $questionData 题目数据 ['stem', 'options', 'answer', 'solution', 'question_type']
  4338. * @return array|null 返回 ['url' => '...'] 或 null
  4339. */
  4340. public function generatePreviewPdf(array $questionData): ?array
  4341. {
  4342. try {
  4343. Log::info('generatePreviewPdf 开始', ['question_data' => $questionData]);
  4344. // 渲染 HTML
  4345. $html = $this->renderPreviewHtml($questionData);
  4346. if (empty($html)) {
  4347. Log::error('generatePreviewPdf: HTML 渲染为空');
  4348. return null;
  4349. }
  4350. // 生成 PDF
  4351. $pdfContent = $this->buildPdf($html);
  4352. if (empty($pdfContent)) {
  4353. Log::error('generatePreviewPdf: PDF 生成为空');
  4354. return null;
  4355. }
  4356. // 保存到临时目录
  4357. $filename = 'preview_'.uniqid().'.pdf';
  4358. $path = "previews/{$filename}";
  4359. $url = $this->pdfStorageService->put($path, $pdfContent);
  4360. Log::info('generatePreviewPdf 成功', ['url' => $url]);
  4361. return ['url' => $url];
  4362. } catch (\Exception $e) {
  4363. Log::error('generatePreviewPdf 失败', [
  4364. 'error' => $e->getMessage(),
  4365. 'trace' => $e->getTraceAsString(),
  4366. ]);
  4367. return null;
  4368. }
  4369. }
  4370. /**
  4371. * 渲染预览 HTML
  4372. */
  4373. private function renderPreviewHtml(array $questionData): string
  4374. {
  4375. $stem = $questionData['stem'] ?? '';
  4376. $options = $questionData['options'] ?? null;
  4377. $answer = $questionData['answer'] ?? '';
  4378. $solution = $questionData['solution'] ?? '';
  4379. $questionType = $questionData['question_type'] ?? 'fill';
  4380. // 使用 MathFormulaProcessor 处理公式
  4381. $processedStem = MathFormulaProcessor::processFormulas($stem);
  4382. $processedAnswer = MathFormulaProcessor::processFormulas($answer);
  4383. $processedSolution = MathFormulaProcessor::processFormulas($this->formatNewlines($solution));
  4384. $processedOptions = null;
  4385. if ($options && is_array($options)) {
  4386. $processedOptions = [];
  4387. foreach ($options as $key => $value) {
  4388. $processedOptions[$key] = MathFormulaProcessor::processFormulas($value);
  4389. }
  4390. }
  4391. // 渲染 HTML
  4392. return view('pdf.question-preview', [
  4393. 'stem' => $processedStem,
  4394. 'options' => $processedOptions,
  4395. 'answer' => $processedAnswer,
  4396. 'solution' => $processedSolution,
  4397. 'questionType' => $questionType,
  4398. ])->render();
  4399. }
  4400. /**
  4401. * 批量获取知识点的讲解内容
  4402. *
  4403. * @param array $kpCodes 知识点代码数组
  4404. * @return array [kp_code => explanation]
  4405. */
  4406. public function buildExplanations(array $kpCodes): array
  4407. {
  4408. $result = [];
  4409. if (empty($kpCodes)) {
  4410. return $result;
  4411. }
  4412. try {
  4413. // 批量获取知识点讲解
  4414. $kps = \App\Models\KnowledgePoint::whereIn('kp_code', $kpCodes)->get()->keyBy('kp_code');
  4415. // 有多少算多少
  4416. foreach ($kpCodes as $kpCode) {
  4417. $kp = $kps->get($kpCode);
  4418. if ($kp && ! empty($kp->explanation)) {
  4419. $result[] = [
  4420. 'kp_code' => $kpCode,
  4421. 'kp_name' => $kp->name ?? $kpCode,
  4422. 'explanation' => $this->normalizeKpExplanation($kp->explanation),
  4423. ];
  4424. continue;
  4425. }
  4426. $result[] = [
  4427. 'kp_code' => $kpCode,
  4428. 'kp_name' => $kp->name ?? $kpCode,
  4429. 'explanation' => $this->normalizeKpExplanation(
  4430. $this->getDefaultExplanation($kpCode, $kp->name ?? $kpCode)
  4431. ),
  4432. ];
  4433. }
  4434. } catch (\Throwable $e) {
  4435. Log::warning('批量获取知识点讲解失败', [
  4436. 'kp_codes' => $kpCodes,
  4437. 'error' => $e->getMessage(),
  4438. ]);
  4439. // 失败时返回默认内容
  4440. foreach ($kpCodes as $kpCode) {
  4441. $result[] = [
  4442. 'kp_code' => $kpCode,
  4443. 'kp_name' => $kpCode,
  4444. 'explanation' => $this->normalizeKpExplanation(
  4445. $this->getDefaultExplanation($kpCode, $kpCode)
  4446. ),
  4447. ];
  4448. }
  4449. }
  4450. return $result;
  4451. }
  4452. /**
  4453. * 获取默认的知识点讲解内容
  4454. */
  4455. private function getDefaultExplanation(string $kpCode, string $kpName): string
  4456. {
  4457. // 默认讲解模板
  4458. // 注意:PHP HEREDOC 中 \e 会被解释为 ESC 字符,所以需要用 \\end 而非 \end
  4459. return <<<'MARKDOWN'
  4460. ## 知识点
  4461. (1) 核心定义:二元一次方程是含有两个未知数且每个未知数的次数都是 1 的方程,一般形式为 $ax + by = c$(其中 $a,b,c$ 为常数,且 $a,b$ 不同时为 0)。二元一次方程组是由两个(或两个以上)二元一次方程组成,常见为
  4462. $$
  4463. \begin{cases}
  4464. a_1x + b_1y = c_1\\
  4465. a_2x + b_2y = c_2
  4466. \end{cases}
  4467. $$
  4468. 方程组应用建模就是把题目中的数量关系翻译成方程组,通过求解得到实际问题的答案。
  4469. (2) 性质定理:方程组的解必须同时满足方程组中的每一个方程,因此解是两个方程公共的 $(x,y)$。常用解法有代入消元法与加减消元法:代入消元法适合某个方程易表示成 $x = \dots$ 或 $y = \dots$;加减消元法适合两个方程中某个未知数的系数相同或相反,便于相加或相减消去一个未知数。建模时常用关系包括:总量关系(如“总数 = 部分之和”)、单价数量总价关系(“$总价 = 单价 \times 数量$”)、路程速度时间关系($路程 = 速度 \times 时间$)等。
  4470. (3) 注意事项:设未知数要带单位与含义,例如“设甲买了 $x$ 支笔”;列方程要对应同一类量,别把“支数”和“元数”混在一条等式里;检查条件是否满足题意(如数量应为整数且 $> 0$);消元后别忘了回代求另一个未知数;最后答案要写清对象与单位,并可把解代回原式检验。
  4471. ## 知识点应用
  4472. - 典型例题:文具店买笔和本子。小明买了 2 支笔和 3 本本子共花 19 元;小红买了 3 支笔和 2 本本子共花 18 元。求每支笔和每本本子的单价。
  4473. - 关键步骤:
  4474. 1. 设未知数并写出含义:设每支笔单价为 $x$ 元,每本本子单价为 $y$ 元。
  4475. 2. 根据题意列方程组:由“$总价 = 单价 \times 数量$”得
  4476. $$
  4477. \begin{cases}
  4478. 2x + 3y = 19\\
  4479. 3x + 2y = 18
  4480. \end{cases}
  4481. $$
  4482. 3. 选择消元并求解:用加减消元。将第一式乘 3、第二式乘 2:
  4483. $$
  4484. \begin{cases}
  4485. 6x + 9y = 57\\
  4486. 6x + 4y = 36
  4487. \end{cases}
  4488. $$
  4489. 相减得 $5y = 21$,所以 $y = \dfrac{21}{5} = 4.2$。代入 $3x + 2y = 18$ 得 $3x + 8.4 = 18$,所以 $3x = 9.6$,$x = 3.2$。
  4490. - 结论:每支笔 3.2 元,每本本子 4.2 元(两者均 $> 0$,符合题意)。
  4491. MARKDOWN;
  4492. }
  4493. private function normalizeKpExplanation(string $content): string
  4494. {
  4495. $content = trim($content);
  4496. if ($content === '') {
  4497. return '';
  4498. }
  4499. if ($this->looksLikeHtml($content)) {
  4500. return $content;
  4501. }
  4502. if (! class_exists(\Michelf\MarkdownExtra::class)) {
  4503. $safe = htmlspecialchars($content, ENT_QUOTES, 'UTF-8');
  4504. return '<div class="kp-markdown-container kp-markdown-content">'.nl2br($safe).'</div>';
  4505. }
  4506. $parser = new \Michelf\MarkdownExtra;
  4507. $markdown = html_entity_decode($content, ENT_QUOTES, 'UTF-8');
  4508. $rendered = $parser->transform($markdown);
  4509. return '<div class="kp-markdown-container kp-markdown-content">'.$rendered.'</div>';
  4510. }
  4511. private function looksLikeHtml(string $content): bool
  4512. {
  4513. if (stripos($content, 'kp-markdown-container') !== false ||
  4514. stripos($content, 'kp-markdown-content') !== false) {
  4515. return true;
  4516. }
  4517. return (bool) preg_match('/<\s*(p|div|h[1-6]|ul|ol|li|table|span|blockquote|pre|code|br)\b/i', $content);
  4518. }
  4519. private function shouldUseDefaultExplanations(): bool
  4520. {
  4521. if (!Schema::hasTable('knowledge_points')) {
  4522. return true;
  4523. }
  4524. return !Schema::hasColumn('knowledge_points', 'explanation');
  4525. }
  4526. }