main.py 473 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851
  1. import asyncio
  2. import json
  3. import logging
  4. import math
  5. import os
  6. import posixpath
  7. import secrets
  8. import time
  9. from contextlib import asynccontextmanager
  10. from datetime import datetime, timedelta, timezone
  11. from logging.handlers import RotatingFileHandler
  12. from pathlib import Path, PurePosixPath
  13. from urllib.parse import urlparse
  14. from fastapi import FastAPI
  15. from fastapi.responses import FileResponse
  16. from fastapi.staticfiles import StaticFiles
  17. from sqlalchemy import delete, or_, select, text
  18. from backend.app.api.routes import (
  19. ams_history,
  20. api_keys,
  21. archive_purge,
  22. archives,
  23. auth,
  24. bug_report,
  25. camera,
  26. camwall,
  27. cloud,
  28. discovery,
  29. external_links,
  30. filaments,
  31. finance,
  32. firmware,
  33. github_backup,
  34. groups,
  35. ha_sensors,
  36. inventory,
  37. kprofiles,
  38. labels,
  39. library,
  40. library_tags,
  41. library_trash,
  42. library_variants,
  43. local_backup,
  44. local_presets,
  45. location_ha_sensors,
  46. maintenance,
  47. makerworld,
  48. metrics,
  49. mfa,
  50. notification_templates,
  51. notifications,
  52. obico,
  53. orca_cloud,
  54. pending_uploads,
  55. pipeline_runs,
  56. print_log,
  57. print_queue,
  58. printer_sensor_history,
  59. printers,
  60. projects,
  61. scheduled_dryings,
  62. settings as settings_routes,
  63. slice_jobs,
  64. slicer_pipelines,
  65. slicer_presets,
  66. smart_plugs,
  67. sponsor_prompt,
  68. spoolbuddy,
  69. spoolman,
  70. spoolman_inventory,
  71. support,
  72. system,
  73. updates,
  74. user_notifications,
  75. users,
  76. virtual_printers,
  77. webhook,
  78. websocket,
  79. )
  80. from backend.app.api.routes.maintenance import _get_printer_maintenance_internal, ensure_default_types
  81. from backend.app.api.routes.support import init_debug_logging
  82. from backend.app.core.config import APP_VERSION, settings as app_settings
  83. from backend.app.core.database import async_session, engine, init_db
  84. from backend.app.core.tasks import spawn_background_task
  85. from backend.app.core.websocket import ws_manager
  86. from backend.app.services import print_dispatch_context
  87. from backend.app.services.archive import ArchiveService, peek_plate_index_in_3mf, swap_plate_suffix
  88. from backend.app.services.archive_purge import archive_purge_service
  89. from backend.app.services.bambu_ftp import (
  90. FileNotOnPrinterError,
  91. cache_3mf_download,
  92. clear_3mf_cache,
  93. download_file_async,
  94. download_file_try_paths_async,
  95. ftps_handshake_blocked,
  96. get_cached_3mf,
  97. get_ftp_retry_settings,
  98. normalize_3mf_name,
  99. with_ftp_retry,
  100. )
  101. from backend.app.services.bambu_mqtt import PrinterState
  102. from backend.app.services.energy_plug import energy_plug_candidates, select_energy_reading
  103. from backend.app.services.github_backup import github_backup_service
  104. from backend.app.services.ha_sensor_manager import ha_sensor_manager
  105. from backend.app.services.homeassistant import homeassistant_service
  106. from backend.app.services.library_trash import library_trash_service
  107. from backend.app.services.local_backup import local_backup_service
  108. from backend.app.services.location_ha_sensor_manager import location_ha_sensor_manager
  109. from backend.app.services.mqtt_relay import mqtt_relay
  110. from backend.app.services.mqtt_smart_plug import mqtt_smart_plug_service
  111. from backend.app.services.notification_service import notification_service
  112. from backend.app.services.obico_detection import obico_detection_service
  113. from backend.app.services.print_cost_estimate import plate_scoped_run_estimate as _plate_scoped_run_estimate
  114. from backend.app.services.print_scheduler import scheduler as print_scheduler
  115. from backend.app.services.print_storage import (
  116. REASON_FTPS_COOLOFF,
  117. external_storage_present,
  118. ftp_probe_paths,
  119. print_file_reachable_over_ftp,
  120. )
  121. from backend.app.services.printer_manager import (
  122. init_printer_connections,
  123. parse_plate_id,
  124. printer_manager,
  125. printer_state_to_dict,
  126. resolve_plate_id,
  127. )
  128. from backend.app.services.slot_kprofile import find_slot_kprofile_for_extruder
  129. from backend.app.services.slot_nozzle import (
  130. nozzle_diameter_for_extruder,
  131. nozzle_flow_for_extruder,
  132. resolve_slot_nozzle,
  133. )
  134. from backend.app.services.smart_plug_manager import smart_plug_manager
  135. from backend.app.services.spool_assignment_notifications import (
  136. notify_missing_spool_assignments_on_print_start,
  137. )
  138. from backend.app.services.spool_filament_preset import printer_safe_filament_id
  139. from backend.app.services.spoolman import close_spoolman_client, get_spoolman_client, init_spoolman_client
  140. from backend.app.services.spoolman_tracking import (
  141. cleanup_tracking as _cleanup_spoolman_tracking,
  142. report_usage as _report_spoolman_usage,
  143. store_print_data as _store_spoolman_print_data,
  144. )
  145. from backend.app.services.tasmota import tasmota_service
  146. from backend.app.utils.ams_drying import is_drying_active, temperature_alarm_suppressed
  147. from backend.app.utils.filament_types import printer_filament_type
  148. from backend.app.utils.fts_routing import extruder_for_inlet
  149. from backend.app.utils.local_time import utcnow_naive
  150. from backend.app.utils.print_jobs import is_internal_printer_job
  151. # =============================================================================
  152. # Dependency Check - runs before other imports to give helpful error messages
  153. # =============================================================================
  154. def _start_error_server(missing_packages: list):
  155. """Start a minimal HTTP server to display dependency errors in browser."""
  156. import os
  157. import signal
  158. from http.server import BaseHTTPRequestHandler, HTTPServer
  159. packages_html = "".join(f"<li><code>{p}</code></li>" for p in missing_packages)
  160. html = f"""<!DOCTYPE html>
  161. <html>
  162. <head>
  163. <title>Bambuddy - Setup Required</title>
  164. <style>
  165. body {{
  166. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  167. background: #0f172a; color: #e2e8f0;
  168. display: flex; justify-content: center; align-items: center;
  169. min-height: 100vh; margin: 0; padding: 20px; box-sizing: border-box;
  170. }}
  171. .container {{
  172. background: #1e293b; border-radius: 12px; padding: 40px;
  173. max-width: 600px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  174. }}
  175. h1 {{ color: #f87171; margin-bottom: 10px; }}
  176. h2 {{ color: #94a3b8; font-weight: normal; margin-top: 0; }}
  177. .packages {{
  178. background: #0f172a; border-radius: 8px; padding: 20px;
  179. margin: 20px 0; text-align: left;
  180. }}
  181. .packages ul {{ margin: 0; padding-left: 20px; }}
  182. .packages li {{ color: #fbbf24; margin: 8px 0; }}
  183. .command {{
  184. background: #0f172a; border-radius: 8px; padding: 15px 20px;
  185. margin: 15px 0; font-family: monospace; color: #4ade80;
  186. text-align: left; overflow-x: auto;
  187. }}
  188. .note {{ color: #94a3b8; font-size: 14px; margin-top: 20px; }}
  189. </style>
  190. </head>
  191. <body>
  192. <div class="container">
  193. <h1>Setup Required</h1>
  194. <h2>Missing Python packages</h2>
  195. <div class="packages"><ul>{packages_html}</ul></div>
  196. <p>To fix, run this command on your server:</p>
  197. <div class="command">pip install -r requirements.txt</div>
  198. <p>Or if using a virtual environment:</p>
  199. <div class="command">./venv/bin/pip install -r requirements.txt</div>
  200. <p class="note">After installing, restart Bambuddy:<br>
  201. <code>sudo systemctl restart bambuddy</code></p>
  202. </div>
  203. </body>
  204. </html>"""
  205. class ErrorHandler(BaseHTTPRequestHandler):
  206. def do_GET(self):
  207. self.send_response(503)
  208. self.send_header("Content-type", "text/html")
  209. self.end_headers()
  210. self.wfile.write(html.encode())
  211. def log_message(self, format, *args):
  212. print(f"[Error Server] {args[0]}")
  213. port = int(os.environ.get("PORT", 8000))
  214. print(f"\nStarting error server on http://0.0.0.0:{port}")
  215. print("Visit this URL in your browser to see the error details.\n")
  216. server = HTTPServer(("0.0.0.0", port), ErrorHandler) # nosec B104
  217. def shutdown(signum, frame):
  218. print("\nShutting down error server...")
  219. raise SystemExit(0)
  220. signal.signal(signal.SIGTERM, shutdown)
  221. signal.signal(signal.SIGINT, shutdown)
  222. server.serve_forever()
  223. def check_dependencies():
  224. """Check that all required packages are installed."""
  225. missing = []
  226. # Map of import name -> package name (for pip install)
  227. required = {
  228. "jwt": "PyJWT",
  229. "fastapi": "fastapi",
  230. "uvicorn": "uvicorn",
  231. "sqlalchemy": "sqlalchemy",
  232. "aiosqlite": "aiosqlite",
  233. "pydantic": "pydantic",
  234. "paho.mqtt": "paho-mqtt",
  235. }
  236. for module, package in required.items():
  237. try:
  238. __import__(module)
  239. except ImportError:
  240. missing.append(package)
  241. if missing:
  242. print("\n" + "=" * 60)
  243. print("ERROR: Missing required Python packages!")
  244. print("=" * 60)
  245. print(f"\nMissing packages: {', '.join(missing)}")
  246. print("\nTo fix, run:")
  247. print(" pip install -r requirements.txt")
  248. print("\nOr if using a virtual environment:")
  249. print(" ./venv/bin/pip install -r requirements.txt")
  250. print("=" * 60 + "\n")
  251. _start_error_server(missing)
  252. check_dependencies()
  253. # =============================================================================
  254. # Import settings first for logging configuration
  255. # Configure logging based on settings
  256. # DEBUG=true -> DEBUG level, else use LOG_LEVEL setting
  257. log_level_str = "DEBUG" if app_settings.debug else app_settings.log_level.upper()
  258. log_level = getattr(logging, log_level_str, logging.INFO)
  259. # Trace ID column ([-] when no request scope is active — startup, MQTT
  260. # callbacks, scheduled tasks not chained from a request — so the column
  261. # stays visually aligned and missing values are obvious in grep). See
  262. # backend/app/core/trace.py for the ContextVar that feeds this slot.
  263. log_format = "%(asctime)s %(levelname)s [%(name)s] [%(trace_id)s] %(message)s"
  264. # Create root logger
  265. root_logger = logging.getLogger()
  266. root_logger.setLevel(log_level)
  267. # Trace-ID injection: this filter populates record.trace_id from the
  268. # per-request ContextVar so the format string above can reference it.
  269. # Attached to each HANDLER (not the root logger) because Python's
  270. # logging semantics only invoke a logger's filters on records that
  271. # *originated* at that logger — records propagated up from child
  272. # loggers (every named logger in the app) never trigger root's filter.
  273. # Putting it on the handlers means every record any handler emits gets
  274. # trace_id injected just before the formatter runs, regardless of which
  275. # logger created the record. Without this, the formatter raises
  276. # KeyError on every child-logger record and the record is silently
  277. # dropped — which is exactly the "logs/bambuddy.log only shows logs
  278. # partially" bug we hit. See backend/app/core/trace.py for the
  279. # ContextVar the filter reads.
  280. from backend.app.core.trace import TraceIDFilter
  281. _trace_id_filter = TraceIDFilter()
  282. # Console handler - always enabled
  283. console_handler = logging.StreamHandler()
  284. console_handler.setLevel(log_level)
  285. console_handler.setFormatter(logging.Formatter(log_format))
  286. console_handler.addFilter(_trace_id_filter)
  287. root_logger.addHandler(console_handler)
  288. # File handler - only in production or if explicitly enabled
  289. if app_settings.log_to_file:
  290. log_file = app_settings.log_dir / "bambuddy.log"
  291. file_handler = RotatingFileHandler(
  292. log_file,
  293. maxBytes=app_settings.log_max_bytes,
  294. backupCount=app_settings.log_backup_count,
  295. encoding="utf-8",
  296. )
  297. file_handler.setLevel(log_level)
  298. file_handler.setFormatter(logging.Formatter(log_format))
  299. file_handler.addFilter(_trace_id_filter)
  300. root_logger.addHandler(file_handler)
  301. logging.info("Logging to file: %s", log_file)
  302. # Pipe uvicorn's HTTP access log to bambuddy.log too. Uvicorn ships its
  303. # access logger with propagate=False by default, so without this attach
  304. # there is no on-disk record of which endpoint triggered a server-state
  305. # change — the rogue stop_print mystery on 2026-04-26 was untraceable
  306. # for exactly this reason. Filtered to write methods only
  307. # (POST/PUT/PATCH/DELETE) so the high-volume status-poll GETs from the
  308. # frontend don't churn the rotation window faster than it's useful.
  309. from backend.app.core.logging_filters import (
  310. CancelledPoolNoiseFilter,
  311. WriteRequestsOnlyFilter,
  312. )
  313. uvicorn_access_logger = logging.getLogger("uvicorn.access")
  314. uvicorn_access_logger.addHandler(file_handler)
  315. uvicorn_access_logger.addFilter(WriteRequestsOnlyFilter())
  316. # Uvicorn's access logger has propagate=False (its own default), so the
  317. # root-attached TraceIDFilter never sees these records. Attach a
  318. # second instance directly so HTTP access lines carry the same trace
  319. # ID column as the application logs they correlate with.
  320. uvicorn_access_logger.addFilter(TraceIDFilter())
  321. # Drop SQLAlchemy connection-pool log noise that's caused by Starlette's
  322. # BaseHTTPMiddleware cancelling the inner task scope on client
  323. # disconnect (#1112). The cancel-safe `get_db` already prevents the
  324. # underlying transaction leak; this filter only suppresses the residual
  325. # log records that pre-existing pools still emit during their cleanup.
  326. logging.getLogger("sqlalchemy.pool").addFilter(CancelledPoolNoiseFilter())
  327. # Reduce noise from third-party libraries in production
  328. if not app_settings.debug:
  329. logging.getLogger("sqlalchemy.engine").setLevel(logging.WARNING)
  330. logging.getLogger("httpcore").setLevel(logging.WARNING)
  331. logging.getLogger("httpx").setLevel(logging.WARNING)
  332. logging.getLogger("paho.mqtt").setLevel(logging.WARNING)
  333. logging.info("Bambuddy starting - debug=%s, log_level=%s", app_settings.debug, log_level_str)
  334. # Track active prints: {(printer_id, filename): archive_id}
  335. _active_prints: dict[tuple[int, str], int] = {}
  336. # #1721: stage-22 pre-captured finish photo bytes per printer. on_finish_photo_moment
  337. # fires when stg_cur enters 22 ("Filament unloading") at end-of-print — toolhead
  338. # parked, bed not yet dropped — and grabs a single camera frame into this cache.
  339. # `_background_finish_photo` (inside on_print_complete) consumes the cached bytes
  340. # instead of running its own grab-now chain when present, so the finish photo
  341. # captures the better-framed pre-bed-drop moment without us having to force
  342. # timelapse on at dispatch (the #1397 mechanism that caused #1721's per-layer
  343. # nozzle parking on slicer profiles with Timelapse Type = Smooth).
  344. #
  345. # #2708: the bytes in here are ALWAYS already rotated by the printer's
  346. # camera_rotation. `on_finish_photo_moment` owns that, because one of its
  347. # sources (the #1867 in-print bank) is rotated before it ever reaches the
  348. # bank and the others are not — so the consumer can't tell them apart and
  349. # must not rotate again.
  350. _stage22_finish_frames: dict[int, bytes] = {}
  351. # #1790: per-printer producer-done event. Set by `on_finish_photo_moment` in its
  352. # `finally` block (whether it captured a frame or not). The consumer in
  353. # `_background_finish_photo` waits on it before reading `_stage22_finish_frames`
  354. # so the FINISH-state fallback path — where moment and completion are dispatched
  355. # back-to-back — doesn't race past the producer with an empty pop, and the
  356. # consumer's RTSP fallback can't collide with the producer's still-in-flight RTSP
  357. # grab (Bambu printers allow only one RTSP client at a time).
  358. _stage22_finish_in_flight: dict[int, asyncio.Event] = {}
  359. # #1867: rolling "last in-print camera frame" per printer. Refreshed on
  360. # layer-change and on print-progress advances (#2547) while the model is still
  361. # printing, then consumed by the FINISH-state finish-photo path when the
  362. # dispatcher recorded that it injected End G-code into this print. Bambu
  363. # reports gcode_state=FINISH AFTER the user End G-code (e.g. SwapMod
  364. # plate-swap) has run, so a live grab there would capture the swapped/empty
  365. # plate.
  366. #
  367. # The load-bearing property: both drivers are print telemetry that stops before
  368. # the End G-code executes — no further layer_num increases, and mc_percent
  369. # freezes — so the last banked frame is always the finished print before the
  370. # swap. Anything added as a third driver must hold that same property.
  371. _inprint_frame_bank: dict[int, bytes] = {}
  372. # Monotonic timestamp of the last banked frame per printer — throttles banking
  373. # so tall prints don't add a camera grab on every layer.
  374. _inprint_frame_bank_ts: dict[int, float] = {}
  375. # Minimum seconds between banked frames, except the final object layer which
  376. # always refreshes for the best framing.
  377. _INPRINT_BANK_MIN_INTERVAL = 25.0
  378. # Per-printer "connected" edge tracker. Used by `on_printer_status_change`
  379. # to fire `reconcile_stale_active_prints` exactly once per (re)connection
  380. # (#1542 follow-up — power-cycle ghost prints). The value is True after
  381. # the first connected status update for that connection; transitions back
  382. # to False whenever we observe `state.connected = False` so the next
  383. # reconnect re-arms reconciliation. Keyed by printer_id.
  384. _printer_reconciled_since_connect: dict[int, bool] = {}
  385. # Same edge, same keying, for priming the printer's calibration table exactly
  386. # once per (re)connection. Nothing else asks for it on connect: state.kprofiles
  387. # is otherwise filled only when someone opens the Profiles page or Configure
  388. # Slot, when a GitHub backup runs, or when the printer happens to answer
  389. # somebody else's query on the report topic. Until then the AMS slot card has
  390. # no K value to show on the printers whose trays carry none of their own
  391. # (#2854 — H2-series report cali_idx and nothing more).
  392. _printer_kprofiles_primed_since_connect: dict[int, bool] = {}
  393. # Track expected prints from reprint/scheduled (skip auto-archiving for these)
  394. # {(printer_id, filename): archive_id}
  395. _expected_prints: dict[tuple[int, str], int] = {}
  396. # Track AMS mapping for prints: {archive_id: [global_tray_id_per_slot]}
  397. # Used by usage tracker to map 3MF slots to physical AMS trays
  398. _print_ams_mappings: dict[int, list[int]] = {}
  399. # Track cost center selection for the current print run: {archive_id: cost_center_id}
  400. _print_cost_center_ids: dict[int, int] = {}
  401. # Track plate_id for prints from multi-plate 3MFs: {archive_id: plate_id}
  402. # Used by usage tracker to scope 3MF parsing to the dispatched plate (#1697).
  403. # Populated by direct-Print and queue dispatch paths; queue prints also have a
  404. # redundant queue-item lookup in on_print_start so this dict isn't load-bearing
  405. # for the queue path. Cleared on print completion or TTL eviction.
  406. _print_plate_ids: dict[int, int] = {}
  407. # Track progress milestones for notifications: {printer_id: last_milestone_notified}
  408. # Milestones are 25, 50, 75. Value of 0 means no milestone notified yet for current print.
  409. _last_progress_milestone: dict[int, int] = {}
  410. # Track whether first layer complete notification has been sent for current print
  411. _first_layer_notified: dict[int, bool] = {}
  412. # Track whether we already sent a kill-switch stop for the current unauthorized print
  413. _unauthorized_print_kill_sent: set[int] = set()
  414. # The MQTT status callback is a hot path. Cache the two-setting kill-switch
  415. # lookup briefly so an unknown active print does not query the database on
  416. # every status frame. A short TTL keeps settings changes responsive.
  417. _KILL_SWITCH_SETTING_CACHE_TTL_SECONDS = 5.0
  418. _kill_switch_setting_cache: tuple[bool, float] | None = None
  419. # Provider notification started when the kill switch stops a print. The later
  420. # MQTT print-complete callback awaits this task and only sends its regular
  421. # provider notification when the immediate attempt failed.
  422. _kill_switch_notification_tasks: dict[int, asyncio.Task[bool]] = {}
  423. # Track HMS errors that have been notified: {printer_id: set of error codes}
  424. # This prevents sending duplicate notifications for the same error
  425. _notified_hms_errors: dict[int, set[str]] = {}
  426. # Track when HMS errors were last seen: {printer_id: timestamp}
  427. # Used to debounce clearing — prevents flapping errors from re-triggering notifications
  428. _hms_last_seen: dict[int, float] = {}
  429. _HMS_CLEAR_GRACE_SECONDS = 30.0
  430. # Track timelapse file baselines at print start: {printer_id: set of video filenames}
  431. # Used for snapshot-diff detection at print completion
  432. _timelapse_baselines: dict[int, set[str]] = {}
  433. # Track printers waiting for bed to cool after print completion.
  434. # Event-driven: fires when bed_temper arrives via MQTT below threshold.
  435. # {printer_id: {"threshold": float, "filename": str, "registered_at": float}}
  436. _bed_cool_waiters: dict[int, dict] = {}
  437. # Track printers where the user explicitly stopped the print from the queue UI.
  438. # When on_print_complete fires with status "failed" for these printers we treat it
  439. # as "cancelled" (stopped by user) so the correct notification email is sent.
  440. _user_stopped_printers: set[int] = set()
  441. # Offline-notification edge state (#1752): fire `on_printer_offline` exactly
  442. # once when a printer transitions connected → disconnected. `_printer_last_connected`
  443. # holds the previous observation so we only fire on the True → False edge (a
  444. # False → False repeat doesn't notify; an initial False at startup doesn't
  445. # notify either, since there's no prior True). `_printer_offline_notify_tasks`
  446. # holds the per-printer pending asyncio task that fires the notification
  447. # after a debounce window — cancelled if the printer reconnects before the
  448. # window elapses, so transient MQTT blips don't flood the user.
  449. _printer_last_connected: dict[int, bool] = {}
  450. _printer_offline_notify_tasks: dict[int, asyncio.Task] = {}
  451. # Debounce: a printer must stay offline this long before we notify. Sized
  452. # against the staleness path (`bambu_mqtt.py::STALE_RECONNECT_COOLDOWN = 30s`)
  453. # so a single stale-trigger cooldown isn't enough to fire — only a real
  454. # offline that survives one reconnect attempt notifies.
  455. _PRINTER_OFFLINE_NOTIFY_DEBOUNCE_SECONDS = 60.0
  456. # HMS short-code → human-readable failure reason. Used by _dispatch_archive_update
  457. # when status="failed" to label the print's failure_reason in archives.
  458. #
  459. # Earlier code matched on `module` alone (e.g. "any module 0x0C HMS → Layer shift"),
  460. # which is wrong on two counts:
  461. # 1. Real layer-shift codes live in module 0x03 (see Bambu wiki), not 0x0C.
  462. # 2. Module 0x0C is "Motion Controller" — broad category that also covers cameras
  463. # and visual markers, AND the H2D firmware emits a 0x0C HMS (0C00_001B, not in
  464. # the public wiki) as part of its user-cancel sequence. Matching on the module
  465. # alone caused user-cancellations to be archived as "Layer shift" failures.
  466. # We now match by full short code only — anything not in this map leaves
  467. # failure_reason=None rather than guessing.
  468. _HMS_FAILURE_REASONS: dict[str, str] = {
  469. # Layer shift / step loss
  470. "0300_4057": "Layer shift",
  471. "0300_4068": "Layer shift",
  472. "0300_800C": "Layer shift",
  473. # Filament runout (printer-side & per-AMS-slot)
  474. "0300_8004": "Filament runout",
  475. "0700_8011": "Filament runout",
  476. "0701_8011": "Filament runout",
  477. "0702_8011": "Filament runout",
  478. "0703_8011": "Filament runout",
  479. "0704_8011": "Filament runout",
  480. "0705_8011": "Filament runout",
  481. "0706_8011": "Filament runout",
  482. "0707_8011": "Filament runout",
  483. "07FF_8011": "Filament runout",
  484. # Clogged nozzle / extruder
  485. "0300_4006": "Clogged nozzle",
  486. "0300_8016": "Clogged nozzle",
  487. "0300_801C": "Clogged nozzle",
  488. "0700_8003": "Clogged nozzle",
  489. "0700_8007": "Clogged nozzle",
  490. "0700_8013": "Clogged nozzle",
  491. "0701_8003": "Clogged nozzle",
  492. "0701_8007": "Clogged nozzle",
  493. "0701_8013": "Clogged nozzle",
  494. "0702_8003": "Clogged nozzle",
  495. }
  496. def _hms_short_code(attr: int, code: int | str) -> str:
  497. """Build the canonical "MMMM_CCCC" HMS short code from raw attr/code values."""
  498. if isinstance(code, str):
  499. code_int = int(code.replace("0x", ""), 16) if code else 0
  500. else:
  501. code_int = int(code or 0)
  502. attr_int = int(attr or 0)
  503. return f"{(attr_int >> 16) & 0xFFFF:04X}_{code_int & 0xFFFF:04X}"
  504. def derive_failure_reason(status: str, hms_errors: list[dict] | None) -> str | None:
  505. """Derive a human-readable failure_reason for an archived print.
  506. Returns "User cancelled" for cancelled/aborted prints; for failed prints,
  507. returns the first matching reason from _HMS_FAILURE_REASONS, or None when
  508. no HMS code matches (don't guess — null is honest).
  509. """
  510. if status in ("aborted", "cancelled"):
  511. return "User cancelled"
  512. if status != "failed":
  513. return None
  514. for err in hms_errors or []:
  515. short_code = _hms_short_code(err.get("attr", 0), err.get("code", 0))
  516. if short_code in _HMS_FAILURE_REASONS:
  517. return _HMS_FAILURE_REASONS[short_code]
  518. return None
  519. # Track created_by_id for expected prints so the user email can be sent even when
  520. # the archive itself doesn't have created_by_id set (e.g. library-file-based prints).
  521. # {(printer_id, filename): created_by_id}
  522. _expected_print_creators: dict[tuple[int, str], int] = {}
  523. # Per-printer lock that serialises the spool-assignment side of on_ams_change
  524. # (auto-unlink stale + auto-assign new) when MQTT bursts deliver multiple AMS
  525. # updates for the same printer in quick succession (~30 ms apart, observed in
  526. # the wild on H2D + dual AMS).
  527. #
  528. # Without this serialisation, two concurrent on_ams_change callbacks each read
  529. # "no assignment for (printer, ams, tray)", each call auto_assign_spool, and
  530. # the second commit hits
  531. # IntegrityError: duplicate key value violates unique constraint
  532. # "spool_assignment_printer_id_ams_id_tray_id_key"
  533. # SQLite's WAL serial-write semantics had been silently swallowing the race
  534. # until optional Postgres support landed (asyncpg allows true concurrent
  535. # transactions and surfaces the constraint violation).
  536. #
  537. # Scope is intentionally narrow: only the two DB-mutating blocks (unlink +
  538. # assign) are inside the lock. The Spoolman sync block further down stays
  539. # concurrent because it's network-bound and idempotent.
  540. _ams_assignment_locks: dict[int, asyncio.Lock] = {}
  541. def _get_ams_assignment_lock(printer_id: int) -> asyncio.Lock:
  542. """Return the per-printer assignment lock, creating it on first use."""
  543. lock = _ams_assignment_locks.get(printer_id)
  544. if lock is None:
  545. lock = asyncio.Lock()
  546. _ams_assignment_locks[printer_id] = lock
  547. return lock
  548. # Per-printer dedup for unknown_tag WS broadcasts. Keyed by
  549. # (ams_id, tray_id) -> (tag_uid, tray_uuid); we only re-broadcast when the
  550. # tag tuple changes for the slot. Cleared when the slot is reported empty
  551. # so remove + reinsert reliably re-prompts the UI.
  552. _unknown_tag_last_broadcast: dict[int, dict[tuple[int, int], tuple[str, str]]] = {}
  553. async def _broadcast_unknown_tag(
  554. *,
  555. printer_id: int,
  556. ams_id: int,
  557. tray_id: int,
  558. tag_uid: str,
  559. tray_uuid: str,
  560. tray_type: str | None = None,
  561. tray_color: str | None = None,
  562. tray_sub_brands: str | None = None,
  563. tray_count: int | None = None,
  564. ) -> None:
  565. """Broadcast unknown_tag, deduped so repeated MQTT pushes for the same slot+tag don't spam the UI."""
  566. _logger = logging.getLogger(__name__)
  567. slot_key = (ams_id, tray_id)
  568. tag_key = (tag_uid or "", tray_uuid or "")
  569. per_printer = _unknown_tag_last_broadcast.setdefault(printer_id, {})
  570. if per_printer.get(slot_key) == tag_key:
  571. _logger.debug(
  572. "unknown_tag deduped for printer=%d AMS=%d slot=%d tag=%s",
  573. printer_id,
  574. ams_id,
  575. tray_id,
  576. tag_key[0][:8] or tag_key[1][:8] or "(none)",
  577. )
  578. return
  579. _logger.info(
  580. "unknown_tag broadcast: printer=%d AMS=%d slot=%d type=%r color=%r tag=%s",
  581. printer_id,
  582. ams_id,
  583. tray_id,
  584. tray_type,
  585. tray_color,
  586. tag_key[0][:8] or tag_key[1][:8] or "(none)",
  587. )
  588. # Broadcast first; only commit the dedup if the WS write succeeds.
  589. # If broadcast raises, the next MQTT push retries instead of being
  590. # permanently silenced by a poisoned dedup entry.
  591. await ws_manager.broadcast(
  592. {
  593. "type": "unknown_tag",
  594. "printer_id": printer_id,
  595. "ams_id": ams_id,
  596. "tray_id": tray_id,
  597. "tag_uid": tag_uid,
  598. "tray_uuid": tray_uuid,
  599. "tray_type": tray_type,
  600. "tray_color": tray_color,
  601. "tray_sub_brands": tray_sub_brands,
  602. "tray_count": tray_count,
  603. }
  604. )
  605. per_printer[slot_key] = tag_key
  606. def _clear_unknown_tag_dedup(printer_id: int, ams_id: int, tray_id: int) -> None:
  607. """Drop the cached last-broadcast tag for a slot (called when slot reports empty or gets matched)."""
  608. per_printer = _unknown_tag_last_broadcast.get(printer_id)
  609. if per_printer is None:
  610. return
  611. per_printer.pop((ams_id, tray_id), None)
  612. # TTL for expected-print entries: evict registrations older than this to prevent
  613. # unbounded growth when a print is registered but never starts (e.g. printer
  614. # disconnect, app restart, print started from the printer panel).
  615. _EXPECTED_PRINT_TTL_SECONDS: int = 2 * 60 * 60 # 2 hours
  616. # Registration timestamps used for TTL eviction: {(printer_id, filename): monotonic_time}
  617. _expected_print_registered_at: dict[tuple[int, str], float] = {}
  618. # Cleanup loop interval
  619. _EXPECTED_PRINT_CLEANUP_INTERVAL: int = 15 * 60 # 15 minutes
  620. _expected_prints_cleanup_task: asyncio.Task | None = None
  621. _ACTIVE_PRINT_STATES: set[str] = {"RUNNING", "PRINTING", "PAUSE"}
  622. def _build_status_print_keys(printer_id: int, state: PrinterState) -> list[tuple[int, str]]:
  623. """Build filename keys for matching a printer status update to Bambuddy-owned jobs."""
  624. possible_keys: list[tuple[int, str]] = []
  625. filename = (state.gcode_file or state.current_print or "").strip()
  626. subtask_name = (state.subtask_name or "").strip()
  627. if subtask_name:
  628. possible_keys.append((printer_id, subtask_name))
  629. possible_keys.append((printer_id, f"{subtask_name}.3mf"))
  630. possible_keys.append((printer_id, f"{subtask_name}.gcode.3mf"))
  631. if filename:
  632. base_name = filename.rsplit("/", 1)[-1]
  633. if base_name.endswith(".gcode.3mf"):
  634. root_name = base_name[: -len(".gcode.3mf")]
  635. possible_keys.append((printer_id, root_name))
  636. possible_keys.append((printer_id, base_name))
  637. possible_keys.append((printer_id, f"{root_name}.gcode"))
  638. possible_keys.append((printer_id, f"{root_name}.3mf"))
  639. elif base_name.endswith(".3mf"):
  640. root_name = base_name[: -len(".3mf")]
  641. possible_keys.append((printer_id, root_name))
  642. possible_keys.append((printer_id, base_name))
  643. elif base_name.endswith(".gcode"):
  644. root_name = base_name[: -len(".gcode")]
  645. possible_keys.append((printer_id, root_name))
  646. possible_keys.append((printer_id, f"{root_name}.3mf"))
  647. possible_keys.append((printer_id, base_name))
  648. else:
  649. possible_keys.append((printer_id, base_name))
  650. possible_keys.append((printer_id, f"{base_name}.3mf"))
  651. return possible_keys
  652. def _is_bambuddy_authorized_print_in_memory(printer_id: int, state: PrinterState) -> bool:
  653. """Check the cheap, process-local print ownership signals."""
  654. if printer_manager.get_current_print_user(printer_id):
  655. return True
  656. return any(key in _expected_prints or key in _active_prints for key in _build_status_print_keys(printer_id, state))
  657. async def _is_printer_kill_switch_enabled_cached() -> bool:
  658. """Return the kill-switch setting without querying on every MQTT frame."""
  659. global _kill_switch_setting_cache
  660. now = time.monotonic()
  661. if _kill_switch_setting_cache is not None:
  662. enabled, expires_at = _kill_switch_setting_cache
  663. if now < expires_at:
  664. return enabled
  665. async with async_session() as db:
  666. from backend.app.services.finance_budget import is_printer_kill_switch_enabled
  667. enabled = await is_printer_kill_switch_enabled(db)
  668. _kill_switch_setting_cache = (enabled, now + _KILL_SWITCH_SETTING_CACHE_TTL_SECONDS)
  669. return enabled
  670. async def _is_bambuddy_authorized_print(printer_id: int, state: PrinterState, db) -> bool | None:
  671. """Resolve whether the current print was started by Bambuddy.
  672. ``None`` means identity is not yet safe to decide. The kill switch must
  673. defer in that case: stopping a print is irreversible, and the first status
  674. frames after a restart may arrive before all subtask fields are populated.
  675. """
  676. if _is_bambuddy_authorized_print_in_memory(printer_id, state):
  677. return True
  678. possible_keys = _build_status_print_keys(printer_id, state)
  679. # In-memory ownership is lost on every Bambuddy restart, so fall back to what
  680. # is on disk. subtask_id is minted per print and pins the answer to the job
  681. # actually running, rather than to an unrelated one that reuses a filename.
  682. raw_subtask_id = getattr(state, "subtask_id", None)
  683. subtask_id = str(raw_subtask_id).strip() if raw_subtask_id is not None else ""
  684. if subtask_id in ("", "0"):
  685. return None
  686. from backend.app.models.archive import PrintArchive
  687. result = await db.execute(
  688. select(PrintArchive)
  689. .where(
  690. PrintArchive.printer_id == printer_id,
  691. PrintArchive.status == "printing",
  692. PrintArchive.subtask_id == subtask_id,
  693. )
  694. .order_by(PrintArchive.created_at.desc())
  695. .limit(1)
  696. )
  697. archive = result.scalar_one_or_none()
  698. # An archive row on its own proves nothing: `on_print_start` archives every
  699. # print it observes, including ones started from Bambu Studio or Handy, and
  700. # stamps them with the same status and subtask_id. Authorizing on its mere
  701. # existence would disable the kill switch the moment the 3MF finishes
  702. # downloading. Only a dispatch marker Bambuddy writes itself counts —
  703. # `billing_run_id` (minted per dispatch in the scheduler) or `created_by_id`
  704. # (carried over from the queue item that started it).
  705. if archive is not None and (archive.billing_run_id is not None or archive.created_by_id is not None):
  706. # Rehydrate the fast in-memory path for subsequent status frames. Include
  707. # both the archive filename and every normalized key reported by MQTT.
  708. _active_prints[(printer_id, archive.filename)] = archive.id
  709. for key in possible_keys:
  710. _active_prints[key] = archive.id
  711. return True
  712. # No dispatch marker. Before calling this someone else's print, check whether
  713. # Bambuddy has a job of its own running on this printer: a library-file
  714. # dispatch has no archive at send time, and an archive created seconds later
  715. # by `on_print_start` carries neither marker. The queue row, which the
  716. # scheduler commits to status="printing" before the MQTT send, is the one
  717. # durable record every Bambuddy print has. It cannot be tied to this
  718. # subtask_id, so it is grounds to defer, never to authorize — stopping a
  719. # print is irreversible, and refusing to act costs nothing but a log line.
  720. from backend.app.models.print_queue import PrintQueueItem
  721. dispatched_here = await db.scalar(
  722. select(PrintQueueItem.id)
  723. .where(
  724. PrintQueueItem.printer_id == printer_id,
  725. PrintQueueItem.status == "printing",
  726. )
  727. .limit(1)
  728. )
  729. if dispatched_here is not None:
  730. return None
  731. return False
  732. async def _send_kill_switch_provider_notification(
  733. printer_id: int,
  734. printer_name: str,
  735. data: dict,
  736. ) -> bool:
  737. """Send the immediate print-stopped provider notification.
  738. Returning a success flag lets the normal MQTT completion path retry when
  739. this early notification could not be delivered.
  740. """
  741. logger = logging.getLogger(__name__)
  742. try:
  743. async with async_session() as db:
  744. await notification_service.on_print_complete(
  745. printer_id,
  746. printer_name,
  747. "stopped",
  748. data,
  749. db,
  750. )
  751. return True
  752. except Exception as e:
  753. logger.warning(
  754. "[KILL SWITCH] Immediate provider notification failed for printer %s: %s",
  755. printer_id,
  756. e,
  757. )
  758. return False
  759. async def _kill_switch_notification_already_sent(task: asyncio.Task[bool] | None) -> bool:
  760. """Wait for an immediate kill-switch notification, if one was scheduled."""
  761. if task is None:
  762. return False
  763. try:
  764. return await task
  765. except Exception as e:
  766. logging.getLogger(__name__).warning("[KILL SWITCH] Notification task failed: %s", e)
  767. return False
  768. async def _get_plug_energy(plug, db) -> dict | None:
  769. """Get energy from plug regardless of type (Tasmota, Home Assistant, MQTT, or REST).
  770. For HA plugs, configures the service with current settings from DB.
  771. For MQTT plugs, returns data from the subscription service.
  772. For REST plugs, polls the status URL with JSON path extraction.
  773. """
  774. if plug.plug_type == "homeassistant":
  775. from backend.app.api.routes.settings import get_homeassistant_settings
  776. ha_settings = await get_homeassistant_settings(db)
  777. homeassistant_service.configure(ha_settings["ha_url"], ha_settings["ha_token"])
  778. return await homeassistant_service.get_energy(plug)
  779. elif plug.plug_type == "mqtt":
  780. # MQTT plugs report "today" energy, not lifetime total
  781. # For per-print tracking, we use "today" as the counter (resets at midnight)
  782. mqtt_data = mqtt_relay.smart_plug_service.get_plug_data(plug.id)
  783. if mqtt_data:
  784. return {
  785. "power": mqtt_data.power,
  786. "today": mqtt_data.energy,
  787. "total": mqtt_data.energy, # Use today as total for per-print calculations
  788. }
  789. return None
  790. elif plug.plug_type == "rest":
  791. from backend.app.services.rest_smart_plug import rest_smart_plug_service
  792. return await rest_smart_plug_service.get_energy(plug)
  793. else:
  794. return await tasmota_service.get_energy(plug)
  795. async def _record_energy_start(archive, printer_id: int, db, *, context: str = "") -> bool:
  796. """Capture the smart plug lifetime counter on the archive at print start.
  797. Persists `energy_start_kwh` on the archive row (#941) so per-print energy
  798. tracking survives a backend restart mid-print. The print-end handler reads
  799. this value back from the DB and computes the delta against the current
  800. plug counter.
  801. """
  802. _logger = logging.getLogger(__name__)
  803. try:
  804. candidates = await energy_plug_candidates(db, printer_id)
  805. if not candidates:
  806. _logger.info("[ENERGY] No smart plug for printer %s (archive %s)", printer_id, archive.id)
  807. return False
  808. selected = await select_energy_reading(candidates, _get_plug_energy, db)
  809. if selected is None:
  810. # Naming the plugs matters here: with several linked to one printer
  811. # this is the difference between "the meter is offline" and "you
  812. # linked only accessories" (#2859).
  813. _logger.warning(
  814. "[ENERGY] No plug on printer %s reports a lifetime energy counter for archive %s (tried: %s)",
  815. printer_id,
  816. archive.id,
  817. ", ".join(plug.name for plug in candidates),
  818. )
  819. return False
  820. plug, energy = selected
  821. archive.energy_start_kwh = float(energy["total"])
  822. await db.commit()
  823. _logger.info(
  824. "[ENERGY] Recorded starting energy%s for archive %s from plug '%s': %s kWh",
  825. f" ({context})" if context else "",
  826. archive.id,
  827. plug.name,
  828. energy["total"],
  829. )
  830. return True
  831. except Exception as e:
  832. _logger.warning("[ENERGY] Failed to record starting energy for archive %s: %s", archive.id, e)
  833. return False
  834. def register_expected_print(
  835. printer_id: int,
  836. filename: str,
  837. archive_id: int,
  838. ams_mapping: list[int] | None = None,
  839. created_by_id: int | None = None,
  840. cost_center_id: int | None = None,
  841. plate_id: int | None = None,
  842. ):
  843. """Register an expected print from reprint/scheduled so we don't create duplicate archives."""
  844. # Store with multiple filename variations to catch different naming patterns
  845. _expected_prints[(printer_id, filename)] = archive_id
  846. # Also store without .3mf extension if present
  847. if filename.endswith(".3mf"):
  848. base = filename[:-4]
  849. _expected_prints[(printer_id, base)] = archive_id
  850. _expected_prints[(printer_id, f"{base}.gcode")] = archive_id
  851. # Store AMS mapping for usage tracking at print completion
  852. if ams_mapping is not None:
  853. _print_ams_mappings[archive_id] = ams_mapping
  854. if cost_center_id is not None:
  855. _print_cost_center_ids[archive_id] = cost_center_id
  856. # Store plate_id for usage tracking when this is a single-plate dispatch from
  857. # a multi-plate 3MF — without this, the direct-Print path attributes the whole
  858. # file's filament total to the spool instead of just the printed plate (#1697).
  859. if plate_id is not None:
  860. _print_plate_ids[archive_id] = plate_id
  861. # Store created_by_id so the user start email can be sent even when the archive
  862. # itself has no created_by_id (e.g. library-file-based queue prints)
  863. if created_by_id is not None:
  864. _expected_print_creators[(printer_id, filename)] = created_by_id
  865. if filename.endswith(".3mf"):
  866. base = filename[:-4]
  867. _expected_print_creators[(printer_id, base)] = created_by_id
  868. _expected_print_creators[(printer_id, f"{base}.gcode")] = created_by_id
  869. # Record registration time for TTL-based eviction
  870. _registered_at = time.monotonic()
  871. _expected_print_registered_at[(printer_id, filename)] = _registered_at
  872. if filename.endswith(".3mf"):
  873. base = filename[:-4]
  874. _expected_print_registered_at[(printer_id, base)] = _registered_at
  875. _expected_print_registered_at[(printer_id, f"{base}.gcode")] = _registered_at
  876. logging.getLogger(__name__).info(
  877. f"Registered expected print: printer={printer_id}, file={filename}, archive={archive_id}, ams_mapping={ams_mapping}, plate_id={plate_id}"
  878. )
  879. def unregister_expected_print(printer_id: int, filename: str, archive_id: int) -> None:
  880. """Undo :func:`register_expected_print` when the print never went out.
  881. Registration has to happen *before* the MQTT print command, because the
  882. printer can report the print before the line after the send executes. So
  883. every path that registers and then fails to send — a cancel winning the
  884. #1853 CAS race, a ``start_print()`` that returns False, or any exception in
  885. between — leaves an expectation for a print that will never arrive.
  886. The TTL sweep evicts those after two hours, which is far longer than it
  887. takes a user to react to a failed dispatch by pressing print again: that
  888. reprint would be folded into the *old* archive and take the stale
  889. ``ams_mapping`` / ``plate_id`` with it. Hence the explicit inverse.
  890. Mirrors the sweep's rules, including the one that is easy to get wrong:
  891. ``_print_ams_mappings`` / ``_print_plate_ids`` are keyed by archive, not by
  892. file, so they may only be dropped once no live key still points at that
  893. archive.
  894. """
  895. keys = [(printer_id, filename)]
  896. if filename.endswith(".3mf"):
  897. base = filename[:-4]
  898. keys.append((printer_id, base))
  899. keys.append((printer_id, f"{base}.gcode"))
  900. removed = False
  901. for key in keys:
  902. if _expected_prints.pop(key, None) is not None:
  903. removed = True
  904. _expected_print_creators.pop(key, None)
  905. _expected_print_registered_at.pop(key, None)
  906. if archive_id not in set(_expected_prints.values()):
  907. _print_ams_mappings.pop(archive_id, None)
  908. _print_plate_ids.pop(archive_id, None)
  909. if removed:
  910. logging.getLogger(__name__).info(
  911. "Unregistered expected print: printer=%s, file=%s, archive=%s (print was never sent)",
  912. printer_id,
  913. filename,
  914. archive_id,
  915. )
  916. def _compute_run_filament_grams(
  917. status: str,
  918. archive_filament_used_grams: float | None,
  919. progress: float | int | None,
  920. usage_results: list[dict] | None,
  921. ) -> float | None:
  922. """Per-run filament for PrintLogEntry, partial- and tracker-aware (#1378, #1390).
  923. Priority for every status:
  924. 1. Sum of tracked spool deltas in ``usage_results`` (AMS-measured
  925. weight delta — same source that drives "Total Consumed" on the
  926. Inventory page, so Stats and Inventory totals stay aligned).
  927. 2. For ``completed``: the slicer estimate (no tracker available, fall
  928. back to the canonical "this print used X" value).
  929. 3. For partial statuses: ``estimate * progress%``.
  930. 4. ``None`` if nothing is known.
  931. """
  932. tracked_grams = sum(r.get("weight_used") or 0 for r in (usage_results or []))
  933. if tracked_grams > 0:
  934. return round(tracked_grams, 1)
  935. if status == "completed":
  936. return archive_filament_used_grams
  937. if archive_filament_used_grams:
  938. scale = max(0.0, min(((progress or 0) / 100.0), 1.0))
  939. if scale > 0:
  940. return round(archive_filament_used_grams * scale, 1)
  941. return None
  942. def _get_start_ams_mapping(data: dict, archive_id: int | None) -> list[int] | None:
  943. """Resolve AMS mapping for print start without consuming stored queue/reprint state."""
  944. stored_ams_mapping = data.get("ams_mapping")
  945. if not stored_ams_mapping and archive_id:
  946. stored_ams_mapping = _print_ams_mappings.get(archive_id)
  947. return stored_ams_mapping
  948. def _get_start_plate_id(archive_id: int | None) -> int | None:
  949. """Resolve plate_id for print start without consuming stored direct-Print state.
  950. Direct-Print of a single plate from a multi-plate 3MF registers plate_id in
  951. ``_print_plate_ids`` at dispatch time; this lets the spoolman / usage tracker
  952. read it back at print-start without popping (the entry is popped on print
  953. completion or TTL eviction, mirroring ``_print_ams_mappings``).
  954. """
  955. if archive_id is None:
  956. return None
  957. return _print_plate_ids.get(archive_id)
  958. def _partial_progress_scale(progress: int | float | None) -> float:
  959. """Clamp ``progress / 100`` into [0.0, 1.0] for partial-print scaling.
  960. Used by every site that multiplies a "would-have-used" slicer estimate
  961. down to "actually-used" for failed / cancelled / stopped prints. Centralised
  962. so the three sites in ``_background_notifications`` (and the per-plate
  963. override helper) can't drift apart on the coercion shape.
  964. """
  965. return max(0.0, min((progress or 0) / 100.0, 1.0))
  966. def _scope_notification_archive_data_to_plate(
  967. archive_data: dict,
  968. archive_file_path: str | None,
  969. plate_id: int | None,
  970. print_status: str,
  971. progress: int | float | None,
  972. base_dir: Path,
  973. ) -> dict:
  974. """Override summed-across-plates totals in ``archive_data`` with the values
  975. for ``plate_id`` so the completion notification reports what was actually
  976. printed, not the whole project (#1785).
  977. The 3MF parser at services/archive.py:200-264 sums ``prediction`` and
  978. ``weight`` across every plate of a multi-plate file (#1593) — correct for
  979. the archive card's "whole project" headline, wrong for the completion
  980. notification of a single-plate print. The queue UI already re-reads the
  981. 3MF per-plate at print_queue.py:272-285; this helper mirrors that for the
  982. notification payload (filament grams, time estimate, per-slot breakdown).
  983. No-ops when ``plate_id`` is None, the file is missing, or the 3MF carries
  984. no per-plate values — in every fail case the original ``archive_data`` is
  985. returned unchanged so the notification still sends.
  986. """
  987. if plate_id is None or not archive_file_path:
  988. return archive_data
  989. from backend.app.utils.threemf_tools import (
  990. extract_filament_usage_from_3mf,
  991. extract_print_time_from_3mf,
  992. )
  993. archive_path = base_dir / archive_file_path
  994. if not archive_path.exists():
  995. return archive_data
  996. plate_slots = extract_filament_usage_from_3mf(archive_path, plate_id)
  997. plate_grams = sum(f.get("used_g", 0) for f in plate_slots)
  998. plate_time = extract_print_time_from_3mf(archive_path, plate_id)
  999. scale = 1.0 if print_status == "completed" else _partial_progress_scale(progress)
  1000. if plate_time:
  1001. archive_data["print_time_seconds"] = plate_time
  1002. # Gate both the grams headline AND the per-slot breakdown on the same
  1003. # `plate_grams > 0` signal: if the 3MF carries per-plate filament rows but
  1004. # they all sum to zero (slicer bug / re-slice without estimate), drop back
  1005. # to the project-level grams the archive columns already provide rather
  1006. # than ship a project-level headline next to an all-zero per-plate
  1007. # breakdown.
  1008. if plate_grams > 0:
  1009. archive_data["actual_filament_grams"] = round(plate_grams * scale, 1)
  1010. archive_data["filament_slots"] = [
  1011. {
  1012. "slot_id": s.get("slot_id"),
  1013. "used_g": round((s.get("used_g") or 0) * scale, 1),
  1014. "type": s.get("type", ""),
  1015. "color": s.get("color", ""),
  1016. }
  1017. for s in plate_slots
  1018. ]
  1019. return archive_data
  1020. def _extract_filament_data_from_mqtt(data: dict, ams_mapping: list[int] | None = None) -> dict[str, str]:
  1021. """Best-effort filament metadata from the MQTT print-start snapshot.
  1022. Used when the 3MF can't be downloaded (P1S/A1/P2S firmwares lock the
  1023. file during print, see #1533) so the fallback PrintArchive still has
  1024. enough filament info to support the inventory views and AMS-expansion
  1025. planning the operator opens it for. Returns a dict with optional
  1026. ``filament_type`` and ``filament_color`` keys in the same
  1027. comma-separated format the 3MF extractor produces, so the rest of the
  1028. codebase treats the fallback archive identically to a normal one.
  1029. ``ams_mapping`` is the slicer's slot-per-print-filament list captured
  1030. from the MQTT print payload (global tray IDs, possibly -1 for VT-tray
  1031. entries). When supplied, only the slots actually consumed by this
  1032. print contribute. Without it the function falls back to every loaded
  1033. AMS slot — less accurate but still useful.
  1034. Accepts both the raw inner payload (``{"ams": {"ams": [...]}, ...}``)
  1035. that the unit tests pass directly, AND the on_print_start callback
  1036. shape (``{"raw_data": {"ams": {"ams": [...]}, ...}, ...}``) the
  1037. bambu_mqtt service hands to main.py at runtime. The original
  1038. ``_extract_filament_data_from_mqtt(data)`` shipped in #1533 only
  1039. handled the inner shape and silently returned ``{}`` for every real
  1040. print start, leaving fallback archives' filament fields NULL — the
  1041. exact regression the fix was meant to close. Reported with a log
  1042. proving the AMS state was right there at
  1043. ``data["raw_data"]["ams"]["ams"][0]["tray"][0]`` (#1533 follow-up).
  1044. """
  1045. result: dict[str, str] = {}
  1046. # Look at the on_print_start wrapper first, then the inner shape.
  1047. raw_data = (data or {}).get("raw_data")
  1048. ams_root = (raw_data or {}).get("ams") if isinstance(raw_data, dict) else None
  1049. if not isinstance(ams_root, dict):
  1050. ams_root = (data or {}).get("ams") or {}
  1051. ams_units = ams_root.get("ams") if isinstance(ams_root, dict) else None
  1052. if not isinstance(ams_units, list) or not ams_units:
  1053. return result
  1054. # Map global tray id (unit * 4 + tray) → (type, color).
  1055. loaded: dict[int, tuple[str, str]] = {}
  1056. for unit in ams_units:
  1057. if not isinstance(unit, dict):
  1058. continue
  1059. try:
  1060. unit_id = int(unit.get("id", 0))
  1061. except (TypeError, ValueError):
  1062. continue
  1063. for tray in unit.get("tray") or []:
  1064. if not isinstance(tray, dict):
  1065. continue
  1066. try:
  1067. tray_id = int(tray.get("id", 0))
  1068. except (TypeError, ValueError):
  1069. continue
  1070. ttype = (tray.get("tray_type") or "").strip()
  1071. tcolor = (tray.get("tray_color") or "").strip().upper()
  1072. if not ttype:
  1073. continue # Empty / unloaded slot.
  1074. loaded[unit_id * 4 + tray_id] = (ttype, tcolor)
  1075. if not loaded:
  1076. return result
  1077. if ams_mapping:
  1078. used_ids = [int(x) for x in ams_mapping if isinstance(x, (int, float)) and int(x) >= 0]
  1079. filaments = [loaded[g] for g in used_ids if g in loaded]
  1080. if not filaments:
  1081. return result # Mapping points entirely at slots we have no data for.
  1082. else:
  1083. filaments = [loaded[g] for g in sorted(loaded.keys())]
  1084. types_joined = ",".join(f[0] for f in filaments)
  1085. colors_joined = ",".join(f[1] for f in filaments if f[1])
  1086. # Column limits per backend/app/models/archive.py: filament_type=50,
  1087. # filament_color=200.
  1088. if types_joined:
  1089. result["filament_type"] = types_joined[:50]
  1090. if colors_joined:
  1091. result["filament_color"] = colors_joined[:200]
  1092. return result
  1093. def _maybe_start_layer_timelapse(printer, printer_id: int, archive_id: int) -> bool:
  1094. """Start a layer-timelapse session for *archive_id* when the printer has
  1095. an external camera configured. Returns True if a session was started.
  1096. Three call sites in on_print_start (expected-archive promotion, fallback
  1097. archive creation, fresh-archive creation) used to inline this same
  1098. if-block; the inline copies kept drifting (#1353 fixed only one of them
  1099. on the first pass). Centralising the conditional + call here makes the
  1100. contract testable in isolation and keeps the three sites locked in step.
  1101. """
  1102. if not (printer.external_camera_enabled and printer.external_camera_url):
  1103. return False
  1104. from backend.app.services.layer_timelapse import start_session
  1105. start_session(
  1106. printer_id,
  1107. archive_id,
  1108. printer.external_camera_url,
  1109. printer.external_camera_type or "mjpeg",
  1110. snapshot_url=printer.external_camera_snapshot_url,
  1111. rotation=getattr(printer, "camera_rotation", 0),
  1112. )
  1113. logging.getLogger(__name__).info("Started layer timelapse for printer %s, archive %s", printer_id, archive_id)
  1114. return True
  1115. def _format_hms_error_summary(hms_errors: list[dict]) -> str | None:
  1116. """Build a human-readable failure reason from MQTT hms_errors for PrintQueueItem.error_message.
  1117. Each entry has keys: code ('0x4038'), attr (32-bit int), module, severity, and
  1118. — since #2926 — the description the parser already resolved, which is preferred
  1119. when present so the queue's failure reason reads the same as the status
  1120. response. The short code still produces the bracketed label, and still
  1121. resolves the sentence for a caller whose entries predate the field. Falls back
  1122. to the bare short code when no description is on file. Returns None for an
  1123. empty list so callers can leave error_message unset.
  1124. """
  1125. if not hms_errors:
  1126. return None
  1127. from backend.app.services.hms_errors import get_error_description
  1128. parts: list[str] = []
  1129. for err in hms_errors:
  1130. try:
  1131. # `_hms_short_code` rather than a local derivation: this one used to
  1132. # format the error without masking it to 16 bits, so an `hms[]` entry
  1133. # whose code carries an alert-level group produced a five-digit label
  1134. # like "0500_3000A" — not a code the user can look up, and never a
  1135. # catalogue key, so the sentence was lost with it.
  1136. short_code = _hms_short_code(err.get("attr", 0), err.get("code", 0))
  1137. except (TypeError, ValueError):
  1138. continue
  1139. description = err.get("description") or get_error_description(short_code)
  1140. parts.append(f"[{short_code}] {description}" if description else f"[{short_code}]")
  1141. return "; ".join(parts) if parts else None
  1142. async def _bump_library_file_usage_if_completed(db, item, queue_status: str) -> None:
  1143. """Increment LibraryFile.print_count and stamp last_printed_at when a queued
  1144. print completes successfully. Gated to status=='completed': failed, cancelled
  1145. and aborted prints do not count as usage. Caller is responsible for committing
  1146. the session. No-op when the queue item has no linked library file (e.g. reprints
  1147. from an archive). See #1008."""
  1148. if queue_status != "completed" or item.library_file_id is None:
  1149. return
  1150. from backend.app.models.library import LibraryFile
  1151. lib_file = await db.scalar(select(LibraryFile).where(LibraryFile.id == item.library_file_id))
  1152. if lib_file is None:
  1153. return
  1154. lib_file.print_count = (lib_file.print_count or 0) + 1
  1155. lib_file.last_printed_at = datetime.now(timezone.utc)
  1156. def mark_printer_stopped_by_user(printer_id: int) -> None:
  1157. """Mark that the active print on this printer was stopped by the user from the queue UI.
  1158. When on_print_complete fires with status 'failed' for a printer in this set we
  1159. reclassify it as 'cancelled' so the correct 'print stopped' notification is sent
  1160. rather than a 'print failed' notification.
  1161. """
  1162. _user_stopped_printers.add(printer_id)
  1163. logging.getLogger(__name__).info("Marked printer %s as user-stopped from queue", printer_id)
  1164. _last_status_broadcast: dict[int, str] = {}
  1165. # Track printers where we've updated nozzle_count
  1166. _nozzle_count_updated: set[int] = set()
  1167. async def _maybe_notify_printer_offline(printer_id: int) -> None:
  1168. """Wait the debounce window then fire `on_printer_offline` if the printer
  1169. is still offline.
  1170. Scheduled by `on_printer_status_change` on the connected → disconnected
  1171. edge (#1752). Cancelled by the same handler if the printer reconnects
  1172. before the window elapses, so a single MQTT blip + recovery doesn't
  1173. notify. Both the staleness-detector path (`bambu_mqtt.py::check_staleness`)
  1174. and the smart-plug power-off path (`printer_manager.mark_printer_offline`)
  1175. route through the same status-change callback, so this covers both.
  1176. """
  1177. logger = logging.getLogger(__name__)
  1178. try:
  1179. await asyncio.sleep(_PRINTER_OFFLINE_NOTIFY_DEBOUNCE_SECONDS)
  1180. still_offline = not printer_manager.is_connected(printer_id)
  1181. logger.info(
  1182. "[#1752] Printer %s offline debounce elapsed: still_offline=%s",
  1183. printer_id,
  1184. still_offline,
  1185. )
  1186. if not still_offline:
  1187. return
  1188. async with async_session() as db:
  1189. from backend.app.models.printer import Printer
  1190. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  1191. printer = result.scalar_one_or_none()
  1192. if not printer:
  1193. logger.warning(
  1194. "[#1752] Printer %s missing from DB at offline-notify time; skipping",
  1195. printer_id,
  1196. )
  1197. return
  1198. logger.info(
  1199. "[#1752] Dispatching on_printer_offline for printer %s (%s)",
  1200. printer_id,
  1201. printer.name,
  1202. )
  1203. await notification_service.on_printer_offline(printer_id, printer.name, db)
  1204. except asyncio.CancelledError:
  1205. raise
  1206. except Exception as e:
  1207. logger.warning("Printer offline notification failed for printer %s: %s", printer_id, e)
  1208. finally:
  1209. _printer_offline_notify_tasks.pop(printer_id, None)
  1210. async def on_printer_status_change(printer_id: int, state: PrinterState):
  1211. """Handle printer status changes - broadcast via WebSocket."""
  1212. # Connected-edge reconciliation (#1542 follow-up). When the printer
  1213. # transitions disconnected → connected — which covers both Bambuddy
  1214. # startup (no prior connection) and a mid-session MQTT reconnect — fire
  1215. # `reconcile_stale_active_prints` exactly once for this connection so
  1216. # any archive still in `status="printing"` that can't actually be
  1217. # running anymore (printer IDLE / different subtask / empty subtask)
  1218. # gets a synthesised PRINT COMPLETE. Without this, a print that
  1219. # finished during a disconnect window + a smart-plug power cycle
  1220. # leaves the .3mf on the SD card and the firmware ghost-replays it on
  1221. # next boot. Reconciliation runs concurrently — it must not block the
  1222. # WebSocket dedup / broadcast logic below, and the connected edge is
  1223. # marked True BEFORE the await so concurrent status updates inside
  1224. # the same connection don't re-trigger reconciliation.
  1225. #
  1226. # Wait for a real push_status before reconciling (#1679): MQTT
  1227. # `_on_connect` broadcasts `state` IMMEDIATELY after the broker accepts
  1228. # the connection, BEFORE `_request_push_all` round-trips. At that
  1229. # instant the `PrinterState` is still on construction defaults — most
  1230. # importantly `state.state == "unknown"` and `state.subtask_name == ""`.
  1231. # If reconcile spawns here, every in-flight archive falls through to
  1232. # the empty-subtask_name trigger and gets synthesised `aborted`, which
  1233. # creates a duplicate archive on the real PRINT COMPLETE and
  1234. # double-counts filament. Gating on `state.state ∉ ("", "unknown")`
  1235. # keeps the #1542 mechanism intact: once the first real push_status
  1236. # updates `state.state` (RUNNING / IDLE / FINISH / …), this handler
  1237. # fires again with the flag still False — reconcile then runs against
  1238. # actual evidence.
  1239. state_known = bool(state.state) and state.state.upper() not in ("", "UNKNOWN")
  1240. if state.connected and state_known and not _printer_reconciled_since_connect.get(printer_id, False):
  1241. _printer_reconciled_since_connect[printer_id] = True
  1242. spawn_background_task(
  1243. reconcile_stale_active_prints(printer_id),
  1244. name=f"reconcile-stale-prints-{printer_id}",
  1245. )
  1246. elif not state.connected and _printer_reconciled_since_connect.get(printer_id, False):
  1247. # Re-arm so the next reconnect triggers reconciliation again.
  1248. _printer_reconciled_since_connect[printer_id] = False
  1249. # Same edge, for the calibration table the AMS card reads its K values from.
  1250. #
  1251. # Also gated on knowing a nozzle diameter, which is what decides *which*
  1252. # tables to ask for. A `state_known` gate alone is not enough: the first
  1253. # real push_status is what makes the state known, and the nozzle fields do
  1254. # not always arrive in it. Latching there would spend this connection's one
  1255. # attempt on a printer that could not yet say what was fitted.
  1256. nozzle_known = any(n.nozzle_diameter for n in (state.nozzles or []))
  1257. if (
  1258. state.connected
  1259. and state_known
  1260. and nozzle_known
  1261. and not _printer_kprofiles_primed_since_connect.get(printer_id, False)
  1262. ):
  1263. _printer_kprofiles_primed_since_connect[printer_id] = True
  1264. spawn_background_task(
  1265. prime_kprofile_table(printer_id),
  1266. name=f"prime-kprofiles-{printer_id}",
  1267. )
  1268. elif not state.connected and _printer_kprofiles_primed_since_connect.get(printer_id, False):
  1269. _printer_kprofiles_primed_since_connect[printer_id] = False
  1270. # Offline-notification edge (#1752): schedule `on_printer_offline` on
  1271. # connected → disconnected. The "back online" channel is already covered
  1272. # by the print-failure notification (firmware reports gcode_state=FAILED
  1273. # on reconnect of an interrupted print), so we don't add a symmetric
  1274. # online event here.
  1275. prev_connected = _printer_last_connected.get(printer_id)
  1276. _printer_last_connected[printer_id] = state.connected
  1277. if prev_connected is True and not state.connected:
  1278. existing = _printer_offline_notify_tasks.get(printer_id)
  1279. if existing is None or existing.done():
  1280. logging.getLogger(__name__).info(
  1281. "[#1752] Printer %s connected→disconnected edge; scheduling offline notification in %.0fs",
  1282. printer_id,
  1283. _PRINTER_OFFLINE_NOTIFY_DEBOUNCE_SECONDS,
  1284. )
  1285. _printer_offline_notify_tasks[printer_id] = asyncio.create_task(
  1286. _maybe_notify_printer_offline(printer_id),
  1287. name=f"printer-offline-notify-{printer_id}",
  1288. )
  1289. elif state.connected:
  1290. pending = _printer_offline_notify_tasks.pop(printer_id, None)
  1291. if pending is not None and not pending.done():
  1292. logging.getLogger(__name__).info(
  1293. "[#1752] Printer %s reconnected before debounce; cancelling pending offline notification",
  1294. printer_id,
  1295. )
  1296. pending.cancel()
  1297. # Only broadcast if something meaningful changed (reduce WebSocket spam)
  1298. # Include rounded temperatures to detect meaningful temp changes (within 1 degree)
  1299. temps = state.temperatures or {}
  1300. nozzle_temp = round(temps.get("nozzle", 0))
  1301. bed_temp = round(temps.get("bed", 0))
  1302. nozzle_2_temp = round(temps.get("nozzle_2", 0)) if "nozzle_2" in temps else ""
  1303. chamber_temp = round(temps.get("chamber", 0)) if "chamber" in temps else ""
  1304. # Auto-detect dual-nozzle printers from MQTT temperature data
  1305. if "nozzle_2" in temps and printer_id not in _nozzle_count_updated:
  1306. _nozzle_count_updated.add(printer_id)
  1307. # Update nozzle_count in database
  1308. async with async_session() as db:
  1309. from backend.app.models.printer import Printer
  1310. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  1311. printer = result.scalar_one_or_none()
  1312. if printer and printer.nozzle_count != 2:
  1313. printer.nozzle_count = 2
  1314. await db.commit()
  1315. logging.getLogger(__name__).info(
  1316. f"Auto-detected dual-nozzle printer {printer_id}, updated nozzle_count=2"
  1317. )
  1318. # Include target temps for heating phase detection
  1319. bed_target = round(temps.get("bed_target", 0))
  1320. nozzle_target = round(temps.get("nozzle_target", 0))
  1321. # Include tray_now and vt_tray hash so external spool changes trigger broadcasts
  1322. vt_tray_key = hash(str(state.raw_data.get("vt_tray", []))) if state.raw_data else 0
  1323. # Include AMS dry_time and tray state values so drying/slot changes trigger broadcasts
  1324. ams_dry_key = tuple(a.get("dry_time", 0) for a in (state.raw_data.get("ams") or [])) if state.raw_data else ()
  1325. # Include tray states so load/unload transitions (state 11→10) trigger broadcasts (#784)
  1326. #
  1327. # The filament identity fields are here because Configure Slot writes
  1328. # exactly those and nothing else. Re-configuring a slot from PLA to another
  1329. # brand or colour of PLA leaves id/tray_type/state identical, so the key
  1330. # matched, this function returned before broadcasting, and the card kept
  1331. # showing the old filament until the 30s fallback poll or a page reload —
  1332. # even though the configure route asks the printer for a fresh pushall and
  1333. # that push does carry the new values. Reset always worked, because it
  1334. # clears tray_type.
  1335. #
  1336. # These fields only change when someone configures a slot or swaps a spool,
  1337. # so unlike temperature or progress they add no broadcast traffic mid-print.
  1338. ams_tray_key = (
  1339. tuple(
  1340. (
  1341. t.get("id"),
  1342. t.get("tray_type", ""),
  1343. t.get("state"),
  1344. t.get("tray_color", ""),
  1345. t.get("tray_info_idx", ""),
  1346. t.get("tray_sub_brands", ""),
  1347. t.get("cali_idx"),
  1348. )
  1349. for a in (state.raw_data.get("ams") or [])
  1350. for t in a.get("tray", [])
  1351. )
  1352. if state.raw_data
  1353. else ()
  1354. )
  1355. # Filament Track Switch: which inlet each AMS is bound to, and whether the
  1356. # accessory is fitted at all. Neither is in ams_tray_key (it is per-tray) nor
  1357. # in the AMS change-hash (tray fields only, and widening that would fire
  1358. # spurious Spoolman syncs), so without them a "Join IN-B" on the printer
  1359. # screen changed no key at all and the card's inlet badges sat stale until a
  1360. # reload. Like the filament-backup flag, these only move when someone
  1361. # reconfigures the machine, so they add no mid-print broadcast traffic.
  1362. fts_key = (
  1363. state.fila_switch.installed if state.fila_switch else False,
  1364. tuple(sorted(state.ams_switch_inlet.items())),
  1365. # Which hotend holds which slot. Unlike the two above this does move
  1366. # mid-print, on every filament change — but only between discrete slots,
  1367. # so it adds a push per toolchange, not a stream. The AMS slot menu needs
  1368. # it live: it decides which hotend the Load dialog may offer and whether
  1369. # Unload has anything to act on.
  1370. tuple(
  1371. sorted(
  1372. ((ext, slot.ams_id, slot.slot_id, slot.has_filament) for ext, slot in state.extruder_slots.items()),
  1373. # Sort on the extruder id alone: the other members are nullable
  1374. # and comparing None with an int raises.
  1375. key=lambda entry: entry[0],
  1376. )
  1377. ),
  1378. )
  1379. status_key = (
  1380. f"{state.connected}:{state.state}:{state.progress}:{state.layer_num}:"
  1381. f"{nozzle_temp}:{bed_temp}:{nozzle_2_temp}:{chamber_temp}:"
  1382. f"{state.stg_cur}:{bed_target}:{nozzle_target}:"
  1383. f"{state.cooling_fan_speed}:{state.big_fan1_speed}:{state.big_fan2_speed}:"
  1384. f"{state.chamber_light}:{state.active_extruder}:{state.tray_now}:{vt_tray_key}:"
  1385. f"{ams_dry_key}:{ams_tray_key}:{state.door_open}:{state.ams_filament_backup}:{fts_key}"
  1386. )
  1387. is_active_print = state.state in _ACTIVE_PRINT_STATES
  1388. if not is_active_print:
  1389. _unauthorized_print_kill_sent.discard(printer_id)
  1390. elif printer_id in _unauthorized_print_kill_sent:
  1391. # stop_print() was already sent for this print; avoid all further
  1392. # ownership and settings work until the printer leaves an active state.
  1393. pass
  1394. elif _is_bambuddy_authorized_print_in_memory(printer_id, state):
  1395. # Normal Bambuddy-started prints stay entirely on the in-memory path.
  1396. _unauthorized_print_kill_sent.discard(printer_id)
  1397. else:
  1398. kill_switch_enabled = False
  1399. authorization: bool | None = None
  1400. status_logger = logging.getLogger(__name__)
  1401. try:
  1402. kill_switch_enabled = await _is_printer_kill_switch_enabled_cached()
  1403. if kill_switch_enabled:
  1404. async with async_session() as db:
  1405. authorization = await _is_bambuddy_authorized_print(printer_id, state, db)
  1406. except Exception as e:
  1407. # Fail safe: a database/reconciliation error must never turn into an
  1408. # irreversible stop of a print whose ownership is still unknown.
  1409. authorization = None
  1410. status_logger.warning(
  1411. "[KILL SWITCH] Failed to reconcile print authorization for printer %s: %s", printer_id, e
  1412. )
  1413. if not kill_switch_enabled or authorization is True:
  1414. _unauthorized_print_kill_sent.discard(printer_id)
  1415. elif authorization is None:
  1416. _unauthorized_print_kill_sent.discard(printer_id)
  1417. status_logger.debug(
  1418. "[KILL SWITCH] Deferring authorization for printer %s until archive state is reconciled",
  1419. printer_id,
  1420. )
  1421. else:
  1422. try:
  1423. stopped = printer_manager.stop_print(printer_id)
  1424. if stopped:
  1425. _unauthorized_print_kill_sent.add(printer_id)
  1426. printer_info = printer_manager.get_printer(printer_id)
  1427. printer_name = printer_info.name if printer_info else f"Printer {printer_id}"
  1428. filename = state.subtask_name or state.gcode_file or state.current_print or "Unknown"
  1429. notification_data = {
  1430. "status": "stopped",
  1431. "filename": state.gcode_file or state.current_print or "",
  1432. "subtask_name": state.subtask_name or "",
  1433. "progress": state.progress,
  1434. "reason": "unauthorized_print",
  1435. }
  1436. status_logger.warning(
  1437. "[KILL SWITCH] Stopped unauthorized print on printer %s (state=%s)",
  1438. printer_id,
  1439. state.state,
  1440. )
  1441. try:
  1442. await ws_manager.broadcast(
  1443. {
  1444. "type": "kill_switch_triggered",
  1445. "printer_id": printer_id,
  1446. "printer_name": printer_name,
  1447. "filename": filename,
  1448. "reason": "unauthorized_print",
  1449. }
  1450. )
  1451. except Exception as e:
  1452. status_logger.warning(
  1453. "[KILL SWITCH] WebSocket notification failed for printer %s: %s", printer_id, e
  1454. )
  1455. previous_task = _kill_switch_notification_tasks.pop(printer_id, None)
  1456. if previous_task is not None and not previous_task.done():
  1457. previous_task.cancel()
  1458. _kill_switch_notification_tasks[printer_id] = spawn_background_task(
  1459. _send_kill_switch_provider_notification(printer_id, printer_name, notification_data),
  1460. name=f"kill-switch-notification-{printer_id}",
  1461. )
  1462. else:
  1463. status_logger.warning(
  1464. "[KILL SWITCH] Could not stop unauthorized print on printer %s (state=%s)",
  1465. printer_id,
  1466. state.state,
  1467. )
  1468. except Exception as e:
  1469. status_logger.warning(
  1470. "[KILL SWITCH] Failed to stop unauthorized print on printer %s: %s", printer_id, e
  1471. )
  1472. # MQTT relay - publish status (before dedup check - always publish to MQTT)
  1473. try:
  1474. printer_info = printer_manager.get_printer(printer_id)
  1475. if printer_info:
  1476. await mqtt_relay.on_printer_status(
  1477. printer_id,
  1478. state,
  1479. printer_info.name,
  1480. printer_info.serial_number,
  1481. printer_manager.is_awaiting_plate_clear(printer_id),
  1482. )
  1483. except Exception:
  1484. pass # Don't fail status callback if MQTT fails
  1485. if _last_status_broadcast.get(printer_id) == status_key:
  1486. return # No change, skip WebSocket broadcast
  1487. _last_status_broadcast[printer_id] = status_key
  1488. # Check for progress milestone notifications (25%, 50%, 75%)
  1489. progress = state.progress or 0
  1490. is_printing = state.state in ("RUNNING", "PRINTING")
  1491. if is_printing and progress > 0:
  1492. # Determine which milestone we've reached
  1493. current_milestone = 0
  1494. if progress >= 75:
  1495. current_milestone = 75
  1496. elif progress >= 50:
  1497. current_milestone = 50
  1498. elif progress >= 25:
  1499. current_milestone = 25
  1500. last_milestone = _last_progress_milestone.get(printer_id, 0)
  1501. # If we've crossed a new milestone, send notification
  1502. if current_milestone > last_milestone:
  1503. _last_progress_milestone[printer_id] = current_milestone
  1504. try:
  1505. from backend.app.models.printer import Printer
  1506. # Read the printer in a short session and release the connection
  1507. # BEFORE the ~15s camera snapshot below — holding it across the grab
  1508. # pinned a pooled connection per milestone, per printer (issue #2572).
  1509. async with async_session() as db:
  1510. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  1511. printer = result.scalar_one_or_none()
  1512. printer_name = printer.name if printer else f"Printer {printer_id}"
  1513. filename = state.subtask_name or state.gcode_file or "Unknown"
  1514. # remaining_time is in minutes, convert to seconds for notification
  1515. remaining_time_seconds = state.remaining_time * 60 if state.remaining_time else None
  1516. # Capture camera snapshot for notification image attachment (no DB held).
  1517. image_data = await _capture_snapshot_for_notification(printer_id, printer, logging.getLogger(__name__))
  1518. # Notification send needs a session (provider/template lookups).
  1519. async with async_session() as db:
  1520. await notification_service.on_print_progress(
  1521. printer_id,
  1522. printer_name,
  1523. filename,
  1524. current_milestone,
  1525. db,
  1526. remaining_time_seconds,
  1527. image_data=image_data,
  1528. )
  1529. except Exception as e:
  1530. logging.getLogger(__name__).warning(f"Progress milestone notification failed: {e}")
  1531. elif progress < 5:
  1532. # Reset milestone tracking when print restarts or new print begins
  1533. _last_progress_milestone[printer_id] = 0
  1534. _first_layer_notified[printer_id] = False
  1535. # HMS error codes that should not trigger notifications even though they
  1536. # have known descriptions (e.g. user-initiated actions, not real errors).
  1537. _HMS_NOTIFICATION_SUPPRESS = {
  1538. "0500_400E", # Printing was cancelled (user action, not an error)
  1539. }
  1540. # Check for new HMS errors and send notifications
  1541. current_hms_errors = getattr(state, "hms_errors", []) or []
  1542. if current_hms_errors:
  1543. # Build set of current error codes (using attr for uniqueness)
  1544. current_error_codes = {f"{e.attr:08x}" for e in current_hms_errors}
  1545. previously_notified = _notified_hms_errors.get(printer_id, set())
  1546. # Find new errors that haven't been notified yet
  1547. new_error_codes = current_error_codes - previously_notified
  1548. # Update tracking immediately to prevent duplicate notifications from concurrent callbacks
  1549. _notified_hms_errors[printer_id] = current_error_codes
  1550. _hms_last_seen[printer_id] = time.time()
  1551. if new_error_codes:
  1552. # Get the actual new errors for the notification
  1553. # Filter to severity >= 2 (skip informational/status messages like H2D sends)
  1554. new_errors = [e for e in current_hms_errors if f"{e.attr:08x}" in new_error_codes and e.severity >= 2]
  1555. try:
  1556. from backend.app.models.printer import Printer
  1557. # Read the printer in a short session and release the connection
  1558. # BEFORE the ~15s camera snapshot below (issue #2572).
  1559. async with async_session() as db:
  1560. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  1561. printer = result.scalar_one_or_none()
  1562. printer_name = printer.name if printer else f"Printer {printer_id}"
  1563. # Format error details for notification
  1564. # Module 0x07 = AMS/Filament, 0x05 = Nozzle, 0x0C = Motion Controller, etc.
  1565. module_names = {
  1566. 0x03: "Print/Task",
  1567. 0x05: "Nozzle/Extruder",
  1568. 0x07: "AMS/Filament",
  1569. 0x0C: "Motion Controller",
  1570. 0x12: "Chamber",
  1571. }
  1572. # Capture camera snapshot once for all error notifications (no DB held).
  1573. error_image_data = await _capture_snapshot_for_notification(
  1574. printer_id, printer, logging.getLogger(__name__)
  1575. )
  1576. # Notification sends need a session (provider/template lookups).
  1577. async with async_session() as db:
  1578. sent_count = 0
  1579. for error in new_errors:
  1580. module_name = module_names.get(error.module, f"Module 0x{error.module:02X}")
  1581. # Build short code like "0700_8010"
  1582. # Mask to 16 bits to handle printers that send larger values
  1583. error_code_int = int(error.code.replace("0x", ""), 16) if error.code else 0
  1584. error_code_masked = error_code_int & 0xFFFF
  1585. short_code = f"{(error.attr >> 16) & 0xFFFF:04X}_{error_code_masked:04X}"
  1586. # Only notify for errors with known descriptions — printers
  1587. # send many undocumented/phantom codes that aren't real errors.
  1588. # Resolved at parse time (#2926); short_code is still needed
  1589. # for the suppression set below.
  1590. description = error.description
  1591. if not description or short_code in _HMS_NOTIFICATION_SUPPRESS:
  1592. continue
  1593. error_type = f"{module_name} Error"
  1594. error_detail = description
  1595. await notification_service.on_printer_error(
  1596. printer_id, printer_name, error_type, db, error_detail, image_data=error_image_data
  1597. )
  1598. sent_count += 1
  1599. if sent_count:
  1600. logging.getLogger(__name__).info(
  1601. f"[HMS] Sent notification for {sent_count} error(s) on printer {printer_id}"
  1602. )
  1603. # Also publish to MQTT relay (no DB).
  1604. printer_info = printer_manager.get_printer(printer_id)
  1605. if printer_info:
  1606. errors_data = [
  1607. {
  1608. "code": e.code,
  1609. "attr": e.attr,
  1610. "module": e.module,
  1611. "severity": e.severity,
  1612. }
  1613. for e in new_errors
  1614. ]
  1615. await mqtt_relay.on_printer_error(
  1616. printer_id, printer_info.name, printer_info.serial_number, errors_data
  1617. )
  1618. except Exception as e:
  1619. logging.getLogger(__name__).warning(f"HMS error notification failed: {e}")
  1620. else:
  1621. # No HMS errors — only clear tracking after a grace period to prevent
  1622. # flapping errors (brief hms:[] gaps) from re-triggering notifications.
  1623. # Some HMS codes (e.g. chamber temp regulation during PETG prints) toggle
  1624. # on/off every few seconds as conditions fluctuate around thresholds.
  1625. if printer_id in _notified_hms_errors:
  1626. last_seen = _hms_last_seen.get(printer_id, 0)
  1627. if time.time() - last_seen >= _HMS_CLEAR_GRACE_SECONDS:
  1628. _notified_hms_errors.pop(printer_id, None)
  1629. _hms_last_seen.pop(printer_id, None)
  1630. await ws_manager.send_printer_status(
  1631. printer_id,
  1632. printer_state_to_dict(
  1633. state,
  1634. printer_id,
  1635. printer_manager.get_model(printer_id),
  1636. printer_manager.get_drying_targets(printer_id),
  1637. ),
  1638. )
  1639. def _is_bambu_uuid(tray_uuid: str) -> bool:
  1640. """Check if a tray UUID looks like a valid Bambu Lab RFID UUID (non-empty, non-zero)."""
  1641. return bool(tray_uuid) and tray_uuid not in ("", "0" * len(tray_uuid))
  1642. async def on_fts_inlet_change(printer_id: int, ams_id: int, inlet: str):
  1643. """Re-point a moved AMS's K-profiles at the nozzle it now feeds.
  1644. K-profiles are per-nozzle and the printer's calibration table is numbered
  1645. per-nozzle, but a tray holds exactly one ``cali_idx``. Moving an AMS to the
  1646. switch's other inlet therefore silently invalidates every configured slot in
  1647. it: the index stays put and now resolves against the other nozzle's table.
  1648. Measured on the maintainer's H2C — one spool calibrated 0.018 on the left
  1649. and 0.020 on the right kept the left profile after the move, and a manual
  1650. RFID re-read only re-asserted the same wrong one.
  1651. Configuring a slot is a deliberate preparation step, so this re-selects
  1652. rather than re-configures: only the calibration binding moves, and only for
  1653. slots whose spool already has a stored profile for the new nozzle. A slot
  1654. Bambuddy knows nothing about is left exactly as the operator left it.
  1655. """
  1656. logger = logging.getLogger(__name__)
  1657. target_extruder = extruder_for_inlet(inlet)
  1658. if target_extruder is None:
  1659. return
  1660. client = printer_manager.get_client(printer_id)
  1661. state = printer_manager.get_status(printer_id)
  1662. if not client or not state or not state.raw_data:
  1663. return
  1664. # The nozzle the AMS now feeds -- the diameter of the TARGET extruder, not
  1665. # of nozzle 0. On a machine with two sizes fitted, moving the inlet changes
  1666. # the nozzle width, which changes both the K profile to select and the
  1667. # preset the slot should carry.
  1668. nozzle_diameter = nozzle_diameter_for_extruder(state, target_extruder, printer_manager.get_model(printer_id))
  1669. ams_raw = state.raw_data.get("ams")
  1670. ams_list = ams_raw.get("ams", []) if isinstance(ams_raw, dict) else ams_raw if isinstance(ams_raw, list) else []
  1671. unit = next((u for u in ams_list if str(u.get("id")) == str(ams_id)), None)
  1672. if not unit:
  1673. return
  1674. try:
  1675. async with async_session() as db:
  1676. for tray in unit.get("tray", []):
  1677. tray_id = int(tray.get("id", -1))
  1678. if tray_id < 0 or not tray.get("tray_type"):
  1679. continue
  1680. current_idx = tray.get("cali_idx")
  1681. profile = await find_slot_kprofile_for_extruder(
  1682. db,
  1683. printer_id,
  1684. ams_id,
  1685. tray_id,
  1686. target_extruder,
  1687. nozzle_diameter,
  1688. printer_manager.get_model(printer_id),
  1689. nozzle_flow_for_extruder(state, target_extruder, printer_manager.get_model(printer_id)),
  1690. )
  1691. if profile is None or profile.cali_idx is None:
  1692. continue
  1693. if current_idx == profile.cali_idx:
  1694. continue # Already on the right one.
  1695. logger.info(
  1696. "[Printer %s] AMS %s slot %s moved to inlet %s (nozzle %s): "
  1697. "re-selecting K-profile %s (cali_idx %s -> %s, K=%s)",
  1698. printer_id,
  1699. ams_id,
  1700. tray_id,
  1701. inlet,
  1702. target_extruder,
  1703. profile.name,
  1704. current_idx,
  1705. profile.cali_idx,
  1706. profile.k_value,
  1707. )
  1708. client.extrusion_cali_sel(
  1709. ams_id=ams_id,
  1710. tray_id=tray_id,
  1711. cali_idx=profile.cali_idx,
  1712. filament_id=printer_safe_filament_id(profile.filament_id, tray.get("tray_info_idx", "")),
  1713. nozzle_diameter=nozzle_diameter,
  1714. )
  1715. except Exception as e:
  1716. logger.warning("[Printer %s] Could not re-apply K-profiles after inlet move: %s", printer_id, e)
  1717. async def on_ams_change(printer_id: int, ams_data: list):
  1718. """Handle AMS data changes - sync to Spoolman if enabled and auto mode."""
  1719. logger = logging.getLogger(__name__)
  1720. # Snapshot BEFORE any await: if a print is active, skip weight sync later.
  1721. # on_print_complete may pop _active_sessions during our awaits (#880).
  1722. from backend.app.services.usage_tracker import _active_sessions
  1723. _print_active = printer_id in _active_sessions
  1724. # A slot that reports empty while a print is running is a filament runout,
  1725. # not a spool swap: the spool is still physically in the AMS, just
  1726. # consumed. Dropping either inventory backend's slot link there loses the
  1727. # only record of which spool fed the print, so the completion path can't
  1728. # charge the runout segment to anything. Both cleanup passes below consult
  1729. # this; computed once, up front, so neither depends on the other having run.
  1730. _unlink_state = printer_manager.get_status(printer_id)
  1731. printing_now = (getattr(_unlink_state, "state", "") or "").upper() in ("RUNNING", "PAUSE")
  1732. # MQTT relay - publish AMS change
  1733. try:
  1734. printer_info = printer_manager.get_printer(printer_id)
  1735. if printer_info:
  1736. await mqtt_relay.on_ams_change(printer_id, printer_info.name, printer_info.serial_number, ams_data)
  1737. except Exception:
  1738. pass # Don't fail AMS callback if MQTT fails
  1739. # Broadcast AMS change via WebSocket (bypasses status_key deduplication)
  1740. # This ensures frontend gets immediate updates when AMS slots are configured
  1741. try:
  1742. state = printer_manager.get_status(printer_id)
  1743. if state:
  1744. logger.info("[Printer %s] Broadcasting AMS change via WebSocket", printer_id)
  1745. await ws_manager.send_printer_status(
  1746. printer_id,
  1747. printer_state_to_dict(
  1748. state,
  1749. printer_id,
  1750. printer_manager.get_model(printer_id),
  1751. printer_manager.get_drying_targets(printer_id),
  1752. ),
  1753. )
  1754. except Exception as e:
  1755. logger.warning("Failed to broadcast AMS change for printer %s: %s", printer_id, e)
  1756. from backend.app.utils.color_utils import colors_similar as _colors_similar
  1757. # Auto-unlink spool assignments with stale fingerprints
  1758. try:
  1759. async with async_session() as db:
  1760. from sqlalchemy.orm import selectinload
  1761. from backend.app.api.routes.inventory import _find_tray_in_ams_data
  1762. from backend.app.models.spool import Spool as _Spool
  1763. from backend.app.models.spool_assignment import SpoolAssignment as SA
  1764. from backend.app.services.inventory_mode import spoolman_owns_assignments
  1765. # Built-in assignments only. Since #2812 they survive a switch to
  1766. # Spoolman mode rather than being deleted by it, and this pass ends
  1767. # in ``db.delete`` — left ungated it would unlink them one slot at a
  1768. # time as the AMS contents changed under the other mode, undoing the
  1769. # preservation more slowly but just as completely.
  1770. assignments = []
  1771. if not await spoolman_owns_assignments(db):
  1772. result = await db.execute(
  1773. select(SA)
  1774. .where(SA.printer_id == printer_id)
  1775. .options(selectinload(SA.spool).selectinload(_Spool.k_profiles))
  1776. )
  1777. assignments = result.scalars().all()
  1778. # ``printing_now`` (top of this function) keeps a runout from
  1779. # unlinking the spool that fed the print — the next idle-time pass
  1780. # unlinks it if the user really did take it out.
  1781. stale = []
  1782. for assignment in assignments:
  1783. # External spool assignments (ams_id=255) live in vt_tray, not AMS data
  1784. if assignment.ams_id == 255:
  1785. ps = printer_manager.get_status(printer_id)
  1786. vt_tray_raw = ps.raw_data.get("vt_tray", []) if ps else []
  1787. ext_id = assignment.tray_id + 254 # 0→254, 1→255
  1788. current_tray = None
  1789. for vt in vt_tray_raw:
  1790. if isinstance(vt, dict) and int(vt.get("id", 254)) == ext_id:
  1791. current_tray = vt
  1792. break
  1793. if not current_tray:
  1794. # vt_tray data may not have arrived yet — keep assignment
  1795. continue
  1796. else:
  1797. current_tray = _find_tray_in_ams_data(ams_data, assignment.ams_id, assignment.tray_id)
  1798. if not current_tray:
  1799. if printing_now:
  1800. logger.info(
  1801. "Auto-unlink skipped: spool %d AMS%d-T%d — slot empty during a running print (runout?)",
  1802. assignment.spool_id,
  1803. assignment.ams_id,
  1804. assignment.tray_id,
  1805. )
  1806. continue
  1807. logger.info(
  1808. "Auto-unlink: spool %d AMS%d-T%d — tray not found in AMS data (slot empty?)",
  1809. assignment.spool_id,
  1810. assignment.ams_id,
  1811. assignment.tray_id,
  1812. )
  1813. stale.append(assignment) # Slot empty
  1814. elif _is_bambu_uuid(current_tray.get("tray_uuid", "")):
  1815. # A Bambu Lab spool is in this slot — check if it's the same spool
  1816. # that's currently assigned. If yes, keep the assignment (avoids
  1817. # unnecessary unlink/re-assign/ams_filament_setting cycle that clears
  1818. # the printer's filament preset on every startup).
  1819. tray_uuid = current_tray.get("tray_uuid", "")
  1820. tag_uid = current_tray.get("tag_uid", "")
  1821. spool = assignment.spool
  1822. spool_matches = False
  1823. if spool:
  1824. if (spool.tray_uuid and spool.tray_uuid.upper() == tray_uuid.upper()) or (
  1825. spool.tag_uid
  1826. and tag_uid
  1827. and tag_uid != "0000000000000000"
  1828. and spool.tag_uid.upper() == tag_uid.upper()
  1829. ):
  1830. spool_matches = True
  1831. if spool_matches:
  1832. # Same BL spool still in slot — keep assignment, update fingerprint if needed
  1833. cur_color = current_tray.get("tray_color", "")
  1834. cur_type = current_tray.get("tray_type", "")
  1835. fp_color = assignment.fingerprint_color or ""
  1836. fp_type = assignment.fingerprint_type or ""
  1837. if cur_color.upper() != fp_color.upper() or cur_type.upper() != fp_type.upper():
  1838. assignment.fingerprint_color = cur_color
  1839. assignment.fingerprint_type = cur_type
  1840. logger.debug(
  1841. "Auto-unlink: spool %d AMS%d-T%d — same BL spool, updated fingerprint",
  1842. assignment.spool_id,
  1843. assignment.ams_id,
  1844. assignment.tray_id,
  1845. )
  1846. continue
  1847. # Different BL spool or unrecognized — unlink so auto-assign can match
  1848. logger.info(
  1849. "Auto-unlink: spool %d AMS%d-T%d — different Bambu Lab spool detected (uuid=%s)",
  1850. assignment.spool_id,
  1851. assignment.ams_id,
  1852. assignment.tray_id,
  1853. tray_uuid,
  1854. )
  1855. stale.append(assignment)
  1856. else:
  1857. cur_color = current_tray.get("tray_color", "")
  1858. cur_type = current_tray.get("tray_type", "")
  1859. cur_state = current_tray.get("state")
  1860. fp_color = assignment.fingerprint_color or ""
  1861. fp_type = assignment.fingerprint_type or ""
  1862. # SpoolBuddy pre-config replay: fingerprint_type empty means
  1863. # the slot was empty when the user pre-assigned via SpoolBuddy
  1864. # (the firmware drops ams_filament_setting on empty slots, so
  1865. # MQTT was deferred). The moment any filament gets inserted
  1866. # — Bambu RFID, 3rd-party, or even an existing-but-now-
  1867. # reconfigured spool — fire the deferred configuration.
  1868. # The "loaded" signal is state == 11 (Bambu's "filament fed to
  1869. # extruder" code) OR, on firmwares that don't use the state
  1870. # enum meaningfully, a non-empty tray_type when state is
  1871. # NOT one of the firmware's explicit empty signals (9, 10).
  1872. # state-only was wrong for firmwares that never set 11 — A1
  1873. # Mini BMCU 01.07.02.00 and P1S Standard AMS 00.00.06.75 both
  1874. # always report state=3 — so the replay never fired for them
  1875. # (#1322). The state ∉ {9,10} guard keeps the firmware's
  1876. # explicit "empty" signals authoritative over any stale
  1877. # tray_type that might survive the relay's auto-clearing.
  1878. loaded = cur_state == 11 or (cur_state not in (9, 10) and cur_type.strip())
  1879. if not fp_type.strip() and loaded and assignment.spool:
  1880. try:
  1881. from backend.app.api.routes.inventory import (
  1882. apply_spool_to_slot_via_mqtt,
  1883. )
  1884. await apply_spool_to_slot_via_mqtt(
  1885. db=db,
  1886. current_user=None,
  1887. spool=assignment.spool,
  1888. printer_id=printer_id,
  1889. ams_id=assignment.ams_id,
  1890. tray_id=assignment.tray_id,
  1891. current_tray_info_idx=current_tray.get("tray_info_idx", ""),
  1892. current_tray_type=cur_type,
  1893. )
  1894. logger.info(
  1895. "SpoolBuddy pre-config applied on insert: spool %d → printer %d AMS%d-T%d",
  1896. assignment.spool_id,
  1897. printer_id,
  1898. assignment.ams_id,
  1899. assignment.tray_id,
  1900. )
  1901. except Exception:
  1902. logger.exception(
  1903. "Pre-config apply failed for spool %d on printer %d AMS%d-T%d",
  1904. assignment.spool_id,
  1905. printer_id,
  1906. assignment.ams_id,
  1907. assignment.tray_id,
  1908. )
  1909. assignment.fingerprint_color = cur_color
  1910. assignment.fingerprint_type = cur_type
  1911. continue
  1912. if not _colors_similar(cur_color, fp_color) or cur_type.upper() != fp_type.upper():
  1913. # Blank tray data mid-print is a runout, not a swap: the
  1914. # firmware clears colour and type when it unloads a spool
  1915. # it just emptied. Unlinking here would erase the record
  1916. # of which spool fed the print so far.
  1917. if printing_now and not cur_color.strip() and not cur_type.strip():
  1918. logger.info(
  1919. "Auto-unlink skipped: spool %d AMS%d-T%d — tray data cleared during a running print "
  1920. "(runout?)",
  1921. assignment.spool_id,
  1922. assignment.ams_id,
  1923. assignment.tray_id,
  1924. )
  1925. continue
  1926. # Fingerprint mismatch — but check if tray now matches the
  1927. # assigned spool (e.g. auto-configure changed the tray).
  1928. # Both sides are reduced to the type the slot can carry
  1929. # before comparing: the assign path writes that rather
  1930. # than the spool's raw material (#2902), so a spool whose
  1931. # material is a product line — "PLA+", "HTPLA" — reports
  1932. # back as "PLA" and would otherwise fail this check and
  1933. # be auto-unlinked from the slot it was just assigned to.
  1934. # Reducing the printer's side too keeps slots configured
  1935. # by an older Bambuddy, still reporting "PLA+", matching.
  1936. spool = assignment.spool
  1937. if spool:
  1938. spool_color = (spool.rgba or "FFFFFFFF").upper()
  1939. # Two ways the assign path can have arrived at the
  1940. # slot's type, so both count as "we wrote this".
  1941. # The material column is one; the spool's preset is
  1942. # the other, and it outranks the material when the
  1943. # spool has one -- a spool whose material says PLA
  1944. # and whose preset is "Bambu PLA Aero" puts
  1945. # PLA-AERO in the slot (#2902). Read from the stored
  1946. # preset name rather than resolving the preset,
  1947. # because this runs on every AMS push and a cloud
  1948. # lookup here would be both slow and unavailable on
  1949. # the unauthenticated replay path.
  1950. spool_types = {printer_filament_type(spool.material).upper()}
  1951. if spool.slicer_filament_name:
  1952. spool_types.add(printer_filament_type(spool.slicer_filament_name).upper())
  1953. # An imported local preset stores its type outright,
  1954. # which is what the assign path used -- and the name
  1955. # above may be unset. One keyed read, and only on a
  1956. # mismatch, which is rare.
  1957. #
  1958. # slicer_filament is free text up to fifty characters,
  1959. # so the digits have to be checked against the range
  1960. # of the integer primary key they are about to be
  1961. # compared with. Postgres raises on an out-of-range
  1962. # integer rather than simply not matching, and that
  1963. # would poison this session and abandon the rest of
  1964. # the cleanup pass.
  1965. lp_ref = (spool.slicer_filament or "").strip()
  1966. if lp_ref.isdigit() and int(lp_ref) <= 2147483647:
  1967. from backend.app.models.local_preset import LocalPreset as _LP
  1968. lp_type = await db.scalar(select(_LP.filament_type).where(_LP.id == int(lp_ref)))
  1969. if lp_type:
  1970. spool_types.add(printer_filament_type(lp_type).upper())
  1971. if (
  1972. _colors_similar(cur_color, spool_color)
  1973. and printer_filament_type(cur_type).upper() in spool_types
  1974. ):
  1975. logger.info(
  1976. "Auto-unlink: spool %d AMS%d-T%d — fingerprint mismatch but tray matches spool, updating fp",
  1977. assignment.spool_id,
  1978. assignment.ams_id,
  1979. assignment.tray_id,
  1980. )
  1981. assignment.fingerprint_color = cur_color
  1982. assignment.fingerprint_type = cur_type
  1983. continue
  1984. logger.info(
  1985. "Auto-unlink: spool %d AMS%d-T%d — fingerprint mismatch (cur=%s/%s fp=%s/%s spool=%s/%s)",
  1986. assignment.spool_id,
  1987. assignment.ams_id,
  1988. assignment.tray_id,
  1989. cur_color,
  1990. cur_type,
  1991. fp_color,
  1992. fp_type,
  1993. spool.rgba if spool else "?",
  1994. spool.material if spool else "?",
  1995. )
  1996. stale.append(assignment) # Spool changed
  1997. # Snapshot slots before delete — ORM attribute access after the
  1998. # commit would refresh against a deleted row.
  1999. unlinked_slots = [(a.ams_id, a.tray_id) for a in stale]
  2000. for a in stale:
  2001. await db.delete(a)
  2002. if stale:
  2003. logger.info("Auto-unlinked %d stale spool assignments for printer %d", len(stale), printer_id)
  2004. # Commit any changes (stale deletions and/or fingerprint updates)
  2005. await db.commit()
  2006. # Tell open browsers the assignment is gone (#2575). Only the manual
  2007. # REST assign/unassign endpoints broadcast this event; without it the
  2008. # frontend's spool-assignments cache keeps rendering the unlinked
  2009. # spool on the slot until an unrelated refetch — which reads exactly
  2010. # like "the fix didn't work" (reporter verified: a browser refresh
  2011. # after the swap showed the correct state all along).
  2012. for ams_id, tray_id in unlinked_slots:
  2013. await ws_manager.broadcast(
  2014. {
  2015. "type": "spool_assignment_changed",
  2016. "printer_id": printer_id,
  2017. "ams_id": ams_id,
  2018. "tray_id": tray_id,
  2019. }
  2020. )
  2021. except Exception as e:
  2022. logger.warning("Spool assignment cleanup failed: %s", e, exc_info=True)
  2023. # Auto-manage inventory spools from AMS tray data (skip if Spoolman manages AMS).
  2024. # Serialised per-printer via _ams_assignment_locks: MQTT bursts can deliver
  2025. # two AMS pushes ~30 ms apart, and without the lock both callbacks read
  2026. # "no existing assignment" for the same (printer, ams, tray) and race to
  2027. # INSERT, hitting the spool_assignment_printer_id_ams_id_tray_id_key
  2028. # unique constraint on Postgres. SQLite's WAL serialises writes so the
  2029. # bug stayed latent there. See _ams_assignment_locks comment for details.
  2030. try:
  2031. async with _get_ams_assignment_lock(printer_id), async_session() as db:
  2032. from backend.app.api.routes.settings import get_setting
  2033. from backend.app.models.spool import Spool
  2034. from backend.app.models.spool_assignment import SpoolAssignment as SA
  2035. from backend.app.services.spool_tag_matcher import (
  2036. auto_assign_spool,
  2037. create_spool_from_tray,
  2038. find_matching_untagged_spool,
  2039. get_spool_by_tag,
  2040. is_bambu_tag,
  2041. is_valid_tag,
  2042. link_tag_to_inventory_spool,
  2043. )
  2044. _spoolman_on = await get_setting(db, "spoolman_enabled")
  2045. _auto_add_raw = await get_setting(db, "auto_add_unknown_rfid")
  2046. _auto_add_unknown = _auto_add_raw is None or _auto_add_raw.lower() == "true"
  2047. if not _spoolman_on or _spoolman_on.lower() != "true":
  2048. for ams_unit in ams_data:
  2049. if not isinstance(ams_unit, dict):
  2050. continue
  2051. ams_id = int(ams_unit.get("id", 0))
  2052. for tray in ams_unit.get("tray", []):
  2053. if not isinstance(tray, dict):
  2054. continue
  2055. tray_id = int(tray.get("id", 0))
  2056. tag_uid = tray.get("tag_uid", "")
  2057. tray_uuid = tray.get("tray_uuid", "")
  2058. tray_info_idx = tray.get("tray_info_idx", "")
  2059. if not tray.get("tray_type"):
  2060. # Slot reported empty — drop any cached unknown-tag
  2061. # broadcast so reinserting the same spool re-prompts.
  2062. _clear_unknown_tag_dedup(printer_id, ams_id, tray_id)
  2063. continue # Empty slot
  2064. # Check if assignment already exists for this slot
  2065. existing = await db.execute(
  2066. select(SA)
  2067. .options(selectinload(SA.spool).selectinload(Spool.k_profiles))
  2068. .where(SA.printer_id == printer_id, SA.ams_id == ams_id, SA.tray_id == tray_id)
  2069. )
  2070. existing_assignment = existing.scalar_one_or_none()
  2071. if existing_assignment:
  2072. # Sync spool weight_used from AMS remain — only INCREASE, never decrease.
  2073. # The AMS remain% is low-resolution (integer %, i.e. 10g steps for 1kg spool)
  2074. # and must not overwrite precise values from the usage tracker (3MF/G-code).
  2075. # Skip during active prints: the usage tracker handles deduction
  2076. # precisely via 3MF data on print completion. Without this guard the
  2077. # AMS remain% SET and the usage tracker ADD both fire from the same
  2078. # MQTT message, doubling the deduction (#880).
  2079. if _print_active:
  2080. continue
  2081. remain_raw = tray.get("remain")
  2082. if (
  2083. remain_raw is not None
  2084. and existing_assignment.spool
  2085. and not existing_assignment.spool.weight_locked
  2086. ):
  2087. try:
  2088. remain_val = int(remain_raw)
  2089. except (TypeError, ValueError):
  2090. remain_val = -1
  2091. if 1 <= remain_val <= 100:
  2092. lw = existing_assignment.spool.label_weight or 1000
  2093. new_used = round(lw * (100 - remain_val) / 100.0, 1)
  2094. current_used = existing_assignment.spool.weight_used or 0
  2095. if new_used > current_used + 1:
  2096. logger.info(
  2097. "Weight sync: spool %d weight_used %s -> %s (remain=%d)",
  2098. existing_assignment.spool_id,
  2099. current_used,
  2100. new_used,
  2101. remain_val,
  2102. )
  2103. existing_assignment.spool.weight_used = new_used
  2104. await db.commit()
  2105. # Re-apply stored K-profile when the live tray's
  2106. # cali_idx drifted from the spool's stored profile.
  2107. # This catches "reset slot → re-read" and any other
  2108. # path where the firmware loses the user's K-profile
  2109. # selection while the SpoolAssignment row persists.
  2110. # Per the maintainer's rule: any time a spool tag is
  2111. # identified and matches inventory, the slot must be
  2112. # configured with the spool's stored settings. Without
  2113. # this block the existing-assignment branch only ran
  2114. # weight-sync and let the firmware-default cali_idx win.
  2115. try:
  2116. spool = existing_assignment.spool
  2117. if (
  2118. spool is not None
  2119. and is_bambu_tag(tag_uid, tray_uuid, tray_info_idx)
  2120. and spool.k_profiles
  2121. ):
  2122. state = printer_manager.get_status(printer_id)
  2123. slot_nozzle = resolve_slot_nozzle(
  2124. state, ams_id, tray_id, printer_manager.get_model(printer_id)
  2125. )
  2126. nozzle_diameter = slot_nozzle.diameter
  2127. slot_extruder = slot_nozzle.extruder
  2128. # Prefer exact extruder match, fall back to
  2129. # extruder-agnostic kp for the same printer +
  2130. # nozzle. Avoids hard-skipping when the AMS is
  2131. # mapped differently than at calibration time.
  2132. matching_kp = None
  2133. fallback_kp = None
  2134. for kp in spool.k_profiles:
  2135. if (
  2136. kp.printer_id != printer_id
  2137. or kp.nozzle_diameter != nozzle_diameter
  2138. or kp.cali_idx is None
  2139. or not slot_nozzle.flow_matches(kp.nozzle_type)
  2140. ):
  2141. continue
  2142. if (
  2143. slot_extruder is not None
  2144. and kp.extruder is not None
  2145. and kp.extruder == slot_extruder
  2146. ):
  2147. matching_kp = kp
  2148. break
  2149. if fallback_kp is None:
  2150. fallback_kp = kp
  2151. chosen_kp = matching_kp or fallback_kp
  2152. if chosen_kp is not None:
  2153. live_cali_idx = tray.get("cali_idx")
  2154. # Only fire MQTT when the printer's live
  2155. # cali_idx differs from the stored value.
  2156. # Avoids spamming the broker on every
  2157. # MQTT push during steady-state operation.
  2158. if live_cali_idx != chosen_kp.cali_idx:
  2159. client = printer_manager.get_client(printer_id)
  2160. if client:
  2161. cali_filament_id = spool.slicer_filament or tray_info_idx or ""
  2162. client.extrusion_cali_sel(
  2163. ams_id=ams_id,
  2164. tray_id=tray_id,
  2165. cali_idx=chosen_kp.cali_idx,
  2166. filament_id=cali_filament_id,
  2167. nozzle_diameter=nozzle_diameter,
  2168. )
  2169. logger.info(
  2170. "Re-applied K-profile cali_idx=%d for spool %d "
  2171. "on printer %d AMS%d-T%d (live=%s drift detected)",
  2172. chosen_kp.cali_idx,
  2173. spool.id,
  2174. printer_id,
  2175. ams_id,
  2176. tray_id,
  2177. live_cali_idx,
  2178. )
  2179. except Exception:
  2180. logger.exception(
  2181. "K-profile re-apply failed for printer %d AMS%d-T%d",
  2182. printer_id,
  2183. ams_id,
  2184. tray_id,
  2185. )
  2186. continue
  2187. if is_bambu_tag(tag_uid, tray_uuid, tray_info_idx):
  2188. # BL spool with RFID tag: auto-match → inventory match → auto-create
  2189. spool = await get_spool_by_tag(db, tag_uid, tray_uuid)
  2190. if not spool:
  2191. # Try matching an untagged inventory spool (same material/color)
  2192. spool = await find_matching_untagged_spool(db, tray)
  2193. if spool:
  2194. await link_tag_to_inventory_spool(db, spool, tray)
  2195. elif _auto_add_unknown:
  2196. spool = await create_spool_from_tray(db, tray)
  2197. else:
  2198. # Auto-add disabled: surface the slot so the
  2199. # user can add it manually via the UI.
  2200. await _broadcast_unknown_tag(
  2201. printer_id=printer_id,
  2202. ams_id=ams_id,
  2203. tray_id=tray_id,
  2204. tag_uid=tag_uid,
  2205. tray_uuid=tray_uuid,
  2206. tray_type=tray.get("tray_type"),
  2207. tray_color=tray.get("tray_color"),
  2208. tray_sub_brands=tray.get("tray_sub_brands"),
  2209. tray_count=len(ams_unit.get("tray", [])),
  2210. )
  2211. continue
  2212. # Slot matched (existing tag, untagged inventory
  2213. # match, or freshly auto-created spool) — drop any
  2214. # stale dedup so a future tag swap re-prompts.
  2215. _clear_unknown_tag_dedup(printer_id, ams_id, tray_id)
  2216. await auto_assign_spool(
  2217. printer_id,
  2218. ams_id,
  2219. tray_id,
  2220. spool,
  2221. printer_manager,
  2222. db,
  2223. tray_info_idx=tray_info_idx,
  2224. )
  2225. await db.commit()
  2226. await ws_manager.broadcast(
  2227. {
  2228. "type": "spool_auto_assigned",
  2229. "printer_id": printer_id,
  2230. "ams_id": ams_id,
  2231. "tray_id": tray_id,
  2232. "spool_id": spool.id,
  2233. }
  2234. )
  2235. logger.info(
  2236. "RFID auto-assigned spool %d to printer %d AMS%d-T%d",
  2237. spool.id,
  2238. printer_id,
  2239. ams_id,
  2240. tray_id,
  2241. )
  2242. elif is_valid_tag(tag_uid, tray_uuid):
  2243. # Non-BL spool with some tag — let user choose
  2244. await _broadcast_unknown_tag(
  2245. printer_id=printer_id,
  2246. ams_id=ams_id,
  2247. tray_id=tray_id,
  2248. tag_uid=tag_uid,
  2249. tray_uuid=tray_uuid,
  2250. tray_type=tray.get("tray_type"),
  2251. tray_color=tray.get("tray_color"),
  2252. tray_sub_brands=tray.get("tray_sub_brands"),
  2253. tray_count=len(ams_unit.get("tray", [])),
  2254. )
  2255. # No-tag slots (generic non-RFID filament) are left alone:
  2256. # nothing to identify, prompting "+ Add" would just create
  2257. # ghost spools with empty tags on every confirm.
  2258. except Exception as e:
  2259. logger.warning("RFID spool auto-assign failed: %s", e, exc_info=True)
  2260. try:
  2261. async with async_session() as db:
  2262. from backend.app.api.routes.settings import get_setting
  2263. from backend.app.models.printer import Printer
  2264. # Check if Spoolman is enabled
  2265. spoolman_enabled = await get_setting(db, "spoolman_enabled")
  2266. if not spoolman_enabled or spoolman_enabled.lower() != "true":
  2267. return
  2268. # Check sync mode
  2269. sync_mode = await get_setting(db, "spoolman_sync_mode")
  2270. if sync_mode and sync_mode != "auto":
  2271. return # Only sync on auto mode
  2272. _auto_add_raw_sm = await get_setting(db, "auto_add_unknown_rfid")
  2273. auto_add_unknown_rfid = _auto_add_raw_sm is None or _auto_add_raw_sm.lower() == "true"
  2274. # `spoolman_disable_weight_sync` is deprecated (#1119) — weight is now
  2275. # always owned by per-print tracking, never by AMS auto-sync. The
  2276. # setting is still read by the settings UI for backwards compat but
  2277. # has no effect on the sync path here.
  2278. # Get Spoolman URL
  2279. spoolman_url = await get_setting(db, "spoolman_url")
  2280. if not spoolman_url:
  2281. return
  2282. # Get or create Spoolman client
  2283. client = await get_spoolman_client()
  2284. if not client:
  2285. try:
  2286. client = await init_spoolman_client(spoolman_url)
  2287. except ValueError as exc:
  2288. logger.warning("Spoolman URL %r rejected by SSRF guard: %s", spoolman_url, exc)
  2289. return
  2290. # Check if Spoolman is reachable
  2291. if not await client.health_check():
  2292. logger.warning("Spoolman not reachable at %s", spoolman_url)
  2293. return
  2294. # Get printer name for location
  2295. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  2296. printer = result.scalar_one_or_none()
  2297. printer_name = printer.name if printer else f"Printer {printer_id}"
  2298. # OPTIMIZATION: Fetch all spools once before processing trays
  2299. # This eliminates redundant API calls (one per tray) when syncing multiple trays
  2300. logger.debug("[Printer %s] Fetching spools cache for AMS sync...", printer_id)
  2301. try:
  2302. cached_spools = await client.get_spools()
  2303. logger.debug("[Printer %s] Cached %d spools for batch sync", printer_id, len(cached_spools))
  2304. except Exception as e:
  2305. logger.error(
  2306. "[Printer %s] Failed to fetch spools cache after retries, aborting AMS sync: %s",
  2307. printer_id,
  2308. e,
  2309. )
  2310. return
  2311. # Load inventory weights as fallback (when AMS MQTT data lacks remain values)
  2312. from sqlalchemy.orm import selectinload
  2313. from backend.app.models.spool_assignment import SpoolAssignment
  2314. from backend.app.models.spoolman_slot_assignment import SpoolmanSlotAssignment
  2315. from backend.app.services.inventory_mode import spoolman_owns_assignments
  2316. # Built-in remaining weight, used by sync_ams_tray only when the
  2317. # firmware reports an unusable remain%/tray_weight for a slot.
  2318. #
  2319. # Left empty since #2812. This block runs in Spoolman mode only,
  2320. # and until then the built-in table was emptied on the switch, so
  2321. # there was never anything here to read and the fallback was inert.
  2322. # Preserving those rows makes it live again, and it is keyed by slot
  2323. # rather than by spool: after a mode switch the tray may well hold
  2324. # different filament, and ``create_spool`` writes ``remaining_weight``
  2325. # unconditionally, so a stale figure would be seeded into a brand new
  2326. # Spoolman spool. Deliberately kept inert rather than deleted, so the
  2327. # intent survives for whoever revisits the cross-mode fallback.
  2328. inventory_weights: dict[tuple[int, int], float] = {}
  2329. if not await spoolman_owns_assignments(db):
  2330. try:
  2331. assign_result = await db.execute(
  2332. select(SpoolAssignment)
  2333. .options(selectinload(SpoolAssignment.spool))
  2334. .where(SpoolAssignment.printer_id == printer_id)
  2335. )
  2336. for assignment in assign_result.scalars().all():
  2337. spool = assignment.spool
  2338. if spool and spool.label_weight > 0:
  2339. remaining = max(0.0, spool.label_weight - (spool.weight_used or 0))
  2340. inventory_weights[(assignment.ams_id, assignment.tray_id)] = remaining
  2341. except Exception as e:
  2342. logger.warning("Could not load inventory weights for printer %s: %s", printer_id, e)
  2343. # Load existing Spoolman slot assignments for the no-RFID fallback path
  2344. spoolman_slot_map: dict[tuple[int, int], int] = {}
  2345. try:
  2346. slot_result = await db.execute(
  2347. select(SpoolmanSlotAssignment).where(SpoolmanSlotAssignment.printer_id == printer_id)
  2348. )
  2349. for slot in slot_result.scalars().all():
  2350. spoolman_slot_map[(slot.ams_id, slot.tray_id)] = slot.spoolman_spool_id
  2351. except Exception as e:
  2352. logger.warning("Could not load Spoolman slot assignments for printer %s: %s", printer_id, e)
  2353. # Sync each AMS tray and collect slot changes for DB persistence
  2354. synced = 0
  2355. slot_changes: list[tuple[int, int, int]] = [] # (ams_id, tray_id, spoolman_spool_id) to upsert
  2356. empty_slots: list[tuple[int, int]] = [] # (ams_id, tray_id) whose tray is now empty
  2357. for ams_unit in ams_data:
  2358. if not isinstance(ams_unit, dict):
  2359. continue
  2360. ams_id = int(ams_unit.get("id", 0))
  2361. trays = ams_unit.get("tray", [])
  2362. for tray_data in trays:
  2363. if not isinstance(tray_data, dict):
  2364. continue
  2365. tray_id_raw = int(tray_data.get("id", 0))
  2366. tray = client.parse_ams_tray(ams_id, tray_data)
  2367. if not tray:
  2368. # Empty tray slot — record for local assignment cleanup
  2369. # and drop any cached unknown-tag broadcast so a
  2370. # reinserted spool re-prompts.
  2371. #
  2372. # Not during a running print: a slot that empties there
  2373. # is a filament runout, and the spool is still in the
  2374. # AMS. `spoolman_slot_assignments` is how a tag-less
  2375. # spool assigned through the Bambuddy UI is resolved at
  2376. # completion (#1459), so deleting the row mid-print
  2377. # loses the runout segment's usage — the same failure
  2378. # the internal inventory's auto-unlink had.
  2379. if not printing_now:
  2380. empty_slots.append((ams_id, tray_id_raw))
  2381. _clear_unknown_tag_dedup(printer_id, ams_id, tray_id_raw)
  2382. continue
  2383. spool_tag = (
  2384. tray.tray_uuid
  2385. if tray.tray_uuid and tray.tray_uuid != "00000000000000000000000000000000"
  2386. else tray.tag_uid
  2387. )
  2388. # Provide the hint only when no RFID is available
  2389. hint = spoolman_slot_map.get((ams_id, tray.tray_id)) if not spool_tag else None
  2390. try:
  2391. inv_remaining = inventory_weights.get((ams_id, tray.tray_id))
  2392. result = await client.sync_ams_tray(
  2393. tray,
  2394. printer_name,
  2395. # Per-print tracking is the only weight writer (#1119).
  2396. # AMS auto-sync still maintains spool metadata / slot
  2397. # assignments but no longer touches remaining_weight.
  2398. disable_weight_sync=True,
  2399. cached_spools=cached_spools,
  2400. inventory_remaining=inv_remaining,
  2401. spoolman_spool_id_hint=hint,
  2402. auto_add_unknown_rfid=auto_add_unknown_rfid,
  2403. )
  2404. if result is None and spool_tag and not auto_add_unknown_rfid:
  2405. # Spoolman skipped auto-create per user setting — surface
  2406. # the slot so the UI can offer "+ Add to inventory".
  2407. await _broadcast_unknown_tag(
  2408. printer_id=printer_id,
  2409. ams_id=ams_id,
  2410. tray_id=tray.tray_id,
  2411. tag_uid=tray.tag_uid or "",
  2412. tray_uuid=tray.tray_uuid or "",
  2413. tray_type=tray.tray_type,
  2414. tray_color=tray.tray_color,
  2415. tray_sub_brands=tray.tray_sub_brands,
  2416. tray_count=len(trays),
  2417. )
  2418. elif result:
  2419. _clear_unknown_tag_dedup(printer_id, ams_id, tray.tray_id)
  2420. if result:
  2421. synced += 1
  2422. if result.get("id"):
  2423. slot_changes.append((ams_id, tray.tray_id, result["id"]))
  2424. # If a new spool was created, add it to the cache
  2425. # so subsequent trays can find it if they reference the same tag
  2426. spool_exists = any(s.get("id") == result["id"] for s in cached_spools)
  2427. if not spool_exists:
  2428. cached_spools.append(result)
  2429. logger.debug(
  2430. "[Printer %s] Added newly created spool %s to cache",
  2431. printer_id,
  2432. result["id"],
  2433. )
  2434. # Reconcile slot_preset_mappings (the same row internal
  2435. # mode keeps in sync via inventory + spool_tag_matcher).
  2436. # Without this the slot card surfaces the previous spool's
  2437. # preset name — same bug shape, different inventory mode.
  2438. from backend.app.services.slot_preset_writer import (
  2439. upsert_slot_preset_for_spoolman_spool,
  2440. )
  2441. await upsert_slot_preset_for_spoolman_spool(
  2442. db=db,
  2443. spoolman_spool=result,
  2444. tray_info_idx=tray.tray_info_idx or "",
  2445. tray_sub_brands=tray.tray_sub_brands or "",
  2446. tray_type=tray.tray_type or "",
  2447. printer_id=printer_id,
  2448. ams_id=ams_id,
  2449. tray_id=tray.tray_id,
  2450. )
  2451. except Exception as e:
  2452. logger.error("Error syncing AMS %s tray %s: %s", ams_id, tray.tray_id, e)
  2453. if synced > 0:
  2454. logger.info("Auto-synced %s AMS trays to Spoolman for printer %s", synced, printer_id)
  2455. # Persist slot assignment changes to the local table
  2456. if slot_changes or empty_slots:
  2457. try:
  2458. for ams_id, tray_id, spool_id in slot_changes:
  2459. await db.execute(
  2460. text(
  2461. "INSERT INTO spoolman_slot_assignments"
  2462. " (printer_id, ams_id, tray_id, spoolman_spool_id)"
  2463. " VALUES (:printer_id, :ams_id, :tray_id, :spool_id)"
  2464. " ON CONFLICT(printer_id, ams_id, tray_id)"
  2465. " DO UPDATE SET spoolman_spool_id = excluded.spoolman_spool_id"
  2466. ),
  2467. {
  2468. "printer_id": printer_id,
  2469. "ams_id": ams_id,
  2470. "tray_id": tray_id,
  2471. "spool_id": spool_id,
  2472. },
  2473. )
  2474. for ams_id, tray_id in empty_slots:
  2475. await db.execute(
  2476. delete(SpoolmanSlotAssignment).where(
  2477. SpoolmanSlotAssignment.printer_id == printer_id,
  2478. SpoolmanSlotAssignment.ams_id == ams_id,
  2479. SpoolmanSlotAssignment.tray_id == tray_id,
  2480. )
  2481. )
  2482. await db.commit()
  2483. except Exception as e:
  2484. await db.rollback()
  2485. logger.error("Error persisting Spoolman slot assignments for printer %s: %s", printer_id, e)
  2486. except Exception as e:
  2487. logging.getLogger(__name__).error("Spoolman AMS sync failed for printer %s: %s", printer_id, e)
  2488. async def _capture_snapshot_for_notification(printer_id: int, printer, logger) -> bytes | None:
  2489. """Capture a camera snapshot for notification image attachment.
  2490. Returns JPEG bytes (max 2.5MB) or None if capture fails or is unavailable.
  2491. Uses: external camera > buffered frame > fresh capture.
  2492. """
  2493. if not printer:
  2494. return None
  2495. try:
  2496. from backend.app.api.routes.settings import get_setting
  2497. async with async_session() as db:
  2498. capture_enabled = await get_setting(db, "capture_finish_photo")
  2499. if capture_enabled is not None and capture_enabled.lower() != "true":
  2500. return None
  2501. # Try external camera first
  2502. if printer.external_camera_enabled and printer.external_camera_url:
  2503. logger.info("[SNAPSHOT] Capturing from external camera for printer %s", printer_id)
  2504. from backend.app.api.routes.camera import live_frame_for_capture
  2505. from backend.app.services.external_camera import capture_frame
  2506. # An external camera allows one reader, so capturing while a viewer
  2507. # is attached fails (#2707). A None here falls through to the paths
  2508. # below exactly as a failed capture did.
  2509. defer, buffered = live_frame_for_capture(printer_id)
  2510. if defer:
  2511. frame_data = buffered
  2512. else:
  2513. frame_data = await capture_frame(
  2514. printer.external_camera_url,
  2515. printer.external_camera_type or "mjpeg",
  2516. snapshot_url=printer.external_camera_snapshot_url,
  2517. )
  2518. if frame_data and len(frame_data) <= 2_500_000:
  2519. logger.info("[SNAPSHOT] External camera frame: %s bytes", len(frame_data))
  2520. return _apply_camera_rotation(frame_data, printer, logger)
  2521. # Try buffered frame from active stream
  2522. from backend.app.api.routes.camera import _active_chamber_streams, _active_streams, get_buffered_frame
  2523. active_for_printer = [k for k in _active_streams if k.startswith(f"{printer_id}-")]
  2524. active_chamber = [k for k in _active_chamber_streams if k.startswith(f"{printer_id}-")]
  2525. buffered_frame = get_buffered_frame(printer_id)
  2526. if (active_for_printer or active_chamber) and buffered_frame:
  2527. logger.info("[SNAPSHOT] Using buffered frame for printer %s: %s bytes", printer_id, len(buffered_frame))
  2528. if len(buffered_frame) <= 2_500_000:
  2529. return _apply_camera_rotation(buffered_frame, printer, logger)
  2530. # Fresh capture from printer camera
  2531. logger.info("[SNAPSHOT] Capturing fresh frame for printer %s", printer_id)
  2532. from backend.app.services.camera import capture_camera_frame_bytes
  2533. frame_data = await capture_camera_frame_bytes(
  2534. printer.ip_address, printer.access_code, printer.model, timeout=15
  2535. )
  2536. if frame_data and len(frame_data) <= 2_500_000:
  2537. logger.info("[SNAPSHOT] Fresh camera frame: %s bytes", len(frame_data))
  2538. return _apply_camera_rotation(frame_data, printer, logger)
  2539. except Exception as e:
  2540. logger.warning("[SNAPSHOT] Failed to capture snapshot for printer %s: %s", printer_id, e)
  2541. return None
  2542. async def _maybe_bank_inprint_frame(printer_id: int, layer_num: int) -> None:
  2543. """#1867: bank a recent in-print camera frame for the finish photo.
  2544. Called on every layer change and (#2547) on every print-progress advance.
  2545. Grabs one frame (throttled) into ``_inprint_frame_bank`` so the finish-photo
  2546. path has a pre-End-G-code image for prints that end with a plate swap.
  2547. Both drivers are print telemetry that stops the instant printing ends: no
  2548. further layers, and progress freezes before the End G-code (e.g. SwapMod
  2549. plate swap) executes. So the last banked frame is always the finished print,
  2550. never the swapped plate — that property is what the #1867 path relies on and
  2551. it must survive any change to the throttle below.
  2552. Layer changes alone were not enough: they stop when the *final* layer
  2553. begins, which on a three-minute last layer left the bank stale by the whole
  2554. length of that layer (#2547). Progress keeps ticking through it.
  2555. Best-effort: any failure just leaves the previous banked frame.
  2556. """
  2557. logger = logging.getLogger(__name__)
  2558. client = printer_manager.get_client(printer_id)
  2559. state = client.state if client else None
  2560. if not state or state.state != "RUNNING":
  2561. return
  2562. # Only during actual extrusion — firmware ticks layer_num during the
  2563. # pre-print calibration sequence, whose sub-stages are non-zero.
  2564. if state.mc_print_sub_stage not in (None, 0):
  2565. return
  2566. # #2547: throttled uniformly, with no last-layer exemption. The old code
  2567. # bypassed the throttle on the final layer to guarantee a fresh frame there;
  2568. # now that progress advances also drive banking, that exemption would fire a
  2569. # camera grab on every percent tick of the last layer. Bambu printers accept
  2570. # one RTSP client at a time, so each grab contends with the live view.
  2571. now = time.monotonic()
  2572. last = _inprint_frame_bank_ts.get(printer_id, 0.0)
  2573. if (now - last) < _INPRINT_BANK_MIN_INTERVAL:
  2574. return
  2575. total = state.total_layers or 0
  2576. try:
  2577. async with async_session() as db:
  2578. from backend.app.models.printer import Printer
  2579. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  2580. printer = result.scalar_one_or_none()
  2581. if not printer:
  2582. return
  2583. # Reuses the notification snapshot path, which honours the
  2584. # `capture_finish_photo` setting (returns None when disabled) so we
  2585. # don't bank frames the user never asked for.
  2586. frame = await _capture_snapshot_for_notification(printer_id, printer, logger)
  2587. if frame:
  2588. _inprint_frame_bank[printer_id] = frame
  2589. _inprint_frame_bank_ts[printer_id] = now
  2590. logger.debug(
  2591. "[FINISH-PHOTO-BANK] banked in-print frame for printer %s at layer %s/%s (%d bytes)",
  2592. printer_id,
  2593. layer_num,
  2594. total,
  2595. len(frame),
  2596. )
  2597. except Exception as e:
  2598. logger.debug("[FINISH-PHOTO-BANK] bank failed for printer %s: %s", printer_id, e)
  2599. def _apply_camera_rotation(image_data: bytes, printer, logger) -> bytes:
  2600. """Apply camera rotation to snapshot image if configured."""
  2601. from backend.app.services.camera import apply_camera_rotation
  2602. return apply_camera_rotation(image_data, getattr(printer, "camera_rotation", 0), logger)
  2603. async def _send_print_start_notification(
  2604. printer_id: int,
  2605. data: dict,
  2606. archive_data: dict | None = None,
  2607. logger=None,
  2608. ):
  2609. """Helper to send print start notification with optional archive data."""
  2610. if logger is None:
  2611. logger = logging.getLogger(__name__)
  2612. try:
  2613. async with async_session() as db:
  2614. from backend.app.models.printer import Printer
  2615. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  2616. printer = result.scalar_one_or_none()
  2617. printer_name = printer.name if printer else f"Printer {printer_id}"
  2618. # Capture camera snapshot for notification image attachment
  2619. image_data = await _capture_snapshot_for_notification(printer_id, printer, logger)
  2620. if image_data:
  2621. if archive_data is None:
  2622. archive_data = {}
  2623. archive_data["image_data"] = image_data
  2624. await notification_service.on_print_start(printer_id, printer_name, data, db, archive_data=archive_data)
  2625. # Send user-specific email notification for print start
  2626. if archive_data and archive_data.get("created_by_id"):
  2627. await notification_service.send_user_print_email(
  2628. event_type="user_print_start",
  2629. created_by_id=archive_data["created_by_id"],
  2630. printer_name=printer_name,
  2631. filename=data.get("subtask_name") or data.get("filename", "Unknown"),
  2632. db=db,
  2633. )
  2634. except Exception as e:
  2635. logger.warning("Notification on_print_start failed: %s", e)
  2636. async def _dispatch_user_print_email(
  2637. status: str,
  2638. created_by_id: int | None,
  2639. printer_name: str,
  2640. filename: str,
  2641. db,
  2642. ) -> None:
  2643. """Send a user-specific print-completion email based on print status.
  2644. Maps the normalised print status to the correct event type and delegates
  2645. to :meth:`NotificationService.send_user_print_email`. A single helper
  2646. avoids duplicating the ``if status == "completed" / elif "failed" / elif
  2647. "stopped"`` dispatch block at every call site.
  2648. Does nothing if *created_by_id* is ``None``.
  2649. """
  2650. if created_by_id is None:
  2651. return
  2652. if status == "completed":
  2653. event_type = "user_print_complete"
  2654. elif status == "failed":
  2655. event_type = "user_print_failed"
  2656. elif status in ("stopped", "aborted", "cancelled"):
  2657. event_type = "user_print_stopped"
  2658. else:
  2659. return
  2660. await notification_service.send_user_print_email(
  2661. event_type=event_type,
  2662. created_by_id=created_by_id,
  2663. printer_name=printer_name,
  2664. filename=filename,
  2665. db=db,
  2666. )
  2667. def _load_objects_from_archive(archive, printer_id: int, logger) -> None:
  2668. """Extract printable objects from an archive's 3MF file and store in printer state."""
  2669. try:
  2670. from backend.app.services.archive import extract_printable_objects_from_archive
  2671. client = printer_manager.get_client(printer_id)
  2672. if not client:
  2673. return
  2674. # Extract with positions for UI overlay, scoped to the plate that
  2675. # is printing — resolve_plate_id is the same resolver /cover uses,
  2676. # so the object list can't disagree with the thumbnail it is drawn
  2677. # over (#2522).
  2678. printable_objects, bbox_all = extract_printable_objects_from_archive(
  2679. app_settings.base_dir / archive.file_path,
  2680. plate_number=resolve_plate_id(client.state),
  2681. )
  2682. if printable_objects:
  2683. client.state.printable_objects = printable_objects
  2684. client.state.printable_objects_bbox_all = bbox_all
  2685. client.state.skipped_objects = []
  2686. logger.info("Loaded %s printable objects for printer %s", len(printable_objects), printer_id)
  2687. except Exception as e:
  2688. logger.debug("Failed to extract printable objects from archive: %s", e)
  2689. async def _restore_printable_objects(printer_id: int, state, db, logger) -> None:
  2690. """Put the skip-objects list back after a restart mid-print.
  2691. ``PrinterState.printable_objects`` is in-memory only, and the only thing
  2692. that fills it is ``_load_objects_from_archive`` on the print-start paths —
  2693. which the #1304 guard suppresses on the first RUNNING push after startup.
  2694. Everything else this hook restores (the archive, the usage-tracking session,
  2695. the timelapse baseline) was already handled; the object list was not, so a
  2696. restart mid-print took skip-objects away for the rest of that print.
  2697. Nothing recovered it either: the printer card gates its Skip button on the
  2698. object count, and the one endpoint that can rebuild the list is reachable
  2699. only from the modal that button opens.
  2700. Anchored on ``subtask_id``, which the firmware mints per print, so a
  2701. leftover ``status="printing"`` row from a completion we never saw cannot
  2702. hand this print someone else's objects. Without one, nothing is loaded
  2703. rather than guessed — the reload path on ``GET /print/objects`` covers that
  2704. case on demand.
  2705. """
  2706. client = printer_manager.get_client(printer_id)
  2707. if client is None or client.state.printable_objects:
  2708. return
  2709. subtask_id = str(getattr(state, "subtask_id", "") or "").strip()
  2710. if subtask_id in ("", "0"):
  2711. return
  2712. from backend.app.models.archive import PrintArchive
  2713. archive = await db.scalar(
  2714. select(PrintArchive)
  2715. .where(
  2716. PrintArchive.printer_id == printer_id,
  2717. PrintArchive.status == "printing",
  2718. PrintArchive.subtask_id == subtask_id,
  2719. )
  2720. .order_by(PrintArchive.created_at.desc())
  2721. .limit(1)
  2722. )
  2723. if archive is not None:
  2724. _load_objects_from_archive(archive, printer_id, logger)
  2725. # Retry ladder for a fallback archive created while the printer's FTPS cool-off
  2726. # was running (#2957). The cool-off is 300s, so the first attempt is placed just
  2727. # past it; the second covers a handshake that failed again on the way back and
  2728. # armed a fresh one. Module-level so tests can shrink them.
  2729. _FALLBACK_3MF_RETRY_DELAYS_SECONDS: tuple[float, ...] = (310.0, 620.0)
  2730. # printer_id -> the in-flight retry task, so print completion can cancel it.
  2731. _fallback_3mf_retry_tasks: dict[int, asyncio.Task] = {}
  2732. # printer_id -> lock serialising recovery attempts for that printer. Three callers
  2733. # can reach one archive at once: the cover endpoint (whose single-flight coalesces
  2734. # by view, so two views race), the cool-off retry task, and print completion.
  2735. # Without this they each read file_path == "" and each run a full copy, so the row
  2736. # ends up pointing at one timestamped directory while the others sit orphaned.
  2737. #
  2738. # Keyed by printer rather than archive because a printer runs one print at a time,
  2739. # which makes the two equally strong here — and it bounds the dict by printer
  2740. # count instead of needing a cleanup pass. Popping a per-archive entry cannot be
  2741. # done safely: `Lock.locked()` reads False between release and the queued waiter
  2742. # resuming, so "no waiters" is not a question this API can answer.
  2743. _fallback_recovery_locks: dict[int, asyncio.Lock] = {}
  2744. async def _recover_fallback_archive(archive_id: int, source_3mf: Path, printer_id: int) -> bool:
  2745. """Fill in a no-3MF archive from a 3MF that turned up later.
  2746. Returns True when the row was upgraded. Safe to call speculatively: it
  2747. verifies the archive still exists, is still a fallback, and that the file
  2748. is a readable 3MF before touching anything.
  2749. Serialised per printer — see ``_fallback_recovery_locks``.
  2750. """
  2751. lock = _fallback_recovery_locks.setdefault(printer_id, asyncio.Lock())
  2752. async with lock:
  2753. return await _recover_fallback_archive_locked(archive_id, source_3mf, printer_id)
  2754. async def _recover_fallback_archive_locked(archive_id: int, source_3mf: Path, printer_id: int) -> bool:
  2755. """The body of :func:`_recover_fallback_archive`, under its per-printer lock."""
  2756. import zipfile
  2757. from backend.app.models.archive import PrintArchive
  2758. from backend.app.services.archive import ArchiveService
  2759. logger = logging.getLogger(__name__)
  2760. if not source_3mf.exists() or source_3mf.stat().st_size == 0:
  2761. return False
  2762. if not await asyncio.to_thread(zipfile.is_zipfile, source_3mf):
  2763. # A truncated or half-written download is worse than no download: it
  2764. # would replace an honest empty archive with wrong metadata.
  2765. logger.warning("[RECOVER] %s is not a readable 3MF; leaving archive %s as-is", source_3mf, archive_id)
  2766. return False
  2767. async with async_session() as db:
  2768. archive = (await db.execute(select(PrintArchive).where(PrintArchive.id == archive_id))).scalar_one_or_none()
  2769. if archive is None or archive.deleted_at is not None:
  2770. return False
  2771. if archive.file_path:
  2772. # Already recovered, or never was a fallback. Either way there is a
  2773. # real 3MF attached and overwriting it is not this function's job.
  2774. return False
  2775. print_data = (archive.extra_data or {}).get("_print_data") or {}
  2776. service = ArchiveService(db)
  2777. recovered = await service.archive_print(
  2778. printer_id=printer_id,
  2779. source_file=source_3mf,
  2780. print_data={**print_data, "status": archive.status or "printing"},
  2781. subtask_id=archive.subtask_id,
  2782. update_archive_id=archive.id,
  2783. )
  2784. if recovered is None:
  2785. return False
  2786. logger.info(
  2787. "[RECOVER] Archive %s filled in from %s (%s bytes) — it started as a no-3MF fallback",
  2788. archive_id,
  2789. source_3mf,
  2790. recovered.file_size,
  2791. )
  2792. # `archive_updated`, not `archive_created` — the row was already on the
  2793. # Archives page as an empty card and is now filled in, not new.
  2794. await ws_manager.send_archive_updated(
  2795. {
  2796. "id": recovered.id,
  2797. "printer_id": recovered.printer_id,
  2798. "filename": recovered.filename,
  2799. "print_name": recovered.print_name,
  2800. "status": recovered.status,
  2801. }
  2802. )
  2803. return True
  2804. async def try_recover_fallback_archive(printer_id: int, name: str, path: Path) -> bool:
  2805. """Offer a freshly-downloaded 3MF to this printer's running fallback archive.
  2806. Called from the paths that pull a 3MF for a print that is already under way
  2807. — chiefly the cover endpoint, which downloads the very file the archive flow
  2808. could not get and, before #2957, used it for a thumbnail and nothing else.
  2809. The bytes are already local, so this costs a parse and a row update.
  2810. No-op when the running print has a real archive, which is the common case.
  2811. """
  2812. from backend.app.models.archive import PrintArchive
  2813. logger = logging.getLogger(__name__)
  2814. # `_active_prints` is keyed on the raw names seen at print start — the
  2815. # dispatch filename, the subtask name, and the subtask name plus ".3mf".
  2816. # Callers here arrive with whichever variant their own path produced, so
  2817. # match on the same normalization the download cache uses rather than on an
  2818. # exact string; that is what makes "Desktop_Goose.gcode.3mf" from the cover
  2819. # endpoint find an archive registered under "Desktop_Goose".
  2820. wanted = normalize_3mf_name(name)
  2821. archive_id = None
  2822. for (key_printer_id, key_name), value in list(_active_prints.items()):
  2823. if key_printer_id == printer_id and normalize_3mf_name(key_name) == wanted:
  2824. archive_id = value
  2825. break
  2826. if archive_id is None:
  2827. return False
  2828. async with async_session() as db:
  2829. archive = (await db.execute(select(PrintArchive).where(PrintArchive.id == archive_id))).scalar_one_or_none()
  2830. # Cheap pre-check so the common case (a normal archive) does no work.
  2831. if archive is None or archive.file_path or archive.deleted_at is not None:
  2832. return False
  2833. try:
  2834. return await _recover_fallback_archive(archive_id, path, printer_id)
  2835. except Exception as e:
  2836. # Recovery is opportunistic. A failure here must never take down the
  2837. # caller, which is usually just trying to render a thumbnail.
  2838. logger.warning("[RECOVER] Could not fill in archive %s from %s: %s", archive_id, path, e)
  2839. return False
  2840. def _schedule_fallback_3mf_retry(printer_id: int, archive_id: int, filenames: list[str]) -> None:
  2841. """Re-attempt the 3MF download after the printer's FTPS cool-off clears."""
  2842. logger = logging.getLogger(__name__)
  2843. async def _retry() -> None:
  2844. from backend.app.models.archive import PrintArchive
  2845. from backend.app.models.printer import Printer
  2846. for delay in _FALLBACK_3MF_RETRY_DELAYS_SECONDS:
  2847. await asyncio.sleep(delay)
  2848. async with async_session() as db:
  2849. archive = (
  2850. await db.execute(select(PrintArchive).where(PrintArchive.id == archive_id))
  2851. ).scalar_one_or_none()
  2852. if archive is None or archive.deleted_at is not None or archive.file_path:
  2853. return
  2854. printer = (await db.execute(select(Printer).where(Printer.id == printer_id))).scalar_one_or_none()
  2855. if printer is None:
  2856. return
  2857. # Read the fields while the session is open rather than touching
  2858. # a detached instance minutes later, mid-download.
  2859. printer_ip = printer.ip_address
  2860. printer_code = printer.access_code
  2861. printer_model = printer.model
  2862. # Someone else may have fetched it in the meantime — the cover
  2863. # endpoint routinely does, and its copy is the same bytes.
  2864. for name in filenames:
  2865. cached = get_cached_3mf(printer_id, name)
  2866. if cached and await _recover_fallback_archive(archive_id, cached, printer_id):
  2867. return
  2868. if ftps_handshake_blocked(printer_ip):
  2869. logger.info(
  2870. "[RECOVER] Printer %s is still in its FTPS cool-off; archive %s retry deferred",
  2871. printer_id,
  2872. archive_id,
  2873. )
  2874. continue
  2875. _, _, _, ftp_timeout = await get_ftp_retry_settings()
  2876. for candidate in filenames:
  2877. # Bare name only. These come from the print-start flow, which
  2878. # already strips the path, but the local temp write must not
  2879. # depend on that holding for every future caller — a name that
  2880. # is absolute or contains ".." would otherwise escape the data
  2881. # volume via the `/` operator.
  2882. name = Path(candidate).name
  2883. if not name or name in (".", ".."):
  2884. continue
  2885. if not name.endswith(".3mf"):
  2886. name = f"{name}.3mf"
  2887. temp_path = app_settings.archive_dir / "temp" / name
  2888. temp_path.parent.mkdir(parents=True, exist_ok=True)
  2889. try:
  2890. hit = await download_file_try_paths_async(
  2891. printer_ip,
  2892. printer_code,
  2893. ftp_probe_paths(name),
  2894. temp_path,
  2895. socket_timeout=ftp_timeout,
  2896. printer_model=printer_model,
  2897. )
  2898. except Exception as e:
  2899. logger.debug("[RECOVER] Retry download of %s failed: %s", name, e)
  2900. continue
  2901. if not hit:
  2902. continue
  2903. cache_3mf_download(printer_id, name, temp_path)
  2904. if await _recover_fallback_archive(archive_id, temp_path, printer_id):
  2905. return
  2906. logger.info("[RECOVER] Archive %s still has no 3MF after a retry", archive_id)
  2907. async def _guarded() -> None:
  2908. try:
  2909. await _retry()
  2910. except asyncio.CancelledError:
  2911. raise
  2912. except Exception as e:
  2913. logger.warning("[RECOVER] Retry task for archive %s failed: %s", archive_id, e)
  2914. finally:
  2915. if _fallback_3mf_retry_tasks.get(printer_id) is asyncio.current_task():
  2916. _fallback_3mf_retry_tasks.pop(printer_id, None)
  2917. existing = _fallback_3mf_retry_tasks.pop(printer_id, None)
  2918. if existing and not existing.done():
  2919. existing.cancel()
  2920. task = asyncio.create_task(_guarded())
  2921. _fallback_3mf_retry_tasks[printer_id] = task
  2922. logger.info(
  2923. "[RECOVER] Archive %s has no 3MF because printer %s was in its FTPS cool-off; will retry",
  2924. archive_id,
  2925. printer_id,
  2926. )
  2927. async def on_print_start(printer_id: int, data: dict):
  2928. """Handle print start - archive the 3MF file immediately."""
  2929. logger = logging.getLogger(__name__)
  2930. logger.info("[CALLBACK] on_print_start called for printer %s, data keys: %s", printer_id, list(data.keys()))
  2931. # Clear any stale user-stopped flag from previous print cycles
  2932. _user_stopped_printers.discard(printer_id)
  2933. _kill_switch_notification_tasks.pop(printer_id, None)
  2934. # #1721: drop any leftover pre-captured finish frame from a prior print
  2935. # so a never-consumed cache entry can't bleed into the new print's photo.
  2936. _stage22_finish_frames.pop(printer_id, None)
  2937. # #1867: same for the in-print frame bank — a queued print must not reuse
  2938. # the previous job's banked frame.
  2939. _inprint_frame_bank.pop(printer_id, None)
  2940. _inprint_frame_bank_ts.pop(printer_id, None)
  2941. # #2547: bind (or clear) the "this print ends with injected End G-code" flag.
  2942. # Unconditional, so a print Bambuddy didn't dispatch drops the previous
  2943. # print's flag instead of inheriting it.
  2944. print_dispatch_context.adopt(printer_id)
  2945. # Cancel any active bed cooldown waiter for this printer
  2946. if _bed_cool_waiters.pop(printer_id, None):
  2947. logger.info("[BED-COOL] Cancelled bed cooldown waiter for printer %s (new print started)", printer_id)
  2948. # Clear cached cover images so the new print's thumbnail is fetched fresh
  2949. from backend.app.api.routes.printers import clear_cover_cache
  2950. clear_cover_cache(printer_id)
  2951. await ws_manager.send_print_start(printer_id, data)
  2952. # Notify when the print-start AMS mapping references tray slots without spool assignments.
  2953. await notify_missing_spool_assignments_on_print_start(printer_id, data, logger)
  2954. # MQTT relay - publish print start
  2955. try:
  2956. printer_info = printer_manager.get_printer(printer_id)
  2957. if printer_info:
  2958. await mqtt_relay.on_print_start(
  2959. printer_id,
  2960. printer_info.name,
  2961. printer_info.serial_number,
  2962. data.get("filename", ""),
  2963. data.get("subtask_name", ""),
  2964. )
  2965. except Exception:
  2966. pass # Don't fail print start callback if MQTT fails
  2967. # Capture AMS tray remain%, the assignment snapshot, the dispatched plate
  2968. # and mapping, and the seeded tray-change log.
  2969. #
  2970. # Unconditional, for both inventory backends. This only *captures* — the
  2971. # writing is still split, with the internal tracker skipped at completion
  2972. # when Spoolman owns usage. Spoolman's own durable row (#1820) already
  2973. # carries its plate-scoped 3MF figures and stored mapping, but not the
  2974. # tray-change log, and that log is the only record of which spool fed
  2975. # which layers when AMS Filament Backup swaps trays mid-print. Capturing
  2976. # it on one side only would leave Spoolman users with the mid-print
  2977. # restart bug this fixes for everyone else.
  2978. try:
  2979. async with async_session() as db:
  2980. from backend.app.api.routes.settings import get_setting
  2981. from backend.app.services.usage_tracker import on_print_start as usage_on_print_start
  2982. _spoolman_on = await get_setting(db, "spoolman_enabled")
  2983. await usage_on_print_start(
  2984. printer_id,
  2985. data,
  2986. printer_manager,
  2987. db=db,
  2988. spoolman_owns_usage=bool(_spoolman_on) and _spoolman_on.lower() == "true",
  2989. )
  2990. except Exception as e:
  2991. logger.warning("Usage tracker on_print_start failed: %s", e)
  2992. # Track if notification was sent (to avoid sending twice)
  2993. notification_sent = False
  2994. # Smart plug automation: turn on plug when print starts
  2995. try:
  2996. async with async_session() as db:
  2997. await smart_plug_manager.on_print_start(printer_id, db)
  2998. except Exception as e:
  2999. logger.warning("Smart plug on_print_start failed: %s", e)
  3000. async with async_session() as db:
  3001. from backend.app.models.printer import Printer
  3002. from backend.app.services.bambu_ftp import list_files_async
  3003. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  3004. printer = result.scalar_one_or_none()
  3005. # Plate detection check - pause if objects detected on build plate
  3006. logger.info(
  3007. f"[PLATE CHECK] printer_id={printer_id}, plate_detection_enabled={printer.plate_detection_enabled if printer else 'NO PRINTER'}"
  3008. )
  3009. if printer and printer.plate_detection_enabled:
  3010. logger.info("[PLATE CHECK] ENTERING plate detection code for printer %s", printer_id)
  3011. # Release the pooled DB connection before the plate-detection camera
  3012. # work (a 2.5s light-settle sleep + FTP/camera capture). Only the
  3013. # printer SELECT has run so far — nothing to persist — so this commit
  3014. # is a data-noop that ends the read transaction and returns the
  3015. # connection to the pool during the I/O (issue #2572). expire_on_commit
  3016. # =False keeps printer.* readable; on_plate_not_empty (rare) and the
  3017. # archive lookups below re-acquire a fresh connection on next execute.
  3018. await db.commit()
  3019. try:
  3020. from backend.app.services.plate_detection import check_plate_empty
  3021. # Build ROI tuple from printer settings if available
  3022. roi = None
  3023. if all(
  3024. [
  3025. printer.plate_detection_roi_x is not None,
  3026. printer.plate_detection_roi_y is not None,
  3027. printer.plate_detection_roi_w is not None,
  3028. printer.plate_detection_roi_h is not None,
  3029. ]
  3030. ):
  3031. roi = (
  3032. printer.plate_detection_roi_x,
  3033. printer.plate_detection_roi_y,
  3034. printer.plate_detection_roi_w,
  3035. printer.plate_detection_roi_h,
  3036. )
  3037. # Auto-turn on chamber light if it's off for better detection
  3038. light_was_off = False
  3039. client = printer_manager.get_client(printer_id)
  3040. if client and client.state:
  3041. light_was_off = not client.state.chamber_light
  3042. if light_was_off:
  3043. logger.info("[PLATE CHECK] Turning on chamber light for printer %s", printer_id)
  3044. client.set_chamber_light(True)
  3045. # Wait for light to physically turn on and camera to adjust exposure
  3046. await asyncio.sleep(2.5)
  3047. logger.info("[PLATE CHECK] Running plate detection for printer %s", printer_id)
  3048. plate_result = await check_plate_empty(
  3049. printer_id=printer_id,
  3050. ip_address=printer.ip_address,
  3051. access_code=printer.access_code,
  3052. model=printer.model,
  3053. include_debug_image=False,
  3054. external_camera_url=printer.external_camera_url,
  3055. external_camera_type=printer.external_camera_type,
  3056. use_external=printer.external_camera_enabled,
  3057. roi=roi,
  3058. external_camera_snapshot_url=printer.external_camera_snapshot_url,
  3059. )
  3060. # Restore chamber light to original state
  3061. if light_was_off and client:
  3062. logger.info("[PLATE CHECK] Restoring chamber light to off for printer %s", printer_id)
  3063. client.set_chamber_light(False)
  3064. if not plate_result.needs_calibration and not plate_result.is_empty:
  3065. # Objects detected - pause the print!
  3066. logger.warning(
  3067. f"[PLATE CHECK] Objects detected on plate for printer {printer_id}! "
  3068. f"Confidence: {plate_result.confidence:.0%}, Diff: {plate_result.difference_percent:.1f}%"
  3069. )
  3070. client = printer_manager.get_client(printer_id)
  3071. if client:
  3072. client.pause_print()
  3073. logger.info("[PLATE CHECK] Print paused for printer %s", printer_id)
  3074. # Send notification about plate not empty
  3075. await ws_manager.broadcast(
  3076. {
  3077. "type": "plate_not_empty",
  3078. "printer_id": printer_id,
  3079. "printer_name": printer.name,
  3080. "message": f"Objects detected on build plate! Print paused. (Diff: {plate_result.difference_percent:.1f}%)",
  3081. }
  3082. )
  3083. # Also send push notification
  3084. try:
  3085. await notification_service.on_plate_not_empty(
  3086. printer_id=printer_id,
  3087. printer_name=printer.name,
  3088. db=db,
  3089. difference_percent=plate_result.difference_percent,
  3090. )
  3091. except Exception as notif_err:
  3092. logger.warning("[PLATE CHECK] Failed to send notification: %s", notif_err)
  3093. else:
  3094. logger.info("[PLATE CHECK] Plate is empty for printer %s, proceeding with print", printer_id)
  3095. except Exception as plate_err:
  3096. # Don't block print on plate detection errors
  3097. logger.warning("[PLATE CHECK] Plate detection failed for printer %s: %s", printer_id, plate_err)
  3098. if not printer:
  3099. logger.info("[CALLBACK] Skipping archive - printer not found in database")
  3100. if not notification_sent:
  3101. await _send_print_start_notification(printer_id, data, logger=logger)
  3102. return
  3103. if not printer.auto_archive:
  3104. # auto-archive disabled — check if there's an expected print (dispatched
  3105. # by BamBuddy via queue/reprint) that already has an archive to promote.
  3106. # If so, fall through to the expected-print handling below so the archive
  3107. # is tracked in _active_prints and usage tracking works at completion.
  3108. _fn = data.get("filename", "")
  3109. _sn = data.get("subtask_name", "")
  3110. _check_keys: list[tuple[int, str]] = []
  3111. if _sn:
  3112. _check_keys += [
  3113. (printer_id, _sn),
  3114. (printer_id, f"{_sn}.3mf"),
  3115. (printer_id, f"{_sn}.gcode.3mf"),
  3116. ]
  3117. if _fn:
  3118. _base_fn = _fn.split("/")[-1] if "/" in _fn else _fn
  3119. _check_keys.append((printer_id, _base_fn))
  3120. _no_archive_base = _base_fn.replace(".gcode", "").replace(".3mf", "")
  3121. _check_keys += [
  3122. (printer_id, _no_archive_base),
  3123. (printer_id, f"{_no_archive_base}.3mf"),
  3124. ]
  3125. _has_expected = any(k in _expected_prints for k in _check_keys)
  3126. if not _has_expected:
  3127. # No expected print — truly external print (started from slicer/touchscreen)
  3128. logger.info("[CALLBACK] Skipping archive - auto_archive: False, no expected print")
  3129. if not notification_sent:
  3130. _no_archive_creator: int | None = None
  3131. for _key in _check_keys:
  3132. _expected_prints.pop(_key, None)
  3133. _expected_print_registered_at.pop(_key, None)
  3134. popped_creator = _expected_print_creators.pop(_key, None)
  3135. if _no_archive_creator is None:
  3136. _no_archive_creator = popped_creator
  3137. _creator_data = {"created_by_id": _no_archive_creator} if _no_archive_creator else None
  3138. await _send_print_start_notification(printer_id, data, _creator_data, logger)
  3139. return
  3140. else:
  3141. logger.info("[CALLBACK] auto_archive disabled but expected print found — promoting archive")
  3142. # Get the filename and subtask_name
  3143. filename = data.get("filename", "")
  3144. subtask_name = data.get("subtask_name", "")
  3145. # MQTT subtask_id uniquely identifies a print job on the printer. When
  3146. # present, it lets us match an archive across a backend restart (#972):
  3147. # same id → same print → resume the existing row instead of cancelling
  3148. # it and recreating from scratch (which loses started_at). Treat "0"
  3149. # and "" as absent — Bambu reports "0" for non-cloud / local prints.
  3150. raw_mqtt = data.get("raw_data") or {}
  3151. subtask_id = raw_mqtt.get("subtask_id")
  3152. if subtask_id is not None:
  3153. subtask_id = str(subtask_id).strip()
  3154. if subtask_id in ("", "0"):
  3155. subtask_id = None
  3156. logger.info("[CALLBACK] Print start detected - filename: %s, subtask: %s", filename, subtask_name)
  3157. # Skip the printer's own jobs — a calibration run is not a user's print.
  3158. # See is_internal_printer_job for what counts and why both fields are
  3159. # tested; the pressure-advance line reports as a subtask name with no
  3160. # /usr/ path, which the old prefix-only test here missed entirely.
  3161. #
  3162. # No notification either. The event describes the printer calibrating
  3163. # itself, so "Print started" is as wrong as the archive was, and the
  3164. # matching completion is suppressed in on_print_complete for the same
  3165. # reason.
  3166. if is_internal_printer_job(filename, subtask_name):
  3167. logger.info(
  3168. "[CALLBACK] Skipping archive — internal printer job detected: filename=%s, subtask=%s",
  3169. filename,
  3170. subtask_name,
  3171. )
  3172. return
  3173. if not filename and not subtask_name:
  3174. # Send notification without archive data (no filename)
  3175. logger.info("[CALLBACK] Skipping archive - no filename or subtask_name")
  3176. if not notification_sent:
  3177. await _send_print_start_notification(printer_id, data, logger=logger)
  3178. return
  3179. # Check if this is an expected print from reprint/scheduled
  3180. # Build list of possible keys to check
  3181. expected_keys = []
  3182. if subtask_name:
  3183. expected_keys.append((printer_id, subtask_name))
  3184. expected_keys.append((printer_id, f"{subtask_name}.3mf"))
  3185. expected_keys.append((printer_id, f"{subtask_name}.gcode.3mf"))
  3186. if filename:
  3187. fname = filename.split("/")[-1] if "/" in filename else filename
  3188. expected_keys.append((printer_id, fname))
  3189. # Strip extensions to match
  3190. base = fname.replace(".gcode", "").replace(".3mf", "")
  3191. expected_keys.append((printer_id, base))
  3192. expected_keys.append((printer_id, f"{base}.3mf"))
  3193. expected_archive_id = None
  3194. for key in expected_keys:
  3195. expected_archive_id = _expected_prints.pop(key, None)
  3196. _expected_print_registered_at.pop(key, None)
  3197. if expected_archive_id:
  3198. # Clean up other possible keys for this print
  3199. for other_key in expected_keys:
  3200. _expected_prints.pop(other_key, None)
  3201. _expected_print_registered_at.pop(other_key, None)
  3202. break
  3203. if expected_archive_id:
  3204. # This is a reprint/scheduled print - use existing archive, don't create new one
  3205. logger.info("Using expected archive %s for print (skipping duplicate)", expected_archive_id)
  3206. from backend.app.models.archive import PrintArchive
  3207. result = await db.execute(select(PrintArchive).where(PrintArchive.id == expected_archive_id))
  3208. archive = result.scalar_one_or_none()
  3209. if archive:
  3210. # Update archive status to printing
  3211. archive.status = "printing"
  3212. archive.started_at = datetime.now(timezone.utc)
  3213. # Reprint of an archive reuses the source row. Without resetting
  3214. # ``timelapse_path`` _scan_for_timelapse_with_retries early-returns
  3215. # ("already has timelapse") and _capture_finish_photo_from_timelapse
  3216. # extracts the *original* print's last frame, which then ships in
  3217. # the completion notification (#1707). Clear the path so the
  3218. # scanner runs fresh; also unlink the old video file so reprints
  3219. # don't accumulate orphans in the archive directory. Photos list
  3220. # is left alone — accumulating one finish photo per run is fine.
  3221. # The print-start baseline (#2704) is stale for the same reason:
  3222. # it describes the printer before the previous run. The capture
  3223. # below overwrites it, but clear it here too so an early failure
  3224. # can't leave the scan diffing against the wrong snapshot.
  3225. archive.timelapse_baseline = None
  3226. stale_timelapse_relpath = archive.timelapse_path
  3227. if stale_timelapse_relpath:
  3228. archive.timelapse_path = None
  3229. try:
  3230. stale_path = app_settings.base_dir / stale_timelapse_relpath
  3231. if stale_path.is_file():
  3232. stale_path.unlink()
  3233. logger.info(
  3234. "Deleted stale timelapse %s on reprint of archive %s",
  3235. stale_timelapse_relpath,
  3236. expected_archive_id,
  3237. )
  3238. except OSError as e:
  3239. logger.warning(
  3240. "Failed to delete stale timelapse %s on reprint: %s",
  3241. stale_timelapse_relpath,
  3242. e,
  3243. )
  3244. # Persist a restart-stable id so a later restart resumes this
  3245. # archive by subtask_id instead of name-matching + duplicating
  3246. # it (#1485). The printer often hasn't echoed subtask_id back
  3247. # this soon after dispatch, so fall back to the id Bambuddy
  3248. # minted when it sent the print command. Scoped to this
  3249. # expected-print branch on purpose: an expected match means
  3250. # Bambuddy dispatched this exact print in this process, so the
  3251. # client's last-dispatch id genuinely belongs to it — using it
  3252. # for an externally-started print could mis-tag the archive.
  3253. effective_subtask_id = subtask_id
  3254. if not effective_subtask_id:
  3255. _client = printer_manager.get_client(printer_id)
  3256. _dispatched = getattr(_client, "last_dispatch_subtask_id", None) if _client else None
  3257. if _dispatched:
  3258. effective_subtask_id = str(_dispatched).strip() or None
  3259. # Update on first-set OR on reprint (the queue dispatcher mints
  3260. # a fresh subtask_id per dispatch in bambu_mqtt:3647). Skipping
  3261. # the rewrite for reprints leaves the archive holding the FIRST
  3262. # run's id; if MQTT then reconnects mid-print, the reconciler
  3263. # (#1542) compares the stale stored id against the printer's
  3264. # live id, sees a mismatch, and synthesises a bogus PRINT
  3265. # COMPLETE — exactly the false-positive "Print Stopped" reported
  3266. # in #1807. Inequality check preserves the noop-on-stable-push
  3267. # behaviour the earlier `not archive.subtask_id` guard provided.
  3268. if effective_subtask_id and archive.subtask_id != effective_subtask_id:
  3269. archive.subtask_id = effective_subtask_id
  3270. # #1403 follow-up: VP-queue archives are created with
  3271. # printer_id=None at queue-add time (we don't know which
  3272. # printer will run the job yet). When the print actually
  3273. # starts on a specific printer the expected-archive lookup
  3274. # used to skip this assignment, leaving printer_id=None
  3275. # forever — which then disables the "Scan for timelapse"
  3276. # button in ArchivesPage (gated on !archive.printer_id).
  3277. if archive.printer_id != printer_id:
  3278. archive.printer_id = printer_id
  3279. await db.commit()
  3280. # Track as active print
  3281. _active_prints[(printer_id, archive.filename)] = archive.id
  3282. if subtask_name:
  3283. _active_prints[(printer_id, f"{subtask_name}.3mf")] = archive.id
  3284. # Start timelapse session if external camera is enabled (#1353).
  3285. # Queue / VP-dispatched prints land here in the expected-archive
  3286. # branch and used to skip start_session entirely — frames were
  3287. # never captured and the post-print stitch silently returned None.
  3288. _maybe_start_layer_timelapse(printer, printer_id, archive.id)
  3289. # Inject ams_mapping into usage tracker session — the session was created
  3290. # before expected-print promotion, so it may have ams_mapping=None when
  3291. # the MQTT request topic subscription failed (common on P1S/A1).
  3292. _stored_map = _print_ams_mappings.get(expected_archive_id)
  3293. _stored_plate_id = _print_plate_ids.get(expected_archive_id)
  3294. if _stored_map or _stored_plate_id is not None:
  3295. try:
  3296. from backend.app.services.usage_tracker import _active_sessions
  3297. _ut_session = _active_sessions.get(printer_id)
  3298. if _ut_session and _stored_map and not _ut_session.ams_mapping:
  3299. _ut_session.ams_mapping = _stored_map
  3300. logger.info("[CALLBACK] Injected ams_mapping into usage tracker session: %s", _stored_map)
  3301. # plate_id injection covers direct-Print of plate N of a multi-plate
  3302. # 3MF — queue prints already capture it via the on_print_start queue
  3303. # lookup, but direct-Print never goes through the queue (#1697).
  3304. if _ut_session and _stored_plate_id is not None and _ut_session.plate_id is None:
  3305. _ut_session.plate_id = _stored_plate_id
  3306. logger.info("[CALLBACK] Injected plate_id into usage tracker session: %s", _stored_plate_id)
  3307. except Exception:
  3308. pass
  3309. # Set up energy tracking (#941: persist start on archive row)
  3310. await _record_energy_start(archive, printer_id, db, context="expected-print")
  3311. await ws_manager.send_archive_updated(
  3312. {
  3313. "id": archive.id,
  3314. "status": "printing",
  3315. }
  3316. )
  3317. # Send notification with archive data (reprint/scheduled)
  3318. if not notification_sent:
  3319. # Use archive's created_by_id; fall back to the creator registered via
  3320. # register_expected_print (handles library-file-based queue items where
  3321. # the freshly-created archive has no created_by_id yet).
  3322. # Pop ALL matching keys so no stale entries remain in the dict.
  3323. fallback_creator = None
  3324. for key in expected_keys:
  3325. popped = _expected_print_creators.pop(key, None)
  3326. if fallback_creator is None:
  3327. fallback_creator = popped
  3328. archive_data = {
  3329. "print_time_seconds": archive.print_time_seconds,
  3330. "created_by_id": archive.created_by_id or fallback_creator,
  3331. }
  3332. await _send_print_start_notification(printer_id, data, archive_data, logger)
  3333. # Extract printable objects from the archived 3MF file
  3334. _load_objects_from_archive(archive, printer_id, logger)
  3335. # Store Spoolman tracking data for per-filament usage reporting
  3336. try:
  3337. await _store_spoolman_print_data(
  3338. printer_id,
  3339. archive.id,
  3340. archive.file_path,
  3341. db,
  3342. printer_manager,
  3343. ams_mapping=_get_start_ams_mapping(data, archive.id),
  3344. plate_id=_get_start_plate_id(archive.id),
  3345. )
  3346. except Exception as e:
  3347. logger.warning("[SPOOLMAN] Failed to store tracking data: %s", e)
  3348. # Capture timelapse file baseline for snapshot-diff on completion
  3349. # (mirrors the new-archive branch). Queue / VP-dispatched prints
  3350. # hit this branch — without the baseline the completion-time scan
  3351. # falls into its "take baseline now" fallback, which snapshots
  3352. # AFTER the new MP4 already exists and never matches a diff
  3353. # (#1403 follow-up — see pwostran's 2026-05-18 support bundle).
  3354. await _capture_timelapse_baseline_at_start(printer, printer_id, logger, archive_id=archive.id)
  3355. return # Skip creating a new archive
  3356. # Check if there's already a "printing" archive for this printer/file
  3357. # This prevents duplicates when backend restarts during an active print
  3358. from backend.app.models.archive import PrintArchive
  3359. existing_archive: PrintArchive | None = None
  3360. # Preferred match: subtask_id equality. MQTT reports the same subtask_id
  3361. # across a backend restart for the same print, so this is the most
  3362. # reliable way to reattach. We also accept a previously stale-cancelled
  3363. # archive here so users upgrading mid-print get revived when the row
  3364. # their earlier Bambuddy version wrongly cancelled reappears (#972).
  3365. if subtask_id:
  3366. by_id = await db.execute(
  3367. select(PrintArchive)
  3368. .where(PrintArchive.printer_id == printer_id)
  3369. .where(PrintArchive.subtask_id == subtask_id)
  3370. .where(PrintArchive.status.in_(["printing", "cancelled"]))
  3371. .order_by(PrintArchive.created_at.desc())
  3372. .limit(1)
  3373. )
  3374. candidate = by_id.scalar_one_or_none()
  3375. if candidate and (candidate.status == "printing" or (candidate.failure_reason or "").startswith("Stale")):
  3376. existing_archive = candidate
  3377. # Fallback match: name-based lookup. Kept as-is for prints whose
  3378. # subtask_id is missing ("0" / local / non-cloud prints).
  3379. if existing_archive is None:
  3380. check_name = subtask_name or filename.split("/")[-1].replace(".gcode", "").replace(".3mf", "")
  3381. existing = await db.execute(
  3382. select(PrintArchive)
  3383. .where(PrintArchive.printer_id == printer_id)
  3384. .where(PrintArchive.status == "printing")
  3385. .where(
  3386. or_(
  3387. PrintArchive.print_name == check_name,
  3388. PrintArchive.filename.in_(
  3389. [
  3390. f"{check_name}.3mf",
  3391. f"{check_name}.gcode.3mf",
  3392. ]
  3393. ),
  3394. )
  3395. )
  3396. .order_by(PrintArchive.created_at.desc())
  3397. .limit(1)
  3398. )
  3399. existing_archive = existing.scalar_one_or_none()
  3400. if existing_archive:
  3401. # subtask_id match → always resume, regardless of age. Same print,
  3402. # just a backend restart. Revive if it was previously stale-cancelled.
  3403. subtask_match = bool(subtask_id and existing_archive.subtask_id == subtask_id)
  3404. if subtask_match:
  3405. if existing_archive.status == "cancelled":
  3406. logger.warning(
  3407. "Reviving stale-cancelled archive %s — matching subtask_id %s confirms same print (#972)",
  3408. existing_archive.id,
  3409. subtask_id,
  3410. )
  3411. existing_archive.status = "printing"
  3412. existing_archive.failure_reason = None
  3413. await db.commit()
  3414. else:
  3415. logger.info("Resuming archive %s on subtask_id match (%s)", existing_archive.id, subtask_id)
  3416. _active_prints[(printer_id, existing_archive.filename)] = existing_archive.id
  3417. if existing_archive.energy_start_kwh is None:
  3418. await _record_energy_start(existing_archive, printer_id, db, context="subtask-resume")
  3419. if not notification_sent:
  3420. archive_data = {
  3421. "print_time_seconds": existing_archive.print_time_seconds,
  3422. "created_by_id": existing_archive.created_by_id,
  3423. }
  3424. await _send_print_start_notification(printer_id, data, archive_data, logger)
  3425. _load_objects_from_archive(existing_archive, printer_id, logger)
  3426. return
  3427. # Name-match only (no subtask_id to anchor on): decide resume vs.
  3428. # stale from the printer's *current* progress, not wall-clock age.
  3429. # A genuinely long print used to trip a blind 4h cutoff and have its
  3430. # live archive cancelled + duplicated on every backend restart
  3431. # (#1485). If the printer reports real progress, this name-matched
  3432. # 'printing' archive IS that ongoing print — resume it whatever its
  3433. # age. Only treat it as a stale leftover when the printer clearly
  3434. # shows a different, freshly-started print: near-0% progress on an
  3435. # archive far too old to still be at 0%. Unknown progress (printer
  3436. # not connected) never cancels — resuming is the safe default.
  3437. archive_age = datetime.now(timezone.utc) - existing_archive.created_at.replace(tzinfo=timezone.utc)
  3438. live_status = printer_manager.get_status(printer_id)
  3439. live_progress = getattr(live_status, "progress", None) if live_status else None
  3440. looks_stale = (
  3441. live_progress is not None and live_progress < 1.0 and archive_age.total_seconds() > 2 * 60 * 60
  3442. )
  3443. if looks_stale:
  3444. logger.warning(
  3445. f"Found stale 'printing' archive {existing_archive.id} (age: {archive_age}, "
  3446. f"printer progress {live_progress:.0f}%) — marking cancelled and creating new archive"
  3447. )
  3448. existing_archive.status = "cancelled"
  3449. existing_archive.failure_reason = "Stale - print likely cancelled or failed without status update"
  3450. await db.commit()
  3451. # Fall through to create new archive (don't return)
  3452. else:
  3453. logger.info(
  3454. f"Skipping duplicate - already have printing archive {existing_archive.id} for {check_name}"
  3455. )
  3456. # Track this as the active print
  3457. _active_prints[(printer_id, existing_archive.filename)] = existing_archive.id
  3458. # Attach subtask_id retroactively so future restarts can resume.
  3459. # Compare for inequality (not "is empty") to also pick up reprint
  3460. # dispatches that mint a fresh id — see #1807 for the bogus
  3461. # "Print Stopped" the strict-empty guard caused on reconnect.
  3462. if subtask_id and existing_archive.subtask_id != subtask_id:
  3463. existing_archive.subtask_id = subtask_id
  3464. await db.commit()
  3465. # Also set up energy tracking if not already tracked (#941: persisted column)
  3466. if existing_archive.energy_start_kwh is None:
  3467. await _record_energy_start(existing_archive, printer_id, db, context="existing-printing")
  3468. # Send notification with archive data (existing archive)
  3469. if not notification_sent:
  3470. archive_data = {
  3471. "print_time_seconds": existing_archive.print_time_seconds,
  3472. "created_by_id": existing_archive.created_by_id,
  3473. }
  3474. await _send_print_start_notification(printer_id, data, archive_data, logger)
  3475. # Extract printable objects from the archived 3MF file
  3476. _load_objects_from_archive(existing_archive, printer_id, logger)
  3477. return
  3478. # Build list of possible 3MF filenames to try
  3479. possible_names = []
  3480. # Bambu printers typically store files as "Name.gcode.3mf"
  3481. # The subtask_name is usually the best source for the filename
  3482. if subtask_name:
  3483. # Try common Bambu naming patterns
  3484. possible_names.append(f"{subtask_name}.gcode.3mf")
  3485. possible_names.append(f"{subtask_name}.3mf")
  3486. # Try original filename with .3mf extension
  3487. if filename:
  3488. # Extract just the filename part, not the full path
  3489. fname = filename.split("/")[-1] if "/" in filename else filename
  3490. if fname.endswith(".3mf"):
  3491. possible_names.append(fname)
  3492. elif fname.endswith(".gcode"):
  3493. base = fname.rsplit(".", 1)[0]
  3494. possible_names.append(f"{base}.gcode.3mf")
  3495. possible_names.append(f"{base}.3mf")
  3496. else:
  3497. possible_names.append(f"{fname}.gcode.3mf")
  3498. possible_names.append(f"{fname}.3mf")
  3499. # Also try with spaces converted to underscores (Bambu Studio may normalize filenames)
  3500. space_variants = []
  3501. for name in possible_names:
  3502. if " " in name:
  3503. space_variants.append(name.replace(" ", "_"))
  3504. possible_names.extend(space_variants)
  3505. # Remove duplicates while preserving order
  3506. seen = set()
  3507. possible_names = [x for x in possible_names if not (x in seen or seen.add(x))]
  3508. logger.info("Trying filenames: %s", possible_names)
  3509. # Release the pooled DB connection before the 3MF FTP download. Reaching
  3510. # here means none of the expected-/existing-archive write branches ran
  3511. # (they all return earlier) — only SELECTs have executed on this path, so
  3512. # this commit persists nothing; it ends the read transaction so the
  3513. # connection returns to the pool during the download. That download tries
  3514. # up to five remote paths per candidate filename with retry/backoff and
  3515. # can run for minutes under FTP contention; holding the session across it
  3516. # pinned one pooled connection idle-in-transaction (issue #2572). No DB
  3517. # work runs during the download — the new-archive writes below re-acquire
  3518. # a fresh connection, and expire_on_commit=False keeps printer.* readable.
  3519. await db.commit()
  3520. # Try to find and download the 3MF file
  3521. temp_path = None
  3522. downloaded_filename = None
  3523. # Cache check: cover endpoint may have already pulled this 3MF during
  3524. # the print (frontend opens the card and shows the thumbnail) — reuse
  3525. # that file instead of re-downloading 36MB over the same FTP link that
  3526. # just served it (#972). The cache keys on a normalized filename so
  3527. # variants like "X", "X.3mf", "X.gcode.3mf" all collapse to one entry.
  3528. for try_filename in possible_names:
  3529. if not try_filename.endswith(".3mf"):
  3530. continue
  3531. cached = get_cached_3mf(printer_id, try_filename)
  3532. if cached:
  3533. logger.info("Reusing cached 3MF from %s (avoided duplicate FTP)", cached)
  3534. temp_path = cached
  3535. downloaded_filename = try_filename
  3536. break
  3537. # Does this printer keep the sliced file somewhere FTPS can reach? On
  3538. # H2-series and P2S the answer is routinely no — the file stays on
  3539. # internal eMMC and port 990 only ever serves external storage — and
  3540. # then the whole sweep below (six filenames x five directories x four
  3541. # retries, then the directory walk) is ~110 connections that cannot
  3542. # succeed. Skip it and say why (#2780).
  3543. storage = print_file_reachable_over_ftp(printer_manager.get_status(printer_id))
  3544. # Set when a lookup is abandoned because the printer's FTPS cool-off is
  3545. # running rather than because the file is somewhere unreachable. The
  3546. # distinction is the whole of #2957: one is permanent, the other clears
  3547. # in minutes with the file still sitting on the printer.
  3548. blocked_by_ftps_cooloff = False
  3549. # Get FTP retry settings
  3550. ftp_retry_enabled, ftp_retry_count, ftp_retry_delay, ftp_timeout = await get_ftp_retry_settings()
  3551. # ...but "the printer put it on eMMC" is where it went, not whether we
  3552. # can read it. An H2D with a card in mirrors the job to /cache and
  3553. # serves it happily, and skipping on the URL alone cost that reporter
  3554. # every archive for two days (#2856). So ask the printer instead of
  3555. # guessing: the dispatch named the exact file, which is one connection
  3556. # walking five paths rather than the sweep's ~110. Only when the probe
  3557. # comes back empty does the verdict's reason stand.
  3558. if not storage.reachable and not downloaded_filename and storage.probe_filename:
  3559. if ftps_handshake_blocked(printer.ip_address):
  3560. # Deliberately NOT recorded as a cool-off give-up. This branch
  3561. # only runs on an unreachable verdict, and that verdict is the
  3562. # honest, permanent reason the archive is empty — the probe was
  3563. # a long shot on top of it. Blaming the cool-off here would
  3564. # schedule a retry for a file sitting on internal eMMC, which is
  3565. # the sweep #2780 removed (#2957).
  3566. logger.debug(
  3567. "Not probing for %s on printer %s: its file service is not answering over TLS",
  3568. storage.probe_filename,
  3569. printer_id,
  3570. )
  3571. else:
  3572. probe_path = app_settings.archive_dir / "temp" / storage.probe_filename
  3573. probe_path.parent.mkdir(parents=True, exist_ok=True)
  3574. try:
  3575. probe_hit = await download_file_try_paths_async(
  3576. printer.ip_address,
  3577. printer.access_code,
  3578. ftp_probe_paths(storage.probe_filename),
  3579. probe_path,
  3580. socket_timeout=ftp_timeout,
  3581. printer_model=printer.model,
  3582. )
  3583. except Exception as e:
  3584. logger.debug("3MF probe for %s failed: %s", storage.probe_filename, e)
  3585. probe_hit = False
  3586. if probe_hit:
  3587. downloaded_filename = storage.probe_filename
  3588. temp_path = probe_path
  3589. cache_3mf_download(printer_id, downloaded_filename, probe_path)
  3590. # Naming the path, not just the file: a printer that keeps
  3591. # uploads around for weeks can serve a same-named copy of an
  3592. # earlier slice, and without the directory in the log that
  3593. # mismatch is invisible rather than merely rare (#1820).
  3594. logger.info(
  3595. "Found %s at %s over FTPS for printer %s even though the printer reported %s",
  3596. downloaded_filename,
  3597. probe_hit,
  3598. printer_id,
  3599. storage.reason,
  3600. )
  3601. if not storage.reachable and not downloaded_filename:
  3602. # Same opening words whether or not a probe ran, because that is
  3603. # the phrase support asks people to grep for — only the tail says
  3604. # which of the two happened.
  3605. logger.info(
  3606. "Skipping the 3MF lookup for printer %s: %s — %s",
  3607. printer_id,
  3608. storage.reason,
  3609. "no copy of it on external storage either"
  3610. if storage.probe_filename
  3611. else "the print file is not on storage Bambuddy can read over FTPS, so no path would find it",
  3612. )
  3613. for try_filename in possible_names if not downloaded_filename and storage.reachable else []:
  3614. if not try_filename.endswith(".3mf"):
  3615. continue
  3616. # Root (/) is where BambuStudio/OrcaSlicer uploads land on A1/P1-series
  3617. # printers, so try it first — deferring it to last cost #972's reporter
  3618. # ~48 minutes of retries on /cache//model//data//data/Metadata before
  3619. # landing on the path that actually had the file.
  3620. remote_paths = [
  3621. f"/{try_filename}",
  3622. f"/cache/{try_filename}",
  3623. f"/model/{try_filename}",
  3624. f"/data/{try_filename}",
  3625. f"/data/Metadata/{try_filename}",
  3626. ]
  3627. temp_path = app_settings.archive_dir / "temp" / try_filename
  3628. temp_path.parent.mkdir(parents=True, exist_ok=True)
  3629. for remote_path in remote_paths:
  3630. if ftps_handshake_blocked(printer.ip_address):
  3631. # The printer's FTPS service is not completing a TLS
  3632. # handshake, so it has no path we could reach — walking the
  3633. # remaining candidates only re-runs the same failure
  3634. # (#2780). Fall through to the no-3MF archive now.
  3635. #
  3636. # Remember *why*, though. This is the one give-up that is
  3637. # temporary: the cool-off clears in minutes and the file was
  3638. # on the printer the whole time. The fallback archive is
  3639. # stamped with it so a retry can be scheduled, and so the
  3640. # Archives banner stops blaming storage (#2957).
  3641. blocked_by_ftps_cooloff = True
  3642. logger.warning(
  3643. "Giving up on the 3MF for printer %s: its file service is not answering over TLS",
  3644. printer_id,
  3645. )
  3646. break
  3647. logger.debug("Trying FTP download: %s", remote_path)
  3648. try:
  3649. if ftp_retry_enabled:
  3650. downloaded = await with_ftp_retry(
  3651. download_file_async,
  3652. printer.ip_address,
  3653. printer.access_code,
  3654. remote_path,
  3655. temp_path,
  3656. timeout=ftp_timeout,
  3657. socket_timeout=ftp_timeout,
  3658. printer_model=printer.model,
  3659. max_retries=ftp_retry_count,
  3660. retry_delay=ftp_retry_delay,
  3661. operation_name=f"Download 3MF from {remote_path}",
  3662. cooloff_ip=printer.ip_address,
  3663. non_retry_exceptions=(FileNotOnPrinterError,),
  3664. )
  3665. else:
  3666. downloaded = await download_file_async(
  3667. printer.ip_address,
  3668. printer.access_code,
  3669. remote_path,
  3670. temp_path,
  3671. timeout=ftp_timeout,
  3672. socket_timeout=ftp_timeout,
  3673. printer_model=printer.model,
  3674. )
  3675. if downloaded:
  3676. downloaded_filename = try_filename
  3677. logger.info("Downloaded: %s", remote_path)
  3678. # Populate shared cache so the cover endpoint (if it
  3679. # runs next) doesn't refetch the same 36MB over FTP.
  3680. cache_3mf_download(printer_id, try_filename, temp_path)
  3681. break
  3682. except FileNotOnPrinterError:
  3683. # 550 — file isn't at this path. Advance to next candidate
  3684. # without burning the retry budget.
  3685. logger.debug("3MF not at %s (550), trying next path", remote_path)
  3686. except Exception as e:
  3687. logger.debug("FTP download failed for %s: %s", remote_path, e)
  3688. if downloaded_filename or ftps_handshake_blocked(printer.ip_address):
  3689. break
  3690. # If still not found, try listing directories to find matching file
  3691. # Different printer models use different directory structures. Skipped
  3692. # when the printer's FTPS handshake is failing — the directory walk is
  3693. # five more connections that cannot get further than the download did.
  3694. if (
  3695. not downloaded_filename
  3696. and storage.reachable
  3697. and (filename or subtask_name)
  3698. and not ftps_handshake_blocked(printer.ip_address)
  3699. ):
  3700. search_term = (subtask_name or filename).lower().replace(".gcode", "").replace(".3mf", "")
  3701. logger.info("Direct FTP download failed, searching directories for '%s'", search_term)
  3702. search_dirs = ["/cache", "/model", "/data", "/data/Metadata", "/"]
  3703. for search_dir in search_dirs:
  3704. if downloaded_filename:
  3705. break
  3706. try:
  3707. dir_files = await list_files_async(
  3708. printer.ip_address, printer.access_code, search_dir, printer_model=printer.model
  3709. )
  3710. threemf_files = [f.get("name") for f in dir_files if f.get("name", "").endswith(".3mf")]
  3711. if threemf_files:
  3712. logger.info(
  3713. f"Found {len(threemf_files)} 3MF files in {search_dir}: {threemf_files[:5]}{'...' if len(threemf_files) > 5 else ''}"
  3714. )
  3715. for f in dir_files:
  3716. if f.get("is_directory"):
  3717. continue
  3718. fname = f.get("name", "")
  3719. # Normalize both for comparison (spaces and underscores are equivalent)
  3720. fname_normalized = fname.lower().replace(" ", "_")
  3721. search_normalized = search_term.replace(" ", "_")
  3722. if fname.endswith(".3mf") and search_normalized in fname_normalized:
  3723. logger.info("Found matching file in %s: %s", search_dir, fname)
  3724. temp_path = app_settings.archive_dir / "temp" / fname
  3725. temp_path.parent.mkdir(parents=True, exist_ok=True)
  3726. remote_full_path = posixpath.join(search_dir, fname)
  3727. if ftp_retry_enabled:
  3728. downloaded = await with_ftp_retry(
  3729. download_file_async,
  3730. printer.ip_address,
  3731. printer.access_code,
  3732. remote_full_path,
  3733. temp_path,
  3734. timeout=ftp_timeout,
  3735. socket_timeout=ftp_timeout,
  3736. printer_model=printer.model,
  3737. max_retries=ftp_retry_count,
  3738. retry_delay=ftp_retry_delay,
  3739. operation_name=f"Download 3MF from {remote_full_path}",
  3740. cooloff_ip=printer.ip_address,
  3741. )
  3742. else:
  3743. downloaded = await download_file_async(
  3744. printer.ip_address,
  3745. printer.access_code,
  3746. remote_full_path,
  3747. temp_path,
  3748. timeout=ftp_timeout,
  3749. socket_timeout=ftp_timeout,
  3750. printer_model=printer.model,
  3751. )
  3752. if downloaded:
  3753. downloaded_filename = fname
  3754. logger.info("Found and downloaded from %s: %s", search_dir, fname)
  3755. cache_3mf_download(printer_id, fname, temp_path)
  3756. break
  3757. except Exception as e:
  3758. logger.debug("Failed to list %s: %s", search_dir, e)
  3759. # Validate the downloaded 3MF actually matches the plate that's running
  3760. # (#1204): subtask_name lags across consecutive plates of the same model,
  3761. # so the first FTP candidate (built from subtask_name) can land on the
  3762. # previous plate's still-resident upload. Cross-check the slice_info
  3763. # plate index against the plate parsed from gcode_file (always fresh —
  3764. # it's the field whose change triggered this callback).
  3765. if downloaded_filename and temp_path:
  3766. expected_plate = parse_plate_id(filename)
  3767. actual_plate = peek_plate_index_in_3mf(temp_path) if expected_plate is not None else None
  3768. if expected_plate is not None and actual_plate is not None and actual_plate != expected_plate:
  3769. logger.warning(
  3770. "[CALLBACK] 3MF plate mismatch: downloaded %s reports plate %s but printer is "
  3771. "running plate %s — subtask_name=%r appears stale, retrying with corrected name",
  3772. downloaded_filename,
  3773. actual_plate,
  3774. expected_plate,
  3775. subtask_name,
  3776. )
  3777. corrected_subtask = swap_plate_suffix(subtask_name, expected_plate)
  3778. retry_succeeded = False
  3779. if corrected_subtask and corrected_subtask != subtask_name:
  3780. for try_filename in (f"{corrected_subtask}.gcode.3mf", f"{corrected_subtask}.3mf"):
  3781. retry_temp_path = app_settings.archive_dir / "temp" / try_filename
  3782. retry_temp_path.parent.mkdir(parents=True, exist_ok=True)
  3783. for remote_path in (
  3784. f"/{try_filename}",
  3785. f"/cache/{try_filename}",
  3786. f"/model/{try_filename}",
  3787. f"/data/{try_filename}",
  3788. f"/data/Metadata/{try_filename}",
  3789. ):
  3790. try:
  3791. if ftp_retry_enabled:
  3792. downloaded = await with_ftp_retry(
  3793. download_file_async,
  3794. printer.ip_address,
  3795. printer.access_code,
  3796. remote_path,
  3797. retry_temp_path,
  3798. timeout=ftp_timeout,
  3799. socket_timeout=ftp_timeout,
  3800. printer_model=printer.model,
  3801. max_retries=ftp_retry_count,
  3802. retry_delay=ftp_retry_delay,
  3803. operation_name=f"Re-download 3MF from {remote_path}",
  3804. cooloff_ip=printer.ip_address,
  3805. non_retry_exceptions=(FileNotOnPrinterError,),
  3806. )
  3807. else:
  3808. downloaded = await download_file_async(
  3809. printer.ip_address,
  3810. printer.access_code,
  3811. remote_path,
  3812. retry_temp_path,
  3813. timeout=ftp_timeout,
  3814. socket_timeout=ftp_timeout,
  3815. printer_model=printer.model,
  3816. )
  3817. if downloaded and peek_plate_index_in_3mf(retry_temp_path) == expected_plate:
  3818. logger.info(
  3819. "[CALLBACK] Re-download succeeded with corrected name %s "
  3820. "(plate %s) — replacing wrong file",
  3821. try_filename,
  3822. expected_plate,
  3823. )
  3824. try:
  3825. temp_path.unlink(missing_ok=True)
  3826. except OSError:
  3827. pass
  3828. temp_path = retry_temp_path
  3829. downloaded_filename = try_filename
  3830. subtask_name = corrected_subtask
  3831. cache_3mf_download(printer_id, try_filename, temp_path)
  3832. retry_succeeded = True
  3833. break
  3834. elif downloaded:
  3835. # Wrong plate again — discard and keep trying
  3836. try:
  3837. retry_temp_path.unlink(missing_ok=True)
  3838. except OSError:
  3839. pass
  3840. except FileNotOnPrinterError:
  3841. continue
  3842. except Exception as e:
  3843. logger.debug("Re-download failed for %s: %s", remote_path, e)
  3844. if retry_succeeded:
  3845. break
  3846. # If the retry didn't find a matching file, drop the wrong 3MF
  3847. # so the no-3MF fallback below creates an archive whose name
  3848. # at least reflects the right plate.
  3849. if not retry_succeeded:
  3850. logger.warning(
  3851. "[CALLBACK] Could not re-download correct plate %s — falling back to no-3MF archive",
  3852. expected_plate,
  3853. )
  3854. try:
  3855. temp_path.unlink(missing_ok=True)
  3856. except OSError:
  3857. pass
  3858. temp_path = None
  3859. downloaded_filename = None
  3860. # Override the stale subtask_name so the fallback archive's
  3861. # print_name reflects the correct plate. Prefer the swapped
  3862. # name when we have one; otherwise let filename win.
  3863. if corrected_subtask:
  3864. subtask_name = corrected_subtask
  3865. else:
  3866. subtask_name = ""
  3867. if not downloaded_filename or not temp_path:
  3868. logger.warning("Could not find 3MF file for print: %s", filename or subtask_name)
  3869. # Create a fallback archive without 3MF data so the print is still tracked
  3870. # This commonly happens with P1S/A1 printers where FTP has file size limitations
  3871. try:
  3872. from backend.app.models.archive import PrintArchive
  3873. # Derive print name from subtask_name or filename
  3874. print_name = subtask_name or filename
  3875. if print_name:
  3876. # Clean up the name (remove extensions, path parts)
  3877. print_name = print_name.split("/")[-1]
  3878. print_name = print_name.replace(".gcode.3mf", "").replace(".gcode", "").replace(".3mf", "")
  3879. else:
  3880. print_name = "Unknown Print"
  3881. # Recover estimated print time from MQTT (best-effort for notifications)
  3882. fallback_print_time = None
  3883. mqtt_remaining = data.get("remaining_time")
  3884. if mqtt_remaining and isinstance(mqtt_remaining, (int, float)) and mqtt_remaining > 0:
  3885. fallback_print_time = int(mqtt_remaining)
  3886. if fallback_print_time is None:
  3887. mc_remaining = (data.get("raw_data") or {}).get("mc_remaining_time")
  3888. if mc_remaining and isinstance(mc_remaining, (int, float)) and mc_remaining > 0:
  3889. fallback_print_time = int(mc_remaining * 60)
  3890. # Best-effort filament metadata from MQTT — see
  3891. # _extract_filament_data_from_mqtt. Without this the fallback
  3892. # archive's filament fields stayed NULL even though the AMS
  3893. # state at print start was sitting right there in `data`.
  3894. # The slicer's ams_mapping (when present) narrows the result
  3895. # to slots actually used by the print (#1533).
  3896. mqtt_filament_meta = _extract_filament_data_from_mqtt(data, _get_start_ams_mapping(data, None))
  3897. # Create minimal archive entry
  3898. fallback_archive = PrintArchive(
  3899. printer_id=printer_id,
  3900. filename=filename or f"{print_name}.3mf",
  3901. file_path="", # Empty - no 3MF file available
  3902. file_size=0,
  3903. print_name=print_name,
  3904. print_time_seconds=fallback_print_time,
  3905. status="printing",
  3906. started_at=datetime.now(timezone.utc),
  3907. subtask_id=subtask_id,
  3908. filament_type=mqtt_filament_meta.get("filament_type"),
  3909. filament_color=mqtt_filament_meta.get("filament_color"),
  3910. extra_data={
  3911. "no_3mf_available": True,
  3912. # Why the card is empty, when we know. The banner reads
  3913. # this to stop telling H2/P2 owners to switch on a
  3914. # setting that is already on and would not help (#2780).
  3915. # A cool-off outranks the storage verdict: the sweep was
  3916. # skipped at the transport, so the verdict never got to
  3917. # be tested, and reporting it would blame the SD card
  3918. # for a TLS handshake (#2957).
  3919. "no_3mf_reason": REASON_FTPS_COOLOFF if blocked_by_ftps_cooloff else storage.reason,
  3920. "original_subtask": subtask_name,
  3921. "_print_data": data,
  3922. },
  3923. )
  3924. db.add(fallback_archive)
  3925. await db.commit()
  3926. await db.refresh(fallback_archive)
  3927. logger.info("Created fallback archive %s for %s (no 3MF available)", fallback_archive.id, print_name)
  3928. _maybe_start_layer_timelapse(printer, printer_id, fallback_archive.id)
  3929. # Track as active print
  3930. _active_prints[(printer_id, fallback_archive.filename)] = fallback_archive.id
  3931. if filename:
  3932. _active_prints[(printer_id, filename)] = fallback_archive.id
  3933. if subtask_name:
  3934. _active_prints[(printer_id, f"{subtask_name}.3mf")] = fallback_archive.id
  3935. _active_prints[(printer_id, subtask_name)] = fallback_archive.id
  3936. # Record starting energy if smart plug available (#941: persisted column)
  3937. await _record_energy_start(fallback_archive, printer_id, db, context="fallback")
  3938. # Send WebSocket notification
  3939. await ws_manager.send_archive_created(
  3940. {
  3941. "id": fallback_archive.id,
  3942. "printer_id": fallback_archive.printer_id,
  3943. "filename": fallback_archive.filename,
  3944. "print_name": fallback_archive.print_name,
  3945. "status": fallback_archive.status,
  3946. }
  3947. )
  3948. # MQTT relay - publish archive created
  3949. try:
  3950. await mqtt_relay.on_archive_created(
  3951. archive_id=fallback_archive.id,
  3952. print_name=fallback_archive.print_name,
  3953. printer_name=printer.name,
  3954. status=fallback_archive.status,
  3955. )
  3956. except Exception:
  3957. pass # Don't fail if MQTT fails
  3958. # Store Spoolman tracking data (may not work for fallback since no 3MF)
  3959. try:
  3960. await _store_spoolman_print_data(
  3961. printer_id,
  3962. fallback_archive.id,
  3963. fallback_archive.file_path,
  3964. db,
  3965. printer_manager,
  3966. ams_mapping=_get_start_ams_mapping(data, fallback_archive.id),
  3967. plate_id=_get_start_plate_id(fallback_archive.id),
  3968. )
  3969. except Exception as e:
  3970. logger.debug("[SPOOLMAN] Could not store tracking for fallback archive: %s", e)
  3971. # A cool-off give-up is temporary and the file is on the
  3972. # printer — come back for it once the handshake block clears
  3973. # (#2957). Deliberately not scheduled for a storage verdict:
  3974. # a file on internal eMMC will not appear at any FTPS path
  3975. # however long we wait, and retrying it is exactly the sweep
  3976. # #2780 removed.
  3977. if blocked_by_ftps_cooloff and possible_names:
  3978. # `possible_names`, not the raw MQTT strings: it is the exact
  3979. # list this flow just tried, already stripped of any path
  3980. # (`filename` arrives as "/data/Metadata/plate_1.gcode" on
  3981. # some firmware) and deduped.
  3982. _schedule_fallback_3mf_retry(
  3983. printer_id=printer_id,
  3984. archive_id=fallback_archive.id,
  3985. filenames=list(possible_names),
  3986. )
  3987. # Send notification without archive data (file not found)
  3988. if not notification_sent:
  3989. await _send_print_start_notification(printer_id, data, logger=logger)
  3990. # The same baseline the other two on_print_start branches take
  3991. # (#2704), and last for the same reason they are: it lists the
  3992. # printer's timelapse directory, so a slow card must not delay
  3993. # the _active_prints registration, the energy reading, the
  3994. # archive-created event or the start notification above it.
  3995. #
  3996. # This branch never took one, so every no-3MF archive reached
  3997. # completion with no baseline in memory and none on the row, and
  3998. # the completion scan fell into its "snapshot now" fallback --
  3999. # which runs after the printer has written the video, so the new
  4000. # file landed inside the baseline and no diff ever matched
  4001. # (#2957 follow-up).
  4002. #
  4003. # Skipped when the FTPS cool-off is what produced this fallback:
  4004. # the listing needs the same connection that just failed, so it
  4005. # could only record that the card was unreadable. The scan
  4006. # handles that case by refusing to choose between candidates.
  4007. if not blocked_by_ftps_cooloff:
  4008. await _capture_timelapse_baseline_at_start(
  4009. printer, printer_id, logger, archive_id=fallback_archive.id
  4010. )
  4011. return
  4012. except Exception as e:
  4013. logger.error("Failed to create fallback archive: %s", e)
  4014. # Send notification without archive data (file not found)
  4015. if not notification_sent:
  4016. await _send_print_start_notification(printer_id, data, logger=logger)
  4017. return
  4018. try:
  4019. # Archive the file with status "printing"
  4020. service = ArchiveService(db)
  4021. archive = await service.archive_print(
  4022. printer_id=printer_id,
  4023. source_file=temp_path,
  4024. print_data={**data, "status": "printing"},
  4025. subtask_id=subtask_id,
  4026. )
  4027. if archive:
  4028. # Track this active print (use both original filename and downloaded filename)
  4029. _active_prints[(printer_id, downloaded_filename)] = archive.id
  4030. if filename and filename != downloaded_filename:
  4031. _active_prints[(printer_id, filename)] = archive.id
  4032. if subtask_name:
  4033. _active_prints[(printer_id, f"{subtask_name}.3mf")] = archive.id
  4034. logger.info("Created archive %s for %s", archive.id, downloaded_filename)
  4035. _maybe_start_layer_timelapse(printer, printer_id, archive.id)
  4036. # Record starting energy from smart plug if available (#941: persisted column)
  4037. await _record_energy_start(archive, printer_id, db, context="auto-archive")
  4038. await ws_manager.send_archive_created(
  4039. {
  4040. "id": archive.id,
  4041. "printer_id": archive.printer_id,
  4042. "filename": archive.filename,
  4043. "print_name": archive.print_name,
  4044. "status": archive.status,
  4045. }
  4046. )
  4047. # MQTT relay - publish archive created
  4048. try:
  4049. await mqtt_relay.on_archive_created(
  4050. archive_id=archive.id,
  4051. print_name=archive.print_name,
  4052. printer_name=printer.name,
  4053. status=archive.status,
  4054. )
  4055. except Exception:
  4056. pass # Don't fail if MQTT fails
  4057. # Send notification with archive data (new archive created)
  4058. if not notification_sent:
  4059. archive_data = {
  4060. "print_time_seconds": archive.print_time_seconds,
  4061. "created_by_id": archive.created_by_id,
  4062. }
  4063. await _send_print_start_notification(printer_id, data, archive_data, logger)
  4064. # Extract printable objects for skip object functionality
  4065. try:
  4066. from backend.app.services.archive import extract_printable_objects_from_3mf
  4067. client = printer_manager.get_client(printer_id)
  4068. if client:
  4069. with open(temp_path, "rb") as f:
  4070. threemf_data = f.read()
  4071. # Extract with positions for UI overlay, scoped to the
  4072. # plate that is printing — an all-plates 3MF carries
  4073. # every plate's objects (#2522).
  4074. printable_objects, bbox_all = extract_printable_objects_from_3mf(
  4075. threemf_data,
  4076. plate_number=resolve_plate_id(client.state),
  4077. include_positions=True,
  4078. )
  4079. if printable_objects:
  4080. # Store objects in printer state
  4081. client.state.printable_objects = printable_objects
  4082. client.state.printable_objects_bbox_all = bbox_all
  4083. client.state.skipped_objects = [] # Reset skipped objects for new print
  4084. logger.info(
  4085. "Loaded %s printable objects for printer %s", len(printable_objects), printer_id
  4086. )
  4087. except Exception as e:
  4088. logger.debug("Failed to extract printable objects: %s", e)
  4089. # Store Spoolman tracking data for per-filament usage reporting
  4090. try:
  4091. await _store_spoolman_print_data(
  4092. printer_id,
  4093. archive.id,
  4094. archive.file_path,
  4095. db,
  4096. printer_manager,
  4097. ams_mapping=_get_start_ams_mapping(data, archive.id),
  4098. plate_id=_get_start_plate_id(archive.id),
  4099. )
  4100. except Exception as e:
  4101. logger.warning("[SPOOLMAN] Failed to store tracking data: %s", e)
  4102. # Capture timelapse file baseline for snapshot-diff on completion
  4103. await _capture_timelapse_baseline_at_start(printer, printer_id, logger, archive_id=archive.id)
  4104. finally:
  4105. # Keep temp_path around until print completes so the cover endpoint
  4106. # can reuse it (#972). Cache eviction in on_print_complete deletes
  4107. # the file. If the cache entry was evicted early (file vanished),
  4108. # clean up any stragglers here to avoid leaking disk on retries.
  4109. cached_now = get_cached_3mf(printer_id, downloaded_filename) if downloaded_filename else None
  4110. if temp_path and temp_path.exists() and cached_now != temp_path:
  4111. temp_path.unlink()
  4112. _TIMELAPSE_VIDEO_EXTENSIONS = (".mp4", ".avi")
  4113. # Poll schedule for the post-print timelapse scan (#2704). Module-level so
  4114. # tests can shrink them without waiting out real delays.
  4115. #
  4116. # This replaced a fixed [5, 10, 20, 30] retry ladder, i.e. roughly 65 s of
  4117. # looking. Across 247 support bundles the attempt that found the video was #1
  4118. # 272 times, then 17 / 13 / 13 — a flat tail against the cutoff rather than a
  4119. # decaying one, which is the signature of a budget that expires while files are
  4120. # still arriving. 457 scans were scheduled and only 262 ever attached. Big
  4121. # prints make big videos and the printer writes them after the print ends, so
  4122. # the poll now runs for minutes and costs one FTP LIST per round.
  4123. _TIMELAPSE_SCAN_FIRST_DELAY_SECONDS: float = 5.0
  4124. _TIMELAPSE_SCAN_POLL_INTERVAL_SECONDS: float = 30.0
  4125. _TIMELAPSE_SCAN_TIMEOUT_SECONDS: float = 900.0
  4126. def _timelapse_scan_max_attempts() -> int:
  4127. """Round cap for the poll, derived from the wall-clock budget.
  4128. The deadline alone is not a sufficient bound: it assumes each round really
  4129. waits, which stops being true the moment ``asyncio.sleep`` is patched out,
  4130. and an FTP list that fails immediately would otherwise spin against the
  4131. printer at full speed for the whole window. Whichever bound is reached
  4132. first ends the poll.
  4133. """
  4134. if _TIMELAPSE_SCAN_POLL_INTERVAL_SECONDS <= 0:
  4135. # A zero interval makes the wall-clock budget meaningless; fall back to
  4136. # the round count the production interval would have given.
  4137. return 32
  4138. return max(1, int(_TIMELAPSE_SCAN_TIMEOUT_SECONDS // _TIMELAPSE_SCAN_POLL_INTERVAL_SECONDS) + 1)
  4139. async def _claimed_timelapse_names(db, printer_id: int, exclude_archive_id: int) -> set[str]:
  4140. """Video filenames already attached to some other archive of this printer.
  4141. Used to disambiguate when more than one file is new since the baseline —
  4142. which happens when a previous print's video landed after this print's
  4143. baseline was taken. Ordering the candidates would be the obvious fix and is
  4144. the wrong one: it can only be done on mtime or on the filename timestamp,
  4145. both of which come from the printer's own clock, and a LAN-only printer
  4146. can't reach Bambu's NTP server. Exclusion needs no clock at all.
  4147. ``attach_timelapse`` saves the video into the archive directory under the
  4148. printer's original filename, and the later MP4 conversion keeps the stem,
  4149. so the stem of ``timelapse_path`` recovers what was claimed.
  4150. """
  4151. from backend.app.models.archive import PrintArchive
  4152. rows = await db.execute(
  4153. select(PrintArchive.timelapse_path).where(
  4154. PrintArchive.printer_id == printer_id,
  4155. PrintArchive.id != exclude_archive_id,
  4156. PrintArchive.timelapse_path.is_not(None),
  4157. )
  4158. )
  4159. return {Path(p).stem for p in rows.scalars().all() if p}
  4160. def _timelapse_listing_is_trustworthy(printer) -> bool:
  4161. """Whether an *empty* timelapse listing for *printer* can be believed.
  4162. ``list_files_async`` answers ``[]`` when its connect fails rather than
  4163. raising, so a card behind the FTPS handshake cool-off is indistinguishable
  4164. from one holding no videos. Everywhere that only wants to know "is there a
  4165. video yet" the difference does not matter — both mean "not yet, retry".
  4166. It matters where an empty listing is recorded as a *baseline*. Recording
  4167. "the card held nothing" for a card that was never read means every video on
  4168. it counts as new once the cool-off expires, and the completion scan then
  4169. attaches a stale video to this print and deletes it from the printer
  4170. (#2957 follow-up). Those two callers ask this first.
  4171. """
  4172. from backend.app.services.bambu_ftp import ftps_handshake_blocked
  4173. ip_address = getattr(printer, "ip_address", None)
  4174. if not ip_address:
  4175. return True
  4176. return not ftps_handshake_blocked(ip_address)
  4177. async def _list_timelapse_videos(printer) -> tuple[list[dict], str | None]:
  4178. """List video files from printer's timelapse directory.
  4179. Finds MP4 (X1/A1 series) and AVI (P1 series) timelapse files.
  4180. Returns (video_files, found_path) where video_files is a list of file dicts
  4181. and found_path is the directory where they were found, or ([], None).
  4182. An empty return does not distinguish "no videos" from "could not read the
  4183. card" — see :func:`_timelapse_listing_is_trustworthy`, which the two
  4184. baseline callers consult before believing one.
  4185. """
  4186. from backend.app.services.bambu_ftp import list_files_async
  4187. logger = logging.getLogger(__name__)
  4188. # No card in the slot means no /timelapse to walk — four connections that
  4189. # can only fail, on a path whose failures are swallowed and so would go on
  4190. # costing time silently forever (#2780).
  4191. #
  4192. # ``getattr`` rather than ``printer.id``: every dereference below happens
  4193. # inside the loop's own try/except, so a caller that passed something
  4194. # unexpected used to get an empty listing rather than an exception. Keep
  4195. # that, instead of making this gate the first thing that can raise here.
  4196. printer_id = getattr(printer, "id", None)
  4197. if printer_id is not None and not external_storage_present(printer_manager.get_status(printer_id)):
  4198. logger.debug("[TIMELAPSE] Skipping the scan for printer %s: it reports no external storage", printer_id)
  4199. return [], None
  4200. for timelapse_path in ["/timelapse", "/timelapse/video", "/record", "/recording"]:
  4201. try:
  4202. found_files = await list_files_async(
  4203. printer.ip_address, printer.access_code, timelapse_path, printer_model=printer.model
  4204. )
  4205. if found_files:
  4206. video_files = [
  4207. f
  4208. for f in found_files
  4209. if not f.get("is_directory") and f.get("name", "").lower().endswith(_TIMELAPSE_VIDEO_EXTENSIONS)
  4210. ]
  4211. if video_files:
  4212. return video_files, timelapse_path
  4213. except Exception as e:
  4214. logger.debug("[TIMELAPSE] Path %s failed: %s", timelapse_path, e)
  4215. continue
  4216. return [], None
  4217. async def _capture_timelapse_baseline_at_start(
  4218. printer, printer_id: int, logger: logging.Logger, archive_id: int | None = None
  4219. ) -> None:
  4220. """Snapshot the printer's timelapse directory at print start so the
  4221. completion-time scan can pick the new file by set-difference.
  4222. Must be called from every on_print_start path that proceeds to a real
  4223. print — both the new-archive branch and the expected-archive branch (which
  4224. queue / VP-dispatched prints take). Without a baseline,
  4225. _scan_for_timelapse_with_retries falls into its "take baseline now"
  4226. fallback that runs AFTER the new MP4 has already landed on the SD card,
  4227. so the new file ends up in the "baseline" set and no diff ever matches.
  4228. Bambu printers in LAN-only mode don't sync NTP, so mtime ordering is
  4229. unreliable — the snapshot-diff approach sidesteps that entirely.
  4230. When ``archive_id`` is known the baseline is also written to the archive
  4231. row, so it survives a restart and the manual "Scan for Timelapse" button
  4232. can run the same diff instead of falling back to clock-based matching
  4233. (#2704). Only baselines taken at print start are persisted — one taken at
  4234. completion already contains the new video and would poison a later scan.
  4235. """
  4236. names: set[str] | None = None
  4237. try:
  4238. if not _timelapse_listing_is_trustworthy(printer):
  4239. # Recorded anyway, deliberately. An empty baseline taken off a card
  4240. # we could not read is not authoritative, but it is still the right
  4241. # *default*: Bambuddy deletes each video from the printer once it is
  4242. # attached, so the usual card holds exactly one video at completion
  4243. # and an empty baseline resolves it correctly. Persisting NULL
  4244. # instead would send completion to take its own snapshot, by which
  4245. # point this print's video is on the card and would be swallowed by
  4246. # it. The ambiguity is handled where it actually bites — see
  4247. # ``require_unambiguous`` in the scan (#2957 follow-up).
  4248. logger.warning(
  4249. "[TIMELAPSE] Baseline for printer %s taken while its file service is in the FTPS "
  4250. "handshake cool-off, so the card could not be read — treating it as empty",
  4251. printer_id,
  4252. )
  4253. baseline_files, _ = await _list_timelapse_videos(printer)
  4254. names = {f.get("name", "") for f in baseline_files}
  4255. _timelapse_baselines[printer_id] = names
  4256. logger.info(
  4257. "[TIMELAPSE] Baseline at print start: %s video files for printer %s",
  4258. len(names),
  4259. printer_id,
  4260. )
  4261. except Exception as e:
  4262. logger.warning("[TIMELAPSE] Failed to capture baseline at print start: %s", e)
  4263. if archive_id is None:
  4264. return
  4265. try:
  4266. async with async_session() as db:
  4267. from backend.app.models.archive import PrintArchive
  4268. archive = await db.get(PrintArchive, archive_id)
  4269. if archive is not None:
  4270. # Written even when the listing failed, and then as NULL. A
  4271. # reprint reuses the archive row, so leaving the previous run's
  4272. # baseline in place would have the scan diff this print against
  4273. # the state of the printer before the *last* one — and a stale
  4274. # baseline reads as authoritative, where NULL correctly falls
  4275. # back to a fresh snapshot.
  4276. archive.timelapse_baseline = sorted(names) if names is not None else None
  4277. await db.commit()
  4278. except Exception as e:
  4279. # In-memory baseline still covers the normal completion path.
  4280. logger.warning("[TIMELAPSE] Failed to persist baseline for archive %s: %s", archive_id, e)
  4281. async def _scan_for_timelapse_with_retries(archive_id: int, baseline_names: set[str] | None = None):
  4282. """Poll the printer for this print's timelapse and attach it.
  4283. Snapshot diff, not timestamp matching: a printer in LAN-only mode cannot
  4284. reach Bambu's NTP server, so the clock behind both the filename and the FTP
  4285. mtime is arbitrarily wrong — one reporter's P1S was six and a half days out
  4286. (#2704). Comparing the current listing against the set of filenames that
  4287. existed when the print started needs no clock at all, because the printer
  4288. writes the video only once the print has ended.
  4289. Baseline precedence: the caller's in-memory set, then the one persisted on
  4290. the archive at print start, then a snapshot taken now. The last of those is
  4291. a poor substitute — by completion the new video may already be on the card,
  4292. in which case it lands in the "baseline" and no diff can ever match — but it
  4293. is all that is available for a print that began before Bambuddy started.
  4294. On success the video is deleted from the printer, which keeps ``/timelapse``
  4295. down to the unclaimed files and makes the next diff unambiguous.
  4296. """
  4297. logger = logging.getLogger(__name__)
  4298. # Cleared when the baseline had to be taken off a card we could not read, so
  4299. # the attach step refuses to choose between several candidates (#2957).
  4300. baseline_trusted = True
  4301. # --- Phase 1: establish the baseline -------------------------------------
  4302. try:
  4303. async with async_session() as db:
  4304. from backend.app.models.printer import Printer
  4305. service = ArchiveService(db)
  4306. archive = await service.get_archive(archive_id)
  4307. if not archive:
  4308. logger.warning("[TIMELAPSE] Archive %s not found, aborting", archive_id)
  4309. return
  4310. if archive.timelapse_path:
  4311. logger.info("[TIMELAPSE] Archive %s already has timelapse attached", archive_id)
  4312. return
  4313. if not archive.printer_id:
  4314. logger.warning("[TIMELAPSE] Archive %s has no printer, aborting", archive_id)
  4315. return
  4316. if baseline_names is not None:
  4317. logger.info(
  4318. "[TIMELAPSE] Using print-start baseline: %s existing video files for archive %s",
  4319. len(baseline_names),
  4320. archive_id,
  4321. )
  4322. elif archive.timelapse_baseline is not None:
  4323. # Persisted at print start — survives a restart mid-print.
  4324. baseline_names = set(archive.timelapse_baseline)
  4325. logger.info(
  4326. "[TIMELAPSE] Using stored baseline: %s existing video files for archive %s",
  4327. len(baseline_names),
  4328. archive_id,
  4329. )
  4330. else:
  4331. result = await db.execute(select(Printer).where(Printer.id == archive.printer_id))
  4332. printer = result.scalar_one_or_none()
  4333. if not printer:
  4334. logger.warning("[TIMELAPSE] Printer not found for archive %s, aborting", archive_id)
  4335. return
  4336. if not _timelapse_listing_is_trustworthy(printer):
  4337. # The card is unreadable at the one moment a baseline has to
  4338. # be taken, so the empty listing below means "we never
  4339. # looked", not "these are all new". Carry on with it anyway
  4340. # — the usual card holds exactly one video, which resolves
  4341. # correctly — but stop the poll from *choosing* between
  4342. # several, which is how a stale video got attached to this
  4343. # print and then deleted off the printer (#2957 follow-up).
  4344. baseline_trusted = False
  4345. logger.warning(
  4346. "[TIMELAPSE] Baseline for archive %s taken while printer %s is in the FTPS "
  4347. "handshake cool-off. A single new video still resolves; several will not be "
  4348. "guessed between — use Scan for Timelapse to pick one by hand",
  4349. archive_id,
  4350. archive.printer_id,
  4351. )
  4352. baseline_files, _ = await _list_timelapse_videos(printer)
  4353. baseline_names = {f.get("name", "") for f in baseline_files}
  4354. logger.info(
  4355. "[TIMELAPSE] Baseline snapshot (fallback): %s existing video files for archive %s",
  4356. len(baseline_names),
  4357. archive_id,
  4358. )
  4359. except Exception as e:
  4360. logger.warning("[TIMELAPSE] Failed to take baseline snapshot for archive %s: %s", archive_id, e)
  4361. return
  4362. # --- Phase 2: poll for a file that was not there when the print began -----
  4363. deadline = time.monotonic() + _TIMELAPSE_SCAN_TIMEOUT_SECONDS
  4364. max_attempts = _timelapse_scan_max_attempts()
  4365. seen_names: set[str] = set()
  4366. delay = _TIMELAPSE_SCAN_FIRST_DELAY_SECONDS
  4367. attempt = 0
  4368. while True:
  4369. await asyncio.sleep(delay)
  4370. delay = _TIMELAPSE_SCAN_POLL_INTERVAL_SECONDS
  4371. attempt += 1
  4372. try:
  4373. from backend.app.models.printer import Printer
  4374. # Read phase: fetch archive + printer in a short session and release
  4375. # the pooled connection BEFORE the FTP list/download below. Holding it
  4376. # across the FTP round-trips left one connection idle-in-transaction per
  4377. # in-flight scan (issue #2572).
  4378. async with async_session() as db:
  4379. service = ArchiveService(db)
  4380. archive = await service.get_archive(archive_id)
  4381. if not archive:
  4382. logger.warning("[TIMELAPSE] Archive %s not found, stopping poll", archive_id)
  4383. return
  4384. if archive.timelapse_path:
  4385. logger.info("[TIMELAPSE] Archive %s already has timelapse attached, stopping poll", archive_id)
  4386. return
  4387. result = await db.execute(select(Printer).where(Printer.id == archive.printer_id))
  4388. printer = result.scalar_one_or_none()
  4389. if not printer:
  4390. logger.warning("[TIMELAPSE] Printer not found for archive %s, stopping poll", archive_id)
  4391. return
  4392. claimed = await _claimed_timelapse_names(db, archive.printer_id, archive_id)
  4393. # I/O phase (no DB connection held): FTP list + download.
  4394. video_files, found_path = await _list_timelapse_videos(printer)
  4395. # The poll can run for dozens of rounds, so only narrate a round
  4396. # that saw something change. Repeating the whole listing every 30 s
  4397. # would bury the one interesting line in the support bundle.
  4398. names_now = {f.get("name", "") for f in video_files}
  4399. changed = attempt == 1 or names_now != seen_names
  4400. seen_names = names_now
  4401. speak = logger.info if changed else logger.debug
  4402. if video_files:
  4403. speak("[TIMELAPSE] Attempt %s: Found %s video files in %s", attempt, len(video_files), found_path)
  4404. if changed:
  4405. for f in video_files[:5]:
  4406. logger.info("[TIMELAPSE] - %s", f.get("name"))
  4407. attached = await _attach_first_unclaimed_timelapse(
  4408. archive_id,
  4409. printer,
  4410. video_files,
  4411. baseline_names,
  4412. claimed,
  4413. attempt,
  4414. logger,
  4415. quiet=not changed,
  4416. require_unambiguous=not baseline_trusted,
  4417. )
  4418. if attached:
  4419. return
  4420. else:
  4421. speak("[TIMELAPSE] Attempt %s: No video files found, will retry", attempt)
  4422. except Exception as e:
  4423. logger.warning("[TIMELAPSE] Attempt %s failed with error: %s", attempt, e)
  4424. if attempt >= max_attempts or time.monotonic() >= deadline:
  4425. break
  4426. # No name-match fallback: it compared the print name against the filename,
  4427. # and Bambu firmware only ever writes "video_<timestamp>". Across 247 support
  4428. # bundles it fired 159 times and matched zero times, so all it added was a
  4429. # misleading log line before giving up.
  4430. logger.warning(
  4431. "[TIMELAPSE] No new video appeared for archive %s within %ss, giving up",
  4432. archive_id,
  4433. int(_TIMELAPSE_SCAN_TIMEOUT_SECONDS),
  4434. )
  4435. async def _attach_first_unclaimed_timelapse(
  4436. archive_id: int,
  4437. printer,
  4438. video_files: list[dict],
  4439. baseline_names: set[str],
  4440. claimed: set[str],
  4441. attempt: int,
  4442. logger: logging.Logger,
  4443. *,
  4444. quiet: bool = False,
  4445. require_unambiguous: bool = False,
  4446. ) -> bool:
  4447. """Download and attach the one video that belongs to this print.
  4448. A candidate is any file absent from the print-start baseline. More than one
  4449. can qualify when a previous print's video landed late, after this print's
  4450. baseline was taken — those are filtered out by name, because they are
  4451. already attached to another archive. Sorting the candidates instead would
  4452. mean sorting on mtime or on the filename timestamp, both of which come from
  4453. the printer's unsynced clock.
  4454. Returns True once a video is attached. The printer's copy is deleted only
  4455. after the attach succeeds on bytes whose length matched the listing.
  4456. ``quiet`` downgrades the "nothing yet" lines to DEBUG when the caller has
  4457. already seen this exact listing — the poll runs for many rounds and only the
  4458. rounds where something changed are worth an INFO line.
  4459. """
  4460. from backend.app.services.bambu_ftp import (
  4461. delete_archived_timelapse,
  4462. download_file_bytes_async,
  4463. remote_file_settled,
  4464. )
  4465. speak = logger.debug if quiet else logger.info
  4466. new_files = [f for f in video_files if f.get("name", "") not in baseline_names]
  4467. if not new_files:
  4468. speak("[TIMELAPSE] Attempt %s: No new files since baseline, will retry", attempt)
  4469. return False
  4470. candidates = [f for f in new_files if Path(f.get("name", "")).stem not in claimed]
  4471. if not candidates:
  4472. speak(
  4473. "[TIMELAPSE] Attempt %s: %s new file(s), all already attached to other archives, will retry",
  4474. attempt,
  4475. len(new_files),
  4476. )
  4477. return False
  4478. if len(candidates) > 1:
  4479. if require_unambiguous:
  4480. # The baseline is not evidence -- it was taken off a card that could
  4481. # not be read -- so "new since the baseline" does not narrow these
  4482. # down at all. Taking the first would attach an arbitrary video to
  4483. # this print and then delete it from the printer.
  4484. logger.warning(
  4485. "[TIMELAPSE] Attempt %s: %s unclaimed videos (%s) and no baseline to tell them apart — "
  4486. "leaving all of them on the printer for manual selection",
  4487. attempt,
  4488. len(candidates),
  4489. ", ".join(str(f.get("name")) for f in candidates),
  4490. )
  4491. return False
  4492. logger.warning(
  4493. "[TIMELAPSE] Attempt %s: %s unclaimed new files (%s) — taking the first; "
  4494. "the rest stay on the printer for manual selection",
  4495. attempt,
  4496. len(candidates),
  4497. ", ".join(str(f.get("name")) for f in candidates),
  4498. )
  4499. target = candidates[0]
  4500. file_name = target.get("name")
  4501. remote_path = target.get("path") or f"/timelapse/{file_name}"
  4502. logger.info(
  4503. "[TIMELAPSE] Attempt %s: New file detected: %s (downloading for archive %s)",
  4504. attempt,
  4505. file_name,
  4506. archive_id,
  4507. )
  4508. # The listing always carries a size (`list_files` skips entries it can't
  4509. # parse), but read it explicitly: the delete below is destructive and must
  4510. # depend on a size we actually had, not on one we hoped was there.
  4511. expected_size = target.get("size")
  4512. timelapse_data = await download_file_bytes_async(
  4513. printer.ip_address,
  4514. printer.access_code,
  4515. remote_path,
  4516. printer_model=printer.model,
  4517. expected_size=expected_size,
  4518. )
  4519. if not timelapse_data:
  4520. # Short or failed transfer. The printer keeps its copy, so the next
  4521. # round can try again — which is exactly why the delete below is
  4522. # gated on a verified download.
  4523. logger.warning("[TIMELAPSE] Attempt %s: Failed to download new file, will retry", attempt)
  4524. return False
  4525. # The length check above proves we got what the listing said, not that the
  4526. # printer had finished writing. A video still being written can be listed
  4527. # short, served short, and pass — so confirm it has stopped growing before
  4528. # committing to it and deleting the original (#2704).
  4529. if not await remote_file_settled(
  4530. printer.ip_address,
  4531. printer.access_code,
  4532. remote_path,
  4533. len(timelapse_data),
  4534. printer_model=printer.model,
  4535. ):
  4536. return False
  4537. # Write phase: attach in a fresh short-lived session.
  4538. async with async_session() as db:
  4539. success = await ArchiveService(db).attach_timelapse(archive_id, timelapse_data, file_name)
  4540. if not success:
  4541. logger.warning("[TIMELAPSE] Failed to attach timelapse to archive %s", archive_id)
  4542. return False
  4543. logger.info("[TIMELAPSE] Successfully attached timelapse to archive %s", archive_id)
  4544. await ws_manager.send_archive_updated({"id": archive_id, "timelapse_attached": True})
  4545. await delete_archived_timelapse(
  4546. printer.ip_address,
  4547. printer.access_code,
  4548. remote_path,
  4549. verified=expected_size is not None,
  4550. printer_model=printer.model,
  4551. printer_name=printer.name,
  4552. )
  4553. return True
  4554. # Defaults for the finish-photo-from-timelapse polling loop (#1397). These are
  4555. # module-level so tests can monkeypatch them down to ~0 without timing out.
  4556. _FINISH_PHOTO_TIMELAPSE_POLL_INTERVAL_SECONDS: float = 3.0
  4557. _FINISH_PHOTO_TIMELAPSE_POLL_TIMEOUT_SECONDS: float = 60.0
  4558. # How long the *background* upgrade keeps waiting after the notification has
  4559. # already gone out (#2704 follow-up). The short bound above exists so a slow
  4560. # printer can't hold up the print-complete notification; this one exists so the
  4561. # archive still ends up with the better frame afterwards.
  4562. #
  4563. # Measured across 261 attaches in the support bundles, the video lands a median
  4564. # 13s after the print ends — but the P1 series writes MJPEG AVI rather than
  4565. # H.264 MP4 and serves it slowly, so its p90 is 167s and the worst observed case
  4566. # was 546s. Every other model was inside 26s. The long budget is therefore
  4567. # almost entirely for P1-series users; on everything else the short wait already
  4568. # wins and this task never runs.
  4569. _FINISH_PHOTO_UPGRADE_TIMEOUT_SECONDS: float = 900.0
  4570. async def _capture_finish_photo_from_timelapse(
  4571. archive_id: int,
  4572. archive_dir: Path,
  4573. timeout: float | None = None,
  4574. rotation: int = 0,
  4575. ) -> tuple[str | None, bool]:
  4576. """Wait for the per-print timelapse to land on the archive and extract its
  4577. last frame as the finish photo (#1397).
  4578. Bambu firmware stops timelapse recording after the toolhead parks but
  4579. before the bed-drop end-gcode runs, so the last frame frames the finished
  4580. print correctly. A live camera grab at gcode_state=FINISH captures the
  4581. bed already lowered.
  4582. ``_scan_for_timelapse_with_retries`` runs in parallel and writes
  4583. ``archive.timelapse_path`` when the file lands. This function polls for
  4584. that field.
  4585. Returns ``(filename, still_pending)``. ``still_pending`` is True only when
  4586. the wait ran out with no video on the archive yet — i.e. the video may
  4587. still be coming and a later attempt could succeed. It is False when the
  4588. video landed (whether or not extraction worked), because in that case
  4589. waiting longer changes nothing. The caller uses that to decide between
  4590. falling back permanently and scheduling a background upgrade.
  4591. ``rotation`` is the printer's camera_rotation, applied to the extracted
  4592. still (#2708) so this source agrees with every other finish-photo source.
  4593. The archived video itself is the printer's own file and is left alone —
  4594. rotating it would mean re-encoding it.
  4595. """
  4596. import uuid
  4597. from backend.app.models.archive import PrintArchive
  4598. from backend.app.services.camera import apply_camera_rotation_to_file, extract_video_last_frame
  4599. logger = logging.getLogger(__name__)
  4600. budget = _FINISH_PHOTO_TIMELAPSE_POLL_TIMEOUT_SECONDS if timeout is None else timeout
  4601. deadline = asyncio.get_event_loop().time() + budget
  4602. poll_interval = _FINISH_PHOTO_TIMELAPSE_POLL_INTERVAL_SECONDS
  4603. while True:
  4604. async with async_session() as db:
  4605. result = await db.execute(select(PrintArchive).where(PrintArchive.id == archive_id))
  4606. archive = result.scalar_one_or_none()
  4607. timelapse_relpath = archive.timelapse_path if archive else None
  4608. if timelapse_relpath:
  4609. video_path = app_settings.base_dir / timelapse_relpath
  4610. if video_path.exists() and video_path.stat().st_size > 0:
  4611. photos_dir = archive_dir / "photos"
  4612. photos_dir.mkdir(parents=True, exist_ok=True)
  4613. timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
  4614. filename = f"finish_{timestamp}_{uuid.uuid4().hex[:8]}.jpg"
  4615. output_path = photos_dir / filename
  4616. if await extract_video_last_frame(video_path, output_path):
  4617. await apply_camera_rotation_to_file(output_path, rotation, logger)
  4618. logger.info(
  4619. "[PHOTO-BG] Extracted finish photo from timelapse %s for archive %s",
  4620. video_path.name,
  4621. archive_id,
  4622. )
  4623. return filename, False
  4624. logger.warning(
  4625. "[PHOTO-BG] Timelapse %s landed but last-frame extraction failed for archive %s; falling back",
  4626. video_path.name,
  4627. archive_id,
  4628. )
  4629. return None, False
  4630. if asyncio.get_event_loop().time() >= deadline:
  4631. logger.info(
  4632. "[PHOTO-BG] Timelapse for archive %s didn't land within %.0fs; falling back to live camera",
  4633. archive_id,
  4634. budget,
  4635. )
  4636. return None, True
  4637. await asyncio.sleep(poll_interval)
  4638. async def _upgrade_finish_photo_from_timelapse(archive_id: int, archive_dir: Path, rotation: int = 0) -> None:
  4639. """Add the timelapse's last frame to an archive after the fact (#2704).
  4640. The print-complete notification waits only ~60s for the video, because
  4641. holding a notification for minutes is worse than sending it with a live
  4642. camera grab. On a P1-series printer the video often lands well after that,
  4643. so the archive used to be stuck with the live grab — which is taken at
  4644. ``gcode_state=FINISH``, after the end G-code has dropped the bed, and is
  4645. the worse photo of the two.
  4646. This keeps waiting in the background and, when the video arrives, extracts
  4647. the frame and puts it *first* in the archive's photo list, so opening the
  4648. gallery shows it. The live grab is deliberately kept: the notification that
  4649. already went out links to that exact file, and deleting it would leave a
  4650. broken image in Discord or Telegram.
  4651. """
  4652. logger = logging.getLogger(__name__)
  4653. filename, _ = await _capture_finish_photo_from_timelapse(
  4654. archive_id, archive_dir, timeout=_FINISH_PHOTO_UPGRADE_TIMEOUT_SECONDS, rotation=rotation
  4655. )
  4656. if not filename:
  4657. logger.info("[PHOTO-UPGRADE] No timelapse frame for archive %s; keeping the live grab", archive_id)
  4658. return
  4659. try:
  4660. async with async_session() as db:
  4661. from backend.app.models.archive import PrintArchive
  4662. archive = await db.get(PrintArchive, archive_id)
  4663. if archive is None:
  4664. return
  4665. photos = list(archive.photos or [])
  4666. if filename in photos:
  4667. return
  4668. # Front of the list: PhotoGalleryModal opens at index 0.
  4669. archive.photos = [filename, *photos]
  4670. await db.commit()
  4671. except Exception as e:
  4672. logger.warning("[PHOTO-UPGRADE] Failed to attach upgraded photo to archive %s: %s", archive_id, e)
  4673. return
  4674. logger.info("[PHOTO-UPGRADE] Archive %s now leads with the timelapse frame %s", archive_id, filename)
  4675. await ws_manager.send_archive_updated({"id": archive_id, "photo_added": filename})
  4676. async def _restore_usage_tracking_session(printer_id: int, state, db, logger) -> None:
  4677. """Put the filament-attribution context back after a restart mid-print.
  4678. ``usage_tracker._active_sessions`` and ``PrinterState.tray_change_log``
  4679. both die with the process. The print keeps running, so at completion the
  4680. tracker would fall back to whatever the printer reports *now* — and AMS
  4681. filament backup makes "now" the substitute tray, charging the whole print
  4682. to the spool that only finished it.
  4683. The persisted row is only trusted when its print name still matches what
  4684. the printer says it is running: a row left behind by a completion we never
  4685. saw must not attach itself to the next print.
  4686. """
  4687. try:
  4688. from backend.app.api.routes.settings import get_setting
  4689. from backend.app.services.usage_tracker import (
  4690. clear_persisted_session,
  4691. get_persisted_print_name,
  4692. restore_session,
  4693. )
  4694. persisted_name = await get_persisted_print_name(db, printer_id)
  4695. current_name = (state.subtask_name or "").strip()
  4696. if persisted_name and current_name and persisted_name.strip() != current_name:
  4697. logger.info(
  4698. "[RESTART] Discarding stale print session for printer %s (%r != running %r)",
  4699. printer_id,
  4700. persisted_name,
  4701. current_name,
  4702. )
  4703. await clear_persisted_session(db, printer_id)
  4704. # Fall through to seeding: the print on the printer is real, it just
  4705. # isn't the one the row described.
  4706. persisted_log = None
  4707. else:
  4708. # Spoolman users get the tray-change log back but no in-memory
  4709. # session — see ``on_print_start`` on why that dict is load-bearing
  4710. # for the remain%-sync guard.
  4711. _spoolman_on = await get_setting(db, "spoolman_enabled")
  4712. persisted_log = await restore_session(
  4713. db,
  4714. printer_id,
  4715. register_active=not (bool(_spoolman_on) and _spoolman_on.lower() == "true"),
  4716. )
  4717. if persisted_log:
  4718. restored = [tuple(entry) for entry in persisted_log if isinstance(entry, (list, tuple)) and len(entry) == 2]
  4719. # Anything this process already observed goes after the persisted
  4720. # history — the log is ordered by layer, and a fresh process can
  4721. # only have seen changes from later in the print.
  4722. for entry in state.tray_change_log or []:
  4723. if tuple(entry) not in restored:
  4724. restored.append(tuple(entry))
  4725. state.tray_change_log = restored
  4726. tray_now = state.tray_now
  4727. if 0 <= tray_now <= 254:
  4728. if not state.tray_change_log:
  4729. # No persisted history — a print that started before this build,
  4730. # or before the row existed. Seed with the tray feeding right
  4731. # now so the remainder of the print is at least attributable to
  4732. # the right spool.
  4733. state.tray_change_log = [(tray_now, state.layer_num)]
  4734. logger.info(
  4735. "[RESTART] Seeded tray change log for printer %s: tray=%d at layer=%d",
  4736. printer_id,
  4737. tray_now,
  4738. state.layer_num,
  4739. )
  4740. # The tray handler updates ``last_loaded_tray`` on every push
  4741. # regardless of whether it logged a change, so re-align it to avoid
  4742. # a duplicate entry on the next push. Only ever with a real tray:
  4743. # ``last_loaded_tray`` is the "survives the end-of-print retract to
  4744. # 255" fallback, and writing 255 into it would defeat that.
  4745. state.last_loaded_tray = tray_now
  4746. except Exception:
  4747. # Never let attribution recovery cost the caller its timelapse
  4748. # baseline — that capture has to happen before the printer uploads
  4749. # the in-flight MP4 and there is no second chance at it.
  4750. logger.exception("[RESTART] Failed to restore usage-tracking session for printer %s", printer_id)
  4751. async def on_print_running_observed(printer_id: int, data: dict):
  4752. """Restart-recovery for a print that started before Bambuddy came up.
  4753. bambu_mqtt.py suppresses ``on_print_start`` on the first RUNNING push
  4754. after Bambuddy startup (#1304 guard, prevents duplicate archive
  4755. creation). This hook restores the persisted archive into ``_active_prints``
  4756. and captures the timelapse baseline that normally hangs off print start.
  4757. Fires once per session, in lieu of on_print_start when restart-recovery
  4758. kicks in. The printer doesn't upload the timelapse until after PRINT
  4759. COMPLETE, so a baseline captured any time during the print is still
  4760. pre-upload.
  4761. """
  4762. logger = logging.getLogger(__name__)
  4763. async with async_session() as db:
  4764. from backend.app.models.printer import Printer
  4765. state = printer_manager.get_status(printer_id)
  4766. if state is not None:
  4767. authorization = await _is_bambuddy_authorized_print(printer_id, state, db)
  4768. if authorization is True:
  4769. logger.info("[RESTART] Restored active Bambuddy print for printer %s", printer_id)
  4770. await _restore_usage_tracking_session(printer_id, state, db, logger)
  4771. await _restore_printable_objects(printer_id, state, db, logger)
  4772. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  4773. printer = result.scalar_one_or_none()
  4774. if not printer:
  4775. logger.warning(
  4776. "[TIMELAPSE] on_print_running_observed: printer %s not found in DB, skipping baseline",
  4777. printer_id,
  4778. )
  4779. return
  4780. # Avoid double-capture: ownership reconciliation above must still run when
  4781. # a baseline already exists, but the camera work itself is one-shot.
  4782. if printer_id in _timelapse_baselines:
  4783. logger.debug(
  4784. "[TIMELAPSE] on_print_running_observed: baseline already present for printer %s, skipping",
  4785. printer_id,
  4786. )
  4787. return
  4788. await _capture_timelapse_baseline_at_start(printer, printer_id, logger)
  4789. def _is_active_archive_stale(archive, state) -> tuple[bool, str]:
  4790. """Return ``(is_stale, reason)`` for an archive in ``status="printing"``
  4791. against the printer's current MQTT state.
  4792. Reconciliation triggers (#1542 follow-up — recovers from missed PRINT
  4793. COMPLETE events, typically a print finishing during an MQTT disconnect
  4794. window followed by a smart-plug power cycle):
  4795. 1. Printer state is terminal (IDLE / FINISH / FAILED). The print is
  4796. provably not running anymore — only branch that should fire under
  4797. normal disconnect-then-reconnect timing.
  4798. 2. Printer has a different ``subtask_id`` than the archive. Bambu
  4799. firmware mints a fresh ``subtask_id`` for each print, including the
  4800. ghost replay it runs after a power cycle from a leftover SD file —
  4801. so a mismatch unambiguously means the in-DB archive is no longer
  4802. the print on the printer.
  4803. 3. Printer is running but ``subtask_name`` is empty. The printer
  4804. doesn't know what it's running; the archive's reference to it is
  4805. already broken.
  4806. Conservative on purpose: PAUSE / PREPARE / SLICING and any RUNNING state
  4807. with matching subtask_id+subtask_name is left alone. The cost of a false
  4808. positive is a duplicate archive on the next real PRINT COMPLETE — the
  4809. reactive handler uses ``_active_prints`` for lookup, which the reconcile
  4810. clears on synthesis, so the real completion creates a fresh row instead
  4811. of overwriting the synthesised one (#1679). The cost of a false negative
  4812. is the ghost-print loop in #1542.
  4813. Pre-push guard (#1679): when ``state.state`` is empty or ``"unknown"``,
  4814. MQTT has connected but the first ``push_status`` response hasn't been
  4815. applied yet — ``PrinterState`` is sitting on its construction defaults.
  4816. The reconcile caller in ``on_printer_status_change`` is already gated
  4817. on a real ``state.state``, so in normal operation this branch is
  4818. unreachable; it's kept as belt-and-braces for future callers and for
  4819. the narrow window where a partial state update could arrive
  4820. (``state.state`` set but ``subtask_name`` not yet populated). Returning
  4821. ``not stale`` on degenerate input is strictly conservative: a real
  4822. stale archive will still be caught by the next push_status arriving
  4823. with terminal state.
  4824. """
  4825. current_state = (state.state or "").upper()
  4826. if current_state in ("", "UNKNOWN"):
  4827. # No real push_status yet — PrinterState defaults are not evidence.
  4828. return False, ""
  4829. if current_state in ("IDLE", "FINISH", "FAILED"):
  4830. return True, f"printer state {current_state}"
  4831. # Below here the printer is in a running / pre-running state (RUNNING /
  4832. # PAUSE / PREPARE / SLICING / etc.) — decide based on subtask identity.
  4833. current_subtask_id = (state.subtask_id or "").strip()
  4834. if archive.subtask_id and current_subtask_id and archive.subtask_id != current_subtask_id:
  4835. return True, f"subtask_id changed ({archive.subtask_id!r} → {current_subtask_id!r})"
  4836. current_subtask_name = (state.subtask_name or "").strip()
  4837. if not current_subtask_name:
  4838. return True, "printer subtask_name empty"
  4839. return False, ""
  4840. async def prime_kprofile_table(printer_id: int) -> int:
  4841. """Read the printer's calibration table once per connection.
  4842. The AMS slot card shows a K value per slot (#2854). On the printers whose
  4843. trays carry no ``k`` field of their own -- the whole H2 series, whose trays
  4844. report ``cali_idx`` and nothing else -- that number can only come from
  4845. ``state.kprofiles``, and nothing used to fill it on connect. It arrived by
  4846. luck: someone opening the Profiles page or Configure Slot, a nightly GitHub
  4847. backup, or the printer answering a query BambuStudio made on the report
  4848. topic we share. A Bambuddy that nobody visited showed a card with no K
  4849. values at all.
  4850. Only the diameters actually fitted are asked for, which is one request on a
  4851. single-nozzle printer and two on a dual. Probing the four sizes blind is
  4852. what the backup does, and it is both wasteful and the thing that used to
  4853. blank the table.
  4854. Returns the number of nozzles whose table was read.
  4855. """
  4856. client = printer_manager.get_client(printer_id)
  4857. state = printer_manager.get_status(printer_id)
  4858. if client is None or state is None or not state.connected:
  4859. return 0
  4860. # Deduplicated, order preserved: a dual-nozzle printer with two 0.4s should
  4861. # ask once, and both entries are empty until the first push_status lands.
  4862. diameters = list(dict.fromkeys(n.nozzle_diameter for n in (state.nozzles or []) if n.nozzle_diameter))
  4863. if not diameters:
  4864. logging.getLogger(__name__).debug(
  4865. "[Printer %s] No nozzle diameter reported yet; leaving the K-profile table to the next reader",
  4866. printer_id,
  4867. )
  4868. return 0
  4869. primed = 0
  4870. for diameter in diameters:
  4871. try:
  4872. profiles = await client.get_kprofiles(nozzle_diameter=diameter, max_retries=2)
  4873. except Exception as exc: # noqa: BLE001
  4874. # A printer that won't answer costs the card its K values, nothing
  4875. # more — never the connection this runs on the back of.
  4876. logging.getLogger(__name__).warning(
  4877. "[Printer %s] Could not read the K-profile table for nozzle %s: %s", printer_id, diameter, exc
  4878. )
  4879. continue
  4880. primed += 1
  4881. logging.getLogger(__name__).info(
  4882. "[Printer %s] Primed K-profile table for nozzle %s: %d profiles", printer_id, diameter, len(profiles)
  4883. )
  4884. return primed
  4885. async def reconcile_stale_active_prints(printer_id: int) -> int:
  4886. """Synthesise ``on_print_complete`` for archives whose print can't be
  4887. running on the printer anymore.
  4888. Called once per MQTT (re)connection (from on_printer_status_change when
  4889. the connected edge flips False → True) and at Bambuddy startup (from
  4890. the FastAPI lifespan). Without this, a print that completes during a
  4891. disconnect window — followed by a smart-plug-driven power cycle — leaves
  4892. the ``.3mf`` on the SD card, the firmware auto-replays it on next boot,
  4893. and Bambuddy fires a fresh PRINT START for the ghost rather than the
  4894. SD cleanup that PRINT COMPLETE was supposed to run. Repeats every
  4895. power cycle until the operator notices (#1542 follow-up). Reconciliation
  4896. closes the loop by faking the missed PRINT COMPLETE — the existing
  4897. cleanup chain handles SD-file deletion, status updates, usage tracking,
  4898. and notifications.
  4899. Synthesised ``status="aborted"`` is the conservative label: we have no
  4900. proof the print finished successfully (and no progress evidence to
  4901. promote to ``"completed"``). The real PRINT COMPLETE callback, if it
  4902. fires later, overwrites the status with the correct value.
  4903. Returns the number of archives reconciled.
  4904. """
  4905. state = printer_manager.get_status(printer_id)
  4906. if not state:
  4907. return 0
  4908. # Don't reconcile while disconnected — we'd be making a decision against
  4909. # stale cached state. The connected → reconcile edge handles this.
  4910. if not state.connected:
  4911. return 0
  4912. from backend.app.models.archive import PrintArchive
  4913. reconciled = 0
  4914. async with async_session() as db:
  4915. result = await db.execute(
  4916. select(PrintArchive).where(
  4917. PrintArchive.printer_id == printer_id,
  4918. PrintArchive.status == "printing",
  4919. )
  4920. )
  4921. active = list(result.scalars().all())
  4922. if not active:
  4923. return 0
  4924. logger = logging.getLogger(__name__)
  4925. for archive in active:
  4926. is_stale, reason = _is_active_archive_stale(archive, state)
  4927. if not is_stale:
  4928. continue
  4929. logger.info(
  4930. "[RECONCILE] Printer %s: synthesising missed PRINT COMPLETE for archive %s (%s) — %s",
  4931. printer_id,
  4932. archive.id,
  4933. archive.filename,
  4934. reason,
  4935. )
  4936. # Synthesised payload: minimal fields the on_print_complete chain
  4937. # needs. `_reconciled` marker lets downstream code distinguish this
  4938. # from a real MQTT-driven completion if it ever needs to (e.g. for
  4939. # metrics / debug logging). raw_data is the live printer state so
  4940. # the usage tracker can compare end-of-print remain% against the
  4941. # captured start values.
  4942. try:
  4943. await on_print_complete(
  4944. printer_id,
  4945. {
  4946. "status": "aborted",
  4947. "filename": archive.filename,
  4948. "subtask_name": archive.print_name or "",
  4949. "subtask_id": archive.subtask_id or "",
  4950. "raw_data": state.raw_data or {},
  4951. "_reconciled": True,
  4952. },
  4953. )
  4954. reconciled += 1
  4955. except Exception as e:
  4956. # Catch-all: a reconciliation failure must not block the
  4957. # printer's normal status flow. The archive stays in
  4958. # ``status="printing"`` and the next reconnect retries.
  4959. logger.warning(
  4960. "[RECONCILE] on_print_complete synthesis failed for archive %s: %s",
  4961. archive.id,
  4962. e,
  4963. )
  4964. return reconciled
  4965. # #2547: clearance left between the nozzle and the top of the print when the
  4966. # plate is commanded back into camera framing. The nozzle is parked away from
  4967. # the part by then, so this is belt-and-braces against a max_z_height that
  4968. # under-reports (e.g. a slicer that excludes a final Z hop).
  4969. _PLATE_RESTORE_CLEARANCE_MM = 10.0
  4970. # How far below the restored position to drop the plate again afterwards, so
  4971. # the print is as reachable as Bambu's own end G-code leaves it. Matches the
  4972. # stock `G1 Z{max_layer_z + 100}`; the firmware clamps it to the travel limit
  4973. # on machines with less headroom.
  4974. _PLATE_PARK_DROP_MM = 100.0
  4975. # Feedrate for both moves. F600 is exactly what Bambu's own end G-code uses on
  4976. # this axis, so it is a proven-safe speed for the full travel.
  4977. _PLATE_RESTORE_FEEDRATE = 600
  4978. # Time allowed for the plate to reach the restored position before the camera
  4979. # grab. Sized for the ~100 mm the stock end G-code drops at F600 (10 mm/s).
  4980. _PLATE_RESTORE_SETTLE_SECONDS = 12.0
  4981. # How long `_background_finish_photo` waits for this producer. Must cover the
  4982. # settle window plus a worst-case RTSP grab (15s), and stay below the
  4983. # notification path's own photo wait so a slow producer degrades to a
  4984. # photo-less notification rather than a missed one.
  4985. _FINISH_PHOTO_PRODUCER_WAIT_SECONDS = _PLATE_RESTORE_SETTLE_SECONDS + 23.0
  4986. async def _max_z_for_current_print(printer_id: int, data: dict, logger) -> float | None:
  4987. """Height of the print that just finished on ``printer_id``, or None (#2547).
  4988. This number becomes the target of a real Z move, so every step here refuses
  4989. rather than guesses. A height belonging to some *other* print is the one
  4990. failure that could drive the nozzle into the model: 20 mm carried onto a
  4991. 200 mm print would command the plate up through the part.
  4992. Two independent things therefore have to agree before a height is returned:
  4993. 1. **Identity.** The archive is matched by the finished print's own
  4994. ``subtask_name``, by equality rather than a ``LIKE``, so "Cube" can never
  4995. resolve to "Cube v2". Matching on "most recent archive for this printer"
  4996. is not good enough — ``on_print_complete`` pops the ``_active_prints``
  4997. binding concurrently with us, and a print Bambuddy failed to archive
  4998. would silently resolve to its predecessor.
  4999. 2. **Corroboration.** The archive's layer count (parsed from the 3MF) has to
  5000. match the layer count the printer itself reported over MQTT for the print
  5001. that just ended. These come from genuinely different sources, so a
  5002. mismatch means the row is not this print, whatever its name says.
  5003. ``completed`` is accepted alongside ``printing`` only because
  5004. ``on_print_complete`` may already have flipped the status by the time we
  5005. run; the identity check above is what actually selects the row.
  5006. """
  5007. subtask_name = (data.get("subtask_name") or "").strip()
  5008. if not subtask_name:
  5009. # Nothing to identify the print by — refuse rather than fall back to
  5010. # "whatever ran last on this printer".
  5011. logger.info("[PLATE-RESTORE] printer %s: print has no name to match on — skipping", printer_id)
  5012. return None
  5013. try:
  5014. from backend.app.models.archive import PrintArchive
  5015. from backend.app.utils.threemf_tools import extract_max_z_height_from_3mf
  5016. async with async_session() as db:
  5017. result = await db.execute(
  5018. select(PrintArchive)
  5019. .where(
  5020. PrintArchive.printer_id == printer_id,
  5021. PrintArchive.status.in_(("printing", "completed")),
  5022. PrintArchive.deleted_at.is_(None),
  5023. or_(
  5024. PrintArchive.print_name == subtask_name,
  5025. PrintArchive.filename == subtask_name,
  5026. PrintArchive.filename == f"{subtask_name}.3mf",
  5027. PrintArchive.filename == f"{subtask_name}.gcode.3mf",
  5028. ),
  5029. )
  5030. .order_by(PrintArchive.id.desc())
  5031. .limit(1)
  5032. )
  5033. archive = result.scalar_one_or_none()
  5034. if archive is None or not archive.file_path:
  5035. logger.info("[PLATE-RESTORE] printer %s: no archive matches %r — skipping", printer_id, subtask_name)
  5036. return None
  5037. client = printer_manager.get_client(printer_id)
  5038. reported_layers = getattr(getattr(client, "state", None), "total_layers", None)
  5039. if reported_layers and archive.total_layers and reported_layers != archive.total_layers:
  5040. logger.warning(
  5041. "[PLATE-RESTORE] printer %s: archive %s says %s layers but the printer reported %s "
  5042. "— refusing to move the plate on a height that may not be this print's",
  5043. printer_id,
  5044. archive.id,
  5045. archive.total_layers,
  5046. reported_layers,
  5047. )
  5048. return None
  5049. path = Path(archive.file_path)
  5050. if not path.is_absolute():
  5051. path = Path(app_settings.data_dir) / path
  5052. return await asyncio.to_thread(extract_max_z_height_from_3mf, path, archive.plate_id or 1)
  5053. except Exception as e:
  5054. logger.debug("[PLATE-RESTORE] printer %s: no usable print height: %s", printer_id, e)
  5055. return None
  5056. async def _restore_plate_for_finish_photo(printer_id: int, max_z_height: float, logger) -> bool:
  5057. """Raise the plate back into camera framing before the finish photo (#2547).
  5058. Bambu's end G-code drops the plate ~100 mm as the last thing it does, so by
  5059. the time ``gcode_state`` reaches FINISH the finished print sits far below
  5060. the camera's natural framing — the complaint behind #1145, #1397 and #1565.
  5061. This commands an absolute ``G1 Z`` back to just above the last printed
  5062. layer.
  5063. Absolute, not relative, is the whole safety argument. ``max_z_height +
  5064. clearance`` is a height the toolhead was physically at seconds earlier, so
  5065. it is inside the travel limits by construction and leaves the nozzle above
  5066. the part. It is also unambiguous across model families: Z is the
  5067. nozzle-to-bed gap whether the bed moves (X1/P1/H2) or the toolhead does
  5068. (A1), so unlike the relative bed-jog path (#1334) there is no sign to get
  5069. wrong. ``M211`` is never touched — see the bed-jog docstring for why
  5070. (#2579).
  5071. Returns True if the move was sent and waited out, False if it was skipped.
  5072. """
  5073. client = printer_manager.get_client(printer_id)
  5074. if client is None:
  5075. return False
  5076. # Re-read state immediately before commanding motion. If the queue has
  5077. # already started the next print, the printer is no longer ours to move.
  5078. state = getattr(client, "state", None)
  5079. if state is None or state.state != "FINISH":
  5080. logger.info(
  5081. "[PLATE-RESTORE] printer %s is in state %s, not FINISH — skipping",
  5082. printer_id,
  5083. getattr(state, "state", "unknown"),
  5084. )
  5085. return False
  5086. target_z = max_z_height + _PLATE_RESTORE_CLEARANCE_MM
  5087. if not client.send_gcode(f"G90\nG1 Z{target_z:.2f} F{_PLATE_RESTORE_FEEDRATE}"):
  5088. logger.warning("[PLATE-RESTORE] printer %s: send failed — capturing where it is", printer_id)
  5089. return False
  5090. logger.info(
  5091. "[PLATE-RESTORE] printer %s: plate to Z%.2f (print top %.2f + %.1f clearance), settling %.0fs",
  5092. printer_id,
  5093. target_z,
  5094. max_z_height,
  5095. _PLATE_RESTORE_CLEARANCE_MM,
  5096. _PLATE_RESTORE_SETTLE_SECONDS,
  5097. )
  5098. await asyncio.sleep(_PLATE_RESTORE_SETTLE_SECONDS)
  5099. return True
  5100. def _park_plate_after_finish_photo(printer_id: int, max_z_height: float, logger) -> None:
  5101. """Drop the plate again after the finish photo (#2547).
  5102. Without this the user walks up to a finished print sitting just under the
  5103. nozzle, which is exactly the position Bambu's end G-code goes out of its way
  5104. to avoid — awkward to lift the plate out, and easy to knock the toolhead.
  5105. Fire-and-forget: if it doesn't land, the plate is merely high, and the next
  5106. print homes anyway.
  5107. """
  5108. client = printer_manager.get_client(printer_id)
  5109. state = getattr(client, "state", None) if client else None
  5110. if client is None or state is None or state.state != "FINISH":
  5111. return
  5112. client.send_gcode(f"G90\nG1 Z{max_z_height + _PLATE_PARK_DROP_MM:.2f} F{_PLATE_RESTORE_FEEDRATE}")
  5113. logger.debug("[PLATE-RESTORE] printer %s: plate returned to unload height", printer_id)
  5114. async def _plate_restore_is_blocked_by_queue(printer_id: int) -> bool:
  5115. """True if a queue item is about to take this printer (#2547).
  5116. The scheduler dispatches the next job the moment a print completes, and a
  5117. plate move interleaved with a print start is not a race worth having. The
  5118. state re-check in ``_restore_plate_for_finish_photo`` closes the tail of
  5119. this window; this closes the head of it.
  5120. """
  5121. try:
  5122. from backend.app.models.print_queue import PrintQueueItem
  5123. async with async_session() as db:
  5124. result = await db.execute(
  5125. select(PrintQueueItem.id)
  5126. .where(
  5127. PrintQueueItem.printer_id == printer_id,
  5128. PrintQueueItem.status.in_(("pending", "printing")),
  5129. )
  5130. .limit(1)
  5131. )
  5132. return result.scalar_one_or_none() is not None
  5133. except Exception as e:
  5134. # Fail closed: if we can't tell, don't move the plate.
  5135. logging.getLogger(__name__).debug(
  5136. "[PLATE-RESTORE] queue check failed for printer %s: %s — skipping restore", printer_id, e
  5137. )
  5138. return True
  5139. async def on_finish_photo_moment(printer_id: int, data: dict):
  5140. """Pre-capture a finish photo when the printer enters stage 22 / FINISH (#1721).
  5141. Fires either at the stage-22 ("Filament unloading") edge — toolhead
  5142. parked, bed not yet dropped, optimal framing — or as a FINISH-state
  5143. fallback for prints that skip stage 22 (cancel, external-spool-only,
  5144. HMS halt, firmware variants). Grabs one frame via the same
  5145. external-camera / RTSP path the post-completion fallback uses, stores
  5146. the JPEG bytes in ``_stage22_finish_frames[printer_id]``, and lets
  5147. ``_background_finish_photo`` consume the cached bytes when it runs.
  5148. Replaces the #1397 "force timelapse on at dispatch" mechanism, which
  5149. caused per-layer nozzle parking on slicer profiles with Timelapse Type
  5150. set to Smooth (#1721). No force-on now means the user's explicit
  5151. timelapse=off in the slicer send dialog is respected.
  5152. """
  5153. logger = logging.getLogger(__name__)
  5154. trigger = data.get("trigger", "unknown")
  5155. timelapse_was_active = bool(data.get("timelapse_was_active"))
  5156. logger.info(
  5157. "[FINISH-PHOTO-MOMENT] printer=%s trigger=%s timelapse_active=%s",
  5158. printer_id,
  5159. trigger,
  5160. timelapse_was_active,
  5161. )
  5162. # If a timelapse is actively recording, skip the pre-capture — the
  5163. # post-completion path will extract the last frame from the recorded
  5164. # video, which still provides the best framing (toolhead parked,
  5165. # before bed drop) without the per-layer parking side effects.
  5166. if timelapse_was_active:
  5167. logger.info(
  5168. "[FINISH-PHOTO-MOMENT] timelapse active for printer %s — skipping pre-capture (last-frame extraction will run post-completion)",
  5169. printer_id,
  5170. )
  5171. return
  5172. # #1790: register the producer-done event BEFORE the first await so the
  5173. # consumer in `_background_finish_photo` — which is dispatched back-to-back
  5174. # with us on the FINISH-state fallback path — sees it as soon as it polls.
  5175. # The `finally` below guarantees `set()` runs on every exit, including
  5176. # early returns and exceptions, so the consumer's bounded wait can't hang.
  5177. producer_done = asyncio.Event()
  5178. _stage22_finish_in_flight[printer_id] = producer_done
  5179. # #2547: set once the plate has actually been raised, and read by the
  5180. # `finally` below. Declared out here so a failure anywhere after the move —
  5181. # a camera timeout, a DB error — still lowers the plate again.
  5182. restore_max_z: float | None = None
  5183. try:
  5184. async with async_session() as db:
  5185. from backend.app.api.routes.settings import get_setting
  5186. from backend.app.models.printer import Printer
  5187. capture_setting = await get_setting(db, "capture_finish_photo")
  5188. if capture_setting is not None and capture_setting.lower() != "true":
  5189. logger.info("[FINISH-PHOTO-MOMENT] capture_finish_photo disabled — skipping pre-capture")
  5190. return
  5191. restore_setting = await get_setting(db, "finish_photo_restore_plate")
  5192. restore_plate_enabled = restore_setting is None or restore_setting.lower() == "true"
  5193. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  5194. printer = result.scalar_one_or_none()
  5195. if printer is None:
  5196. logger.warning(
  5197. "[FINISH-PHOTO-MOMENT] printer %s not found in DB",
  5198. printer_id,
  5199. )
  5200. return
  5201. frame_bytes: bytes | None = None
  5202. # #2708: the banked frame arrives already rotated — it comes from
  5203. # `_capture_snapshot_for_notification`, which rotates before returning.
  5204. # Every other source below is a raw grab. Tracking which lets us store
  5205. # exactly one rotation in `_stage22_finish_frames` either way.
  5206. frame_already_rotated = False
  5207. # On the FINISH-state path the End G-code has already run, and two very
  5208. # different situations arrive here needing opposite answers.
  5209. #
  5210. # #1867: if Bambuddy injected End G-code into this print, a SwapMod
  5211. # snippet may have ejected the plate — the scene in front of the camera
  5212. # is no longer the finished print, and no amount of moving the plate
  5213. # brings it back. Use the banked in-print frame instead.
  5214. #
  5215. # #2547: otherwise the print is still sitting there, just ~100 mm lower
  5216. # than the camera frames well, and the toolhead is parked out of the
  5217. # way. That is the *best* moment available on firmware that never emits
  5218. # stage 22 (H2C, A1 Mini) — so capture live, after putting the plate
  5219. # back. Preferring the bank here unconditionally, as this code used to,
  5220. # is what shipped a mid-print photo with the toolhead over the part.
  5221. if trigger == "finish_state" and print_dispatch_context.end_gcode_injected(printer_id):
  5222. banked = _inprint_frame_bank.get(printer_id)
  5223. if banked:
  5224. frame_bytes = banked
  5225. frame_already_rotated = True
  5226. logger.info(
  5227. "[FINISH-PHOTO-MOMENT] End G-code was injected — using banked in-print "
  5228. "frame (%d bytes) instead of a post-swap live grab",
  5229. len(banked),
  5230. )
  5231. else:
  5232. logger.warning(
  5233. "[FINISH-PHOTO-MOMENT] End G-code was injected for printer %s but the "
  5234. "in-print bank is empty — falling back to a live grab, which may show a "
  5235. "swapped or empty plate",
  5236. printer_id,
  5237. )
  5238. # `restore_max_z` is set only once the plate is actually up, because the
  5239. # `finally` reads it to decide whether it owes a move back down.
  5240. #
  5241. # Never on a print whose End G-code Bambuddy injected, even when the bank
  5242. # came up empty above: that machine may have just ejected its plate, and
  5243. # driving Z into whatever a swap mechanism is doing is not a risk worth
  5244. # taking for a photo of a bed we already know may be bare.
  5245. if (
  5246. frame_bytes is None
  5247. and trigger == "finish_state"
  5248. and restore_plate_enabled
  5249. and not print_dispatch_context.end_gcode_injected(printer_id)
  5250. ):
  5251. wants_restore = await _max_z_for_current_print(printer_id, data, logger)
  5252. if wants_restore is None:
  5253. logger.info(
  5254. "[PLATE-RESTORE] printer %s: print height unknown — capturing without restore",
  5255. printer_id,
  5256. )
  5257. elif await _plate_restore_is_blocked_by_queue(printer_id):
  5258. logger.info(
  5259. "[PLATE-RESTORE] printer %s has queued work — skipping plate restore",
  5260. printer_id,
  5261. )
  5262. elif await _restore_plate_for_finish_photo(printer_id, wants_restore, logger):
  5263. restore_max_z = wants_restore
  5264. if frame_bytes is None and printer.external_camera_enabled and printer.external_camera_url:
  5265. from backend.app.api.routes.camera import live_frame_for_capture
  5266. from backend.app.services.external_camera import capture_frame
  5267. # #2707: this used to collide with the live view and fail, which is
  5268. # how finish-photo notifications went out with no image attached.
  5269. # Leaving frame_bytes None keeps the rest of the fallback chain.
  5270. defer, buffered = live_frame_for_capture(printer_id)
  5271. if defer:
  5272. frame_bytes = buffered
  5273. else:
  5274. frame_bytes = await capture_frame(
  5275. printer.external_camera_url,
  5276. printer.external_camera_type or "mjpeg",
  5277. snapshot_url=printer.external_camera_snapshot_url,
  5278. )
  5279. if frame_bytes:
  5280. logger.info(
  5281. "[FINISH-PHOTO-MOMENT] captured external-camera frame (%d bytes)",
  5282. len(frame_bytes),
  5283. )
  5284. elif frame_bytes is None:
  5285. from backend.app.api.routes.camera import get_buffered_frame
  5286. buffered = get_buffered_frame(printer_id)
  5287. if buffered:
  5288. frame_bytes = buffered
  5289. logger.info(
  5290. "[FINISH-PHOTO-MOMENT] used buffered RTSP frame (%d bytes)",
  5291. len(frame_bytes),
  5292. )
  5293. else:
  5294. from backend.app.services.camera import capture_camera_frame_bytes
  5295. frame_bytes = await capture_camera_frame_bytes(
  5296. ip_address=printer.ip_address,
  5297. access_code=printer.access_code,
  5298. model=printer.model,
  5299. timeout=15,
  5300. )
  5301. if frame_bytes:
  5302. logger.info(
  5303. "[FINISH-PHOTO-MOMENT] captured RTSP frame (%d bytes)",
  5304. len(frame_bytes),
  5305. )
  5306. if frame_bytes:
  5307. if not frame_already_rotated:
  5308. frame_bytes = _apply_camera_rotation(frame_bytes, printer, logger)
  5309. _stage22_finish_frames[printer_id] = frame_bytes
  5310. else:
  5311. logger.warning(
  5312. "[FINISH-PHOTO-MOMENT] no frame captured for printer %s — post-completion fallback will retry",
  5313. printer_id,
  5314. )
  5315. except Exception as e:
  5316. logger.warning(
  5317. "[FINISH-PHOTO-MOMENT] pre-capture failed for printer %s: %s",
  5318. printer_id,
  5319. e,
  5320. )
  5321. finally:
  5322. # #2547: we raised the plate, so we own lowering it — including when the
  5323. # capture above failed or threw partway through.
  5324. if restore_max_z is not None:
  5325. try:
  5326. _park_plate_after_finish_photo(printer_id, restore_max_z, logger)
  5327. except Exception as e:
  5328. logger.warning("[PLATE-RESTORE] printer %s: could not lower plate: %s", printer_id, e)
  5329. # #1790: always unblock the consumer's bounded wait — whether we stored
  5330. # a frame, gave up, or hit an exception. Local ref means cleanup of the
  5331. # dict entry by the consumer doesn't affect signalling.
  5332. producer_done.set()
  5333. def _subtask_name_from_filename(filename: str) -> str:
  5334. """Recover the subtask name a print command would have carried for *filename*.
  5335. The dispatcher derives the printer-facing subtask name from the archive's
  5336. file name, so stripping the extensions back off gives the value MQTT echoes
  5337. on completion. Only the two extensions Bambuddy actually stores are removed,
  5338. and in the order they nest (``.gcode.3mf``), so a model whose own name
  5339. contains a dot -- ``My.Model.3mf`` -- keeps it.
  5340. """
  5341. name = PurePosixPath(filename).name
  5342. for suffix in (".3mf", ".gcode"):
  5343. if name.lower().endswith(suffix):
  5344. name = name[: -len(suffix)]
  5345. return name
  5346. # How the printer marks a subtask name it had to cut short. Observed on real
  5347. # hardware at ~100 characters, but the cut-off is not a fixed character count
  5348. # (a name with multibyte characters came back at 98), so match the marker
  5349. # rather than a length.
  5350. _SUBTASK_TRUNCATION_MARKER = "..."
  5351. def _normalise_subtask_name(name: str) -> str:
  5352. """Canonical form for comparing a dispatched name against MQTT's echo.
  5353. The printer does not echo the name back verbatim: it substitutes
  5354. underscores for spaces. ``H2D_Carbon_Filter_(V2)_Body & Solid Lid`` is
  5355. dispatched and ``H2D_Carbon_Filter_(V2)_Body_&_Solid_Lid`` comes back.
  5356. The 3MF lookup in this module has always known that -- it builds
  5357. space-to-underscore variants of every candidate filename, and its
  5358. directory search normalises both sides before comparing. This exists so
  5359. the completion check reads the same rule from the same place instead of
  5360. growing its own, which is exactly how it came to disagree (#2829).
  5361. """
  5362. return name.strip().replace(" ", "_").casefold()
  5363. def _subtask_names_match(expected: str, observed: str) -> bool:
  5364. """Whether two subtask names describe the same print.
  5365. Beyond the space/underscore substitution, the printer truncates long names
  5366. and marks the cut with ``...``. A truncated echo has to count as a match or
  5367. every print with a long name strands its queue item the same way.
  5368. """
  5369. expected_n = _normalise_subtask_name(expected)
  5370. observed_n = _normalise_subtask_name(observed)
  5371. if expected_n == observed_n:
  5372. return True
  5373. # Either side can be the truncated one: the printer truncates what it
  5374. # echoes, and an archive whose own filename was recorded from a previous
  5375. # truncated echo carries the marker too.
  5376. for full, cut in ((expected_n, observed_n), (observed_n, expected_n)):
  5377. if cut.endswith(_SUBTASK_TRUNCATION_MARKER) and full.startswith(cut[: -len(_SUBTASK_TRUNCATION_MARKER)]):
  5378. return True
  5379. return False
  5380. async def _completion_belongs_to_queue_item(db, item, data: dict) -> bool:
  5381. """Whether this completion event is plausibly about *item*'s print.
  5382. The caller finds its queue row by printer and ``status='printing'`` alone,
  5383. which is all a completion event gives it -- there is no run identifier in
  5384. the MQTT payload to match on. That makes the lookup indiscriminate: any
  5385. completion delivered for this printer closes whichever row happens to be
  5386. printing, however unrelated. Comparing the subtask name against the archive
  5387. the row was dispatched with costs one primary-key load and rules that out.
  5388. Deliberately permissive: it answers False only on a positive disagreement
  5389. between two names we actually have. A row with no archive, an archive with
  5390. no file name, or an event with no subtask name is unverifiable rather than
  5391. wrong, and refusing those would strand the item in ``printing`` and wedge
  5392. the printer's queue -- a worse failure than the one being prevented.
  5393. """
  5394. observed = (data.get("subtask_name") or "").strip()
  5395. if not observed or item.archive_id is None:
  5396. return True
  5397. from backend.app.models.archive import PrintArchive
  5398. archive = await db.get(PrintArchive, item.archive_id)
  5399. if archive is None or not archive.filename:
  5400. return True
  5401. expected = _subtask_name_from_filename(archive.filename)
  5402. if not expected or _subtask_names_match(expected, observed):
  5403. return True
  5404. logging.getLogger(__name__).warning(
  5405. "Ignoring print completion for queue item %s: it was dispatched as %r "
  5406. "(archive %s, %s) but the completion reports subtask %r. Leaving the item "
  5407. "printing rather than closing a run this event is not about.",
  5408. item.id,
  5409. expected,
  5410. archive.id,
  5411. archive.filename,
  5412. observed,
  5413. )
  5414. return False
  5415. async def _recover_fallback_from_cache_before_eviction(printer_id: int, data: dict) -> None:
  5416. """Spend the 3MF download cache on a still-empty fallback archive.
  5417. ``on_print_complete`` drops the cache as its first act, which deletes the
  5418. file. If the cover endpoint (or anything else) pulled the 3MF while the
  5419. print ran and the archive never got one, this is the last moment those bytes
  5420. exist (#2957).
  5421. """
  5422. logger = logging.getLogger(__name__)
  5423. names = [
  5424. n
  5425. for n in (data.get("filename"), data.get("subtask_name"), (data.get("raw_data") or {}).get("subtask_name"))
  5426. if n
  5427. ]
  5428. for name in names:
  5429. try:
  5430. cached = get_cached_3mf(printer_id, name)
  5431. if cached and await try_recover_fallback_archive(printer_id, name, cached):
  5432. return
  5433. except Exception as e:
  5434. logger.debug("[RECOVER] Pre-eviction recovery for %s failed: %s", name, e)
  5435. async def on_print_complete(printer_id: int, data: dict):
  5436. """Handle print completion - update the archive status."""
  5437. import time
  5438. logger = logging.getLogger(__name__)
  5439. start_time = time.time()
  5440. def log_timing(section: str):
  5441. elapsed = time.time() - start_time
  5442. logger.info("[TIMING] %s: %.3fs elapsed", section, elapsed)
  5443. logger.info("[CALLBACK] on_print_complete started for printer %s", printer_id)
  5444. # A kill-switch stop sends its provider notification immediately. Keep the
  5445. # task so the later notification path can await it and avoid a duplicate;
  5446. # if that immediate attempt failed, the regular completion path retries.
  5447. kill_switch_notification_task = _kill_switch_notification_tasks.pop(printer_id, None)
  5448. # Last chance before the bytes go: if this print's archive is still an empty
  5449. # fallback and something downloaded the 3MF while it ran, fill the archive in
  5450. # now. The cover endpoint's copy lives in exactly this cache, and clearing it
  5451. # below deletes the file (#2957).
  5452. await _recover_fallback_from_cache_before_eviction(printer_id, data)
  5453. # A pending cool-off retry has nothing left to recover for — the cache is
  5454. # about to be dropped and the print is over.
  5455. retry_task = _fallback_3mf_retry_tasks.pop(printer_id, None)
  5456. if retry_task and not retry_task.done():
  5457. retry_task.cancel()
  5458. # Drop the 3MF download cache for this printer (#972). The print is over,
  5459. # nothing else legitimately needs the bytes; keeping them would only risk
  5460. # handing a stale file to the next print if it reuses the same name.
  5461. clear_3mf_cache(printer_id)
  5462. try:
  5463. ws_data = {
  5464. "status": data.get("status"),
  5465. "filename": data.get("filename"),
  5466. "subtask_name": data.get("subtask_name"),
  5467. "timelapse_was_active": data.get("timelapse_was_active"),
  5468. }
  5469. await ws_manager.send_print_complete(printer_id, ws_data)
  5470. log_timing("WebSocket send_print_complete")
  5471. except Exception as e:
  5472. logger.warning("[CALLBACK] WebSocket send_print_complete failed: %s", e)
  5473. # Capture user info before clearing (needed for print log entry)
  5474. _print_user_info = printer_manager.get_current_print_user(printer_id)
  5475. # Clear current print user tracking (Issue #206)
  5476. printer_manager.clear_current_print_user(printer_id)
  5477. # If the user explicitly stopped this print from the queue UI the printer will
  5478. # report "failed" or "aborted" via MQTT. Override that to "cancelled" so the
  5479. # correct "print stopped" notification/email is sent instead of a failure alert.
  5480. _raw_status = data.get("status", "completed")
  5481. if printer_id in _user_stopped_printers and _raw_status in ("failed", "aborted"):
  5482. logger.info(
  5483. "[CALLBACK] Overriding status '%s' -> 'cancelled' for printer %s (print was stopped from queue by user)",
  5484. _raw_status,
  5485. printer_id,
  5486. )
  5487. data = {**data, "status": "cancelled"}
  5488. _user_stopped_printers.discard(printer_id)
  5489. # Raise the plate-clear gate for queued dispatch (#961). Any terminal status
  5490. # may have left material on the bed: a user can cancel ten hours into a
  5491. # twelve-hour print, a printer can self-abort mid-job after a clog, and a
  5492. # touchscreen-stop reports `aborted` rather than `cancelled` because
  5493. # `_user_stopped_printers` is only populated when the user stops via the
  5494. # Bambuddy queue UI. Earlier code raised the flag only for completed/failed,
  5495. # which auto-dispatched the next queued print onto a fouled bed two seconds
  5496. # after a touchscreen-abort (#1171). Persisted to DB so the gate survives
  5497. # Auto Off power cycles and Bambuddy restarts.
  5498. _final_status = data.get("status", "completed")
  5499. if _final_status in ("completed", "failed", "aborted", "cancelled"):
  5500. printer_manager.set_awaiting_plate_clear(printer_id, True)
  5501. # MQTT relay - publish print complete
  5502. try:
  5503. printer_info = printer_manager.get_printer(printer_id)
  5504. if printer_info:
  5505. await mqtt_relay.on_print_complete(
  5506. printer_id,
  5507. printer_info.name,
  5508. printer_info.serial_number,
  5509. data.get("filename", ""),
  5510. data.get("subtask_name", ""),
  5511. data.get("status", "completed"),
  5512. )
  5513. except Exception:
  5514. pass # Don't fail print complete callback if MQTT fails
  5515. filename = data.get("filename", "")
  5516. subtask_name = data.get("subtask_name", "")
  5517. if not filename and not subtask_name:
  5518. logger.warning("Print complete without filename or subtask_name")
  5519. return
  5520. logger.info("Print complete - filename: %s, subtask: %s, status: %s", filename, subtask_name, data.get("status"))
  5521. # Build list of possible keys to try (matching how they were registered in on_print_start)
  5522. possible_keys = []
  5523. # Try subtask_name variations first (most reliable for matching)
  5524. if subtask_name:
  5525. possible_keys.append((printer_id, f"{subtask_name}.3mf"))
  5526. possible_keys.append((printer_id, f"{subtask_name}.gcode.3mf"))
  5527. possible_keys.append((printer_id, subtask_name))
  5528. # Try filename variations
  5529. if filename:
  5530. # Extract just the filename if it's a path
  5531. fname = filename.split("/")[-1] if "/" in filename else filename
  5532. if fname.endswith(".3mf"):
  5533. possible_keys.append((printer_id, fname))
  5534. elif fname.endswith(".gcode"):
  5535. base_name = fname.rsplit(".", 1)[0]
  5536. possible_keys.append((printer_id, f"{base_name}.gcode.3mf"))
  5537. possible_keys.append((printer_id, f"{base_name}.3mf"))
  5538. possible_keys.append((printer_id, fname))
  5539. else:
  5540. possible_keys.append((printer_id, f"{fname}.gcode.3mf"))
  5541. possible_keys.append((printer_id, f"{fname}.3mf"))
  5542. possible_keys.append((printer_id, fname))
  5543. # Also try full path versions
  5544. if filename.endswith(".3mf"):
  5545. possible_keys.append((printer_id, filename))
  5546. elif filename.endswith(".gcode"):
  5547. base_name = filename.rsplit(".", 1)[0]
  5548. possible_keys.append((printer_id, f"{base_name}.3mf"))
  5549. possible_keys.append((printer_id, filename))
  5550. else:
  5551. possible_keys.append((printer_id, f"{filename}.3mf"))
  5552. possible_keys.append((printer_id, filename))
  5553. # Find the archive for this print
  5554. logger.info("Looking for archive in _active_prints, keys to try: %s...", possible_keys[:5])
  5555. logger.info("Current _active_prints: %s", list(_active_prints.keys()))
  5556. archive_id = None
  5557. for key in possible_keys:
  5558. archive_id = _active_prints.pop(key, None)
  5559. if archive_id:
  5560. logger.info("Found archive %s with key %s", archive_id, key)
  5561. # Also clean up any other keys pointing to this archive
  5562. keys_to_remove = [k for k, v in _active_prints.items() if v == archive_id]
  5563. for k in keys_to_remove:
  5564. _active_prints.pop(k, None)
  5565. break
  5566. if not archive_id:
  5567. # Try to find by filename or subtask_name if not tracked (for prints started before app)
  5568. async with async_session() as db:
  5569. from backend.app.models.archive import PrintArchive
  5570. # Try matching by subtask_name (stored as print_name) first
  5571. if subtask_name:
  5572. result = await db.execute(
  5573. select(PrintArchive)
  5574. .where(PrintArchive.printer_id == printer_id)
  5575. .where(PrintArchive.status == "printing")
  5576. .where(
  5577. or_(
  5578. PrintArchive.print_name.ilike(f"%{subtask_name}%"),
  5579. PrintArchive.filename.ilike(f"%{subtask_name}%"),
  5580. )
  5581. )
  5582. .order_by(PrintArchive.created_at.desc())
  5583. .limit(1)
  5584. )
  5585. archive = result.scalar_one_or_none()
  5586. if archive:
  5587. archive_id = archive.id
  5588. logger.info("Found archive %s by subtask_name match: %s", archive_id, subtask_name)
  5589. # Also try by filename
  5590. if not archive_id and filename:
  5591. result = await db.execute(
  5592. select(PrintArchive)
  5593. .where(PrintArchive.printer_id == printer_id)
  5594. .where(PrintArchive.filename == filename)
  5595. .where(PrintArchive.status == "printing")
  5596. .order_by(PrintArchive.created_at.desc())
  5597. .limit(1)
  5598. )
  5599. archive = result.scalar_one_or_none()
  5600. if archive:
  5601. archive_id = archive.id
  5602. # Cleanup: delete uploaded file from printer SD card to prevent phantom prints (Issue #374, #1542)
  5603. # The print scheduler uploads files to the SD card root (/). Some printers (e.g. P1S, A1)
  5604. # auto-start files found in root on power cycle, causing ghost prints.
  5605. # Must run before the archive_id early-return so it executes even when archiving is disabled.
  5606. try:
  5607. if subtask_name:
  5608. archive_filename: str | None = None
  5609. async with async_session() as db:
  5610. from backend.app.models.archive import PrintArchive
  5611. from backend.app.models.printer import Printer
  5612. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  5613. printer = result.scalar_one_or_none()
  5614. if archive_id:
  5615. archive_row = await db.execute(select(PrintArchive.filename).where(PrintArchive.id == archive_id))
  5616. archive_filename = archive_row.scalar_one_or_none()
  5617. if printer:
  5618. from backend.app.services.bambu_ftp import DeleteResult, delete_file_async
  5619. from backend.app.utils.filename import derive_remote_filename
  5620. # Primary candidate: the exact path the dispatcher uploaded to
  5621. # (derived from archive.filename via the same rule as upload).
  5622. # Without it, a library row that ended up with a doubled
  5623. # .gcode.3mf (#1542) leaves the real file behind because the
  5624. # subtask_name + ext fallbacks below don't match what's on the
  5625. # SD card. Fallbacks remain for archive-less prints (subtask
  5626. # never resolved to an archive) and for older naming variants.
  5627. candidate_paths: list[str] = []
  5628. if archive_filename:
  5629. candidate_paths.append(f"/{derive_remote_filename(archive_filename)}")
  5630. for ext in (".3mf", ".gcode"):
  5631. fallback = f"/{subtask_name}{ext}"
  5632. if fallback not in candidate_paths:
  5633. candidate_paths.append(fallback)
  5634. # Three outcomes track across all candidates so the final log
  5635. # line reflects what actually happened. The A1 in #1721 always
  5636. # ends here with ``any_not_found=True`` and the others False
  5637. # — its firmware auto-cleans the SD card before our cleanup
  5638. # runs, every candidate FTP-DELE returns 550, and the old
  5639. # code burned 3 retries × 2 s × 3 candidates per print
  5640. # logging a misleading "may linger" WARNING on a successful
  5641. # print.
  5642. any_deleted = False
  5643. any_real_failure = False
  5644. any_not_found = False
  5645. for remote_path in candidate_paths:
  5646. # Retry only the FAILED case — 550 NOT_FOUND will never
  5647. # recover by waiting, so a "file isn't here" answer
  5648. # advances immediately to the next candidate without
  5649. # consuming the retry budget.
  5650. for attempt in range(1, 4):
  5651. try:
  5652. delete_result = await delete_file_async(
  5653. printer.ip_address,
  5654. printer.access_code,
  5655. remote_path,
  5656. printer_model=printer.model,
  5657. )
  5658. except Exception as e:
  5659. delete_result = DeleteResult.FAILED
  5660. logger.warning(
  5661. "SD card cleanup attempt %d/3 raised for %s: %s",
  5662. attempt,
  5663. remote_path,
  5664. e,
  5665. )
  5666. if delete_result == DeleteResult.DELETED:
  5667. any_deleted = True
  5668. logger.info("Deleted %s from printer %s SD card", remote_path, printer.name)
  5669. break
  5670. if delete_result == DeleteResult.NOT_FOUND:
  5671. any_not_found = True
  5672. break # 550 will not recover; try next candidate
  5673. # FAILED: real error — retry with backoff, then give up
  5674. if attempt < 3:
  5675. await asyncio.sleep(2)
  5676. else:
  5677. any_real_failure = True
  5678. logger.warning(
  5679. "SD card cleanup failed after 3 attempts for %s "
  5680. "(network/auth/transient error — file may linger on SD card)",
  5681. remote_path,
  5682. )
  5683. if not any_deleted and not any_real_failure and any_not_found:
  5684. # Every candidate said "not here." Either the printer
  5685. # firmware swept the SD card itself (common on A1) or the
  5686. # dispatcher's upload path doesn't match our candidate
  5687. # rule. Either way: nothing to clean up, no warning.
  5688. logger.debug(
  5689. "SD card cleanup: nothing to delete on %s — every candidate returned 550 "
  5690. "(printer likely self-cleaned)",
  5691. printer.name,
  5692. )
  5693. except Exception as e:
  5694. logger.warning("SD card file cleanup failed for printer %s: %s", printer_id, e)
  5695. log_timing("SD card cleanup")
  5696. # Update queue item status early — must run before the archive_id early-return
  5697. # so queue items don't get stuck in "printing" when archive lookup fails.
  5698. # Uses run_with_retry to handle SQLite "database is locked" errors (#897).
  5699. queue_item_id = None
  5700. billing_run_id: str | None = None
  5701. billing_user_id: int | None = None
  5702. billing_cost_center_id: int | None = None
  5703. billing_plate_id: int | None = None
  5704. queue_status = None
  5705. queue_auto_off = False
  5706. try:
  5707. from backend.app.core.database import run_with_retry
  5708. from backend.app.models.print_queue import PrintQueueItem
  5709. async def _update_queue_status(db):
  5710. nonlocal billing_run_id, billing_user_id, billing_cost_center_id, billing_plate_id
  5711. nonlocal queue_item_id, queue_status, queue_auto_off
  5712. result = await db.execute(
  5713. select(PrintQueueItem)
  5714. .where(PrintQueueItem.printer_id == printer_id)
  5715. .where(PrintQueueItem.status == "printing")
  5716. )
  5717. printing_items = list(result.scalars().all())
  5718. if len(printing_items) > 1:
  5719. logger.warning(
  5720. "BUG: Multiple queue items in 'printing' status for printer %s: %s",
  5721. printer_id,
  5722. [(i.id, i.archive_id, i.library_file_id) for i in printing_items],
  5723. )
  5724. item = printing_items[0] if printing_items else None
  5725. if item is not None and not await _completion_belongs_to_queue_item(db, item, data):
  5726. return
  5727. if item:
  5728. queue_status = data.get("status", "completed")
  5729. # MQTT sends "aborted" for cancelled prints; normalise to
  5730. # "cancelled" so it matches the queue schema Literal.
  5731. if queue_status == "aborted":
  5732. queue_status = "cancelled"
  5733. item.status = queue_status
  5734. item.completed_at = datetime.now(timezone.utc)
  5735. if queue_status == "failed" and not item.error_message:
  5736. item.error_message = _format_hms_error_summary(data.get("hms_errors") or [])
  5737. # Bump usage counters on the source library file so admins can
  5738. # sort by "last printed" and (eventually) auto-purge stale
  5739. # files — #1008.
  5740. await _bump_library_file_usage_if_completed(db, item, queue_status)
  5741. await db.commit()
  5742. queue_item_id = item.id
  5743. billing_run_id = item.billing_run_id
  5744. billing_user_id = item.created_by_id
  5745. billing_cost_center_id = item.cost_center_id
  5746. billing_plate_id = item.plate_id
  5747. queue_auto_off = item.auto_off_after
  5748. logger.info("Updated queue item %s status to %s", item.id, queue_status)
  5749. await run_with_retry(_update_queue_status, label="queue status update")
  5750. # Post-commit side effects (notifications, MQTT relay, auto-off) use
  5751. # their own sessions and have their own error handling — no retry needed.
  5752. if queue_item_id is not None:
  5753. # Batch orders (#342): this run may have been the last one an order
  5754. # owed. Re-evaluate here rather than lazily on read, so a finished
  5755. # order reports itself complete without someone opening the page.
  5756. try:
  5757. from backend.app.services.print_batch import refresh_batch_status_for_item
  5758. async with async_session() as db:
  5759. await refresh_batch_status_for_item(db, queue_item_id)
  5760. await db.commit()
  5761. except Exception as e:
  5762. logger.warning("[BATCH] Failed to refresh batch status for queue item %s: %s", queue_item_id, e)
  5763. # MQTT relay - publish queue job completed
  5764. try:
  5765. printer_info = printer_manager.get_printer(printer_id)
  5766. await mqtt_relay.on_queue_job_completed(
  5767. job_id=queue_item_id,
  5768. filename=filename or subtask_name,
  5769. printer_id=printer_id,
  5770. printer_name=printer_info.name if printer_info else "Unknown",
  5771. status=queue_status,
  5772. )
  5773. except Exception:
  5774. pass # Don't fail if MQTT fails
  5775. # Check if queue is now empty and send notification
  5776. try:
  5777. from sqlalchemy import func as sa_func
  5778. async with async_session() as db:
  5779. count_result = await db.execute(
  5780. select(sa_func.count(PrintQueueItem.id)).where(PrintQueueItem.status == "pending")
  5781. )
  5782. pending_count = count_result.scalar() or 0
  5783. if pending_count == 0:
  5784. today_start = datetime.now(timezone.utc).replace(hour=0, minute=0, second=0, microsecond=0)
  5785. completed_result = await db.execute(
  5786. select(sa_func.count(PrintQueueItem.id)).where(
  5787. PrintQueueItem.status.in_(["completed", "failed", "skipped"]),
  5788. PrintQueueItem.completed_at >= today_start,
  5789. )
  5790. )
  5791. completed_count = completed_result.scalar() or 1
  5792. await notification_service.on_queue_completed(
  5793. completed_count=completed_count,
  5794. db=db,
  5795. )
  5796. except Exception:
  5797. pass # Don't fail if notification fails
  5798. # Handle auto_off_after - power off printer if the queue item opted
  5799. # in. Delegates to the smart-plug manager so the off honours each
  5800. # plug's configured strategy (time delay or temperature threshold),
  5801. # is cancelled if the printer starts printing again, and never cuts
  5802. # power on a loaded print (#1890). Previously an inline block here
  5803. # hardcoded a 50°C / 600s cooldown wait and powered off on the
  5804. # timeout regardless of print state — cutting a touchscreen reprint.
  5805. if queue_auto_off:
  5806. try:
  5807. async with async_session() as db:
  5808. await smart_plug_manager.schedule_off_after_queue_job(printer_id, db)
  5809. except Exception as e:
  5810. logger.warning("Failed to schedule queue auto-off for printer %s: %s", printer_id, e)
  5811. except Exception as e:
  5812. logging.getLogger(__name__).warning(f"Queue item update failed: {e}")
  5813. log_timing("Queue item update")
  5814. # Register bed cooldown waiter (event-driven via on_bed_temp_update callback).
  5815. # Must run before archive_id early-return so it fires for all prints (including
  5816. # prints started from BambuStudio/touchscreen that have no archive).
  5817. if data.get("status") == "completed":
  5818. try:
  5819. from backend.app.api.routes.settings import get_setting
  5820. async with async_session() as db:
  5821. threshold_str = await get_setting(db, "bed_cooled_threshold")
  5822. threshold = float(threshold_str) if threshold_str else 35.0
  5823. # Check if any provider has on_bed_cooled enabled (skip registration if none)
  5824. async with async_session() as db:
  5825. providers = await notification_service._get_providers_for_event(db, "on_bed_cooled", printer_id)
  5826. if providers:
  5827. _bed_cool_waiters[printer_id] = {
  5828. "threshold": threshold,
  5829. "filename": filename or subtask_name or "",
  5830. "registered_at": time.time(),
  5831. }
  5832. logger.info(
  5833. "[BED-COOL] Registered waiter for printer %s (threshold: %.0f°C)",
  5834. printer_id,
  5835. threshold,
  5836. )
  5837. else:
  5838. logger.debug("[BED-COOL] No providers enabled for bed_cooled on printer %s", printer_id)
  5839. except Exception as e:
  5840. logger.warning("[BED-COOL] Failed to register waiter: %s", e)
  5841. # Capture the slicer estimate before usage tracking runs. The tracker may
  5842. # update archive.cost with this run's measured cost; billing partial runs
  5843. # against that already-partial value would discount the charge twice.
  5844. billing_planned_grams: float | None = None
  5845. billing_base_cost: float | None = None
  5846. if archive_id:
  5847. try:
  5848. async with async_session() as db:
  5849. from backend.app.models.archive import PrintArchive
  5850. billing_archive = await db.get(PrintArchive, archive_id)
  5851. if billing_archive:
  5852. billing_path = (
  5853. app_settings.base_dir / billing_archive.file_path if billing_archive.file_path else None
  5854. ) # SEC-PATH-OK: archive.file_path is DB-stored, internally generated
  5855. billing_planned_grams, billing_base_cost = _plate_scoped_run_estimate(
  5856. billing_archive,
  5857. billing_path,
  5858. billing_plate_id if billing_plate_id is not None else _get_start_plate_id(archive_id),
  5859. )
  5860. except Exception as e:
  5861. logger.warning("[FINANCE] Failed to capture planned usage for archive %s: %s", archive_id, e)
  5862. # --- Track filament consumption (must run before archive_id early-return so usage
  5863. # is recorded even when auto-archive is disabled) ---
  5864. usage_results: list[dict] = []
  5865. # Prefer ams_mapping captured from MQTT request topic (works for all print sources)
  5866. stored_ams_mapping = data.get("ams_mapping")
  5867. # Fallback to _print_ams_mappings for queue/reprint (set before print starts)
  5868. if not stored_ams_mapping and archive_id:
  5869. stored_ams_mapping = _print_ams_mappings.pop(archive_id, None)
  5870. # Always drain the plate_id register on completion — the session already
  5871. # consumed it at print-start injection; leaving it would leak into the next
  5872. # print on the same archive_id (rare but possible with reprints) (#1697).
  5873. # Capture the popped value so the completion notification can scope the
  5874. # archive-level (summed-across-plates per #1593) filament + time totals
  5875. # down to the single plate that was actually printed (#1785).
  5876. notify_plate_id: int | None = None
  5877. if archive_id:
  5878. notify_plate_id = _print_plate_ids.pop(archive_id, None)
  5879. # Internal inventory: track AMS remain% deltas (skip if Spoolman handles usage)
  5880. try:
  5881. async with async_session() as db:
  5882. from backend.app.api.routes.settings import get_setting
  5883. _spoolman_on = await get_setting(db, "spoolman_enabled")
  5884. if not _spoolman_on or _spoolman_on.lower() != "true":
  5885. from backend.app.services.usage_tracker import on_print_complete as usage_on_print_complete
  5886. async with async_session() as db:
  5887. usage_results = await usage_on_print_complete(
  5888. printer_id,
  5889. data,
  5890. printer_manager,
  5891. db,
  5892. archive_id=archive_id,
  5893. ams_mapping=stored_ams_mapping,
  5894. )
  5895. if usage_results:
  5896. await ws_manager.broadcast(
  5897. {
  5898. "type": "spool_usage_logged",
  5899. "printer_id": printer_id,
  5900. "usage": usage_results,
  5901. }
  5902. )
  5903. log_timing("Usage tracker")
  5904. except Exception as e:
  5905. logger.warning("Usage tracker on_print_complete failed: %s", e)
  5906. # Drop the print-start context unconditionally — the Spoolman branch above
  5907. # skips the internal tracker entirely, so nothing else would clear what
  5908. # print start captured, and a row surviving its print would be restored
  5909. # onto the next one after a restart.
  5910. try:
  5911. from backend.app.services.usage_tracker import discard_session
  5912. async with async_session() as db:
  5913. await discard_session(db, printer_id)
  5914. except Exception as e:
  5915. logger.warning("Failed to clear persisted print session for printer %s: %s", printer_id, e)
  5916. # Spoolman: report filament usage (requires archive_id for tracking data lookup)
  5917. if archive_id:
  5918. if data.get("status") == "completed":
  5919. try:
  5920. await _report_spoolman_usage(printer_id, archive_id)
  5921. log_timing("Spoolman usage report")
  5922. except Exception as e:
  5923. logger.warning("Spoolman usage reporting failed: %s", e)
  5924. else:
  5925. # Report partial usage if tracking data exists (only stored when weight sync is disabled)
  5926. try:
  5927. async with async_session() as db:
  5928. await _cleanup_spoolman_tracking(
  5929. printer_id,
  5930. archive_id,
  5931. db,
  5932. last_layer_num=data.get("last_layer_num"),
  5933. last_progress=data.get("last_progress"),
  5934. )
  5935. except Exception as e:
  5936. logger.debug("[SPOOLMAN] Cleanup failed: %s", e)
  5937. log_timing("Filament usage tracking")
  5938. if not archive_id:
  5939. # The printer's own calibration run has no archive by design, so this
  5940. # arrives here every time one finishes. Returning before the no-archive
  5941. # notification is not just noise control: that path attributes an
  5942. # unmatched completion to any queue item this printer finished in the
  5943. # last five minutes, which for a calibration that runs alongside a real
  5944. # print means emailing its owner that their print is done, twice and
  5945. # early. Everything above this point has already run — the plate-clear
  5946. # gate, the queue reconciliation, the SD-card cleanup — so only the
  5947. # notification is skipped.
  5948. if is_internal_printer_job(filename, subtask_name):
  5949. logger.info(
  5950. "[CALLBACK] Internal printer job completed, no notification: filename=%s, subtask=%s",
  5951. filename,
  5952. subtask_name,
  5953. )
  5954. return
  5955. logger.warning("Could not find archive for print complete: filename=%s, subtask=%s", filename, subtask_name)
  5956. # Still send print-complete/failed/stopped notifications even without an archive.
  5957. # Try to enrich with queue/library-file data so user-specific emails work too.
  5958. async def _notify_no_archive():
  5959. try:
  5960. async with async_session() as db:
  5961. from backend.app.models.library import LibraryFile
  5962. from backend.app.models.print_queue import PrintQueueItem
  5963. from backend.app.models.printer import Printer
  5964. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  5965. printer_obj = result.scalar_one_or_none()
  5966. p_name = printer_obj.name if printer_obj else f"Printer {printer_id}"
  5967. # Try to find the most-recent queue item for this printer so we can
  5968. # recover created_by_id and estimated print time.
  5969. # NOTE: By the time this task runs the queue item status has already
  5970. # been updated to a terminal state (completed/failed/cancelled), so
  5971. # we look for recently-completed items (within the last 5 minutes).
  5972. no_archive_data: dict | None = None
  5973. try:
  5974. cutoff = datetime.now(timezone.utc) - timedelta(minutes=5)
  5975. q_result = await db.execute(
  5976. select(PrintQueueItem)
  5977. .where(PrintQueueItem.printer_id == printer_id)
  5978. .where(PrintQueueItem.status.in_(["completed", "failed", "cancelled"]))
  5979. .where(PrintQueueItem.completed_at >= cutoff)
  5980. .order_by(PrintQueueItem.completed_at.desc())
  5981. .limit(1)
  5982. )
  5983. queue_item = q_result.scalar_one_or_none()
  5984. if queue_item:
  5985. no_archive_data = {"created_by_id": queue_item.created_by_id}
  5986. # Pull estimated time from library file when available
  5987. if queue_item.library_file_id:
  5988. lib_result = await db.execute(
  5989. select(LibraryFile).where(LibraryFile.id == queue_item.library_file_id)
  5990. )
  5991. lib_file = lib_result.scalar_one_or_none()
  5992. if lib_file and lib_file.print_time_seconds:
  5993. no_archive_data["print_time_seconds"] = lib_file.print_time_seconds
  5994. except Exception as lookup_err:
  5995. logger.debug(
  5996. "[NOTIFY-BG] Could not look up queue item for no-archive notification: %s", lookup_err
  5997. )
  5998. # Enrich with usage tracker results (captured in enclosing scope)
  5999. if usage_results:
  6000. if no_archive_data is None:
  6001. no_archive_data = {}
  6002. total_from_usage = sum(r.get("weight_used", 0) for r in usage_results)
  6003. if total_from_usage > 0:
  6004. no_archive_data["actual_filament_grams"] = round(total_from_usage, 1)
  6005. no_archive_data["usage_results"] = usage_results
  6006. # Try MQTT remaining_time for print duration when no queue/library data
  6007. if no_archive_data and not no_archive_data.get("print_time_seconds"):
  6008. mqtt_remaining = data.get("remaining_time")
  6009. if mqtt_remaining and isinstance(mqtt_remaining, (int, float)) and mqtt_remaining > 0:
  6010. no_archive_data["print_time_seconds"] = int(mqtt_remaining)
  6011. ps = data.get("status", "completed")
  6012. logger.info(
  6013. "[NOTIFY-BG] Sending notification without archive: printer=%s, status=%s", printer_id, ps
  6014. )
  6015. if not await _kill_switch_notification_already_sent(kill_switch_notification_task):
  6016. await notification_service.on_print_complete(
  6017. printer_id, p_name, ps, data, db, archive_data=no_archive_data
  6018. )
  6019. else:
  6020. logger.info("[NOTIFY-BG] Skipped duplicate kill-switch provider notification")
  6021. # Send user-specific email if we have a created_by_id
  6022. if no_archive_data and no_archive_data.get("created_by_id"):
  6023. raw_filename = data.get("subtask_name") or data.get("filename", "Unknown")
  6024. await _dispatch_user_print_email(
  6025. ps,
  6026. no_archive_data["created_by_id"],
  6027. p_name,
  6028. raw_filename,
  6029. db,
  6030. )
  6031. logger.info("[NOTIFY-BG] Completed (no-archive path)")
  6032. except Exception as e:
  6033. logger.warning("[NOTIFY-BG] Failed to send notification without archive: %s", e, exc_info=True)
  6034. spawn_background_task(_notify_no_archive(), name="notify-no-archive")
  6035. return
  6036. log_timing("Archive lookup")
  6037. # Update archive status
  6038. logger.info("[ARCHIVE] Updating archive %s status...", archive_id)
  6039. try:
  6040. async with async_session() as db:
  6041. service = ArchiveService(db)
  6042. status = data.get("status", "completed")
  6043. hms_errors = data.get("hms_errors", []) if status == "failed" else None
  6044. if hms_errors:
  6045. logger.info("[ARCHIVE] HMS errors at failure: %s", hms_errors)
  6046. failure_reason = derive_failure_reason(status, hms_errors)
  6047. if data.get("_reconciled"):
  6048. # A reconciled completion closes out a stale archive at
  6049. # reconnect — it is not a user action, so don't mislabel it
  6050. # "User cancelled". The "Stale" prefix matches the existing
  6051. # stale-cleanup convention and records that the real end time
  6052. # is unknown, which is also why its logged duration is 0 (#2592).
  6053. failure_reason = "Stale - reconciled after reconnect, end time unknown"
  6054. if failure_reason:
  6055. logger.info("[ARCHIVE] failure_reason=%r (status=%s)", failure_reason, status)
  6056. elif status == "failed" and hms_errors:
  6057. logger.info("[ARCHIVE] HMS errors present but none matched a known failure-reason short code")
  6058. await service.update_archive_status(
  6059. archive_id,
  6060. status=status,
  6061. completed_at=(
  6062. datetime.now(timezone.utc) if status in ("completed", "failed", "aborted", "cancelled") else None
  6063. ),
  6064. failure_reason=failure_reason,
  6065. )
  6066. logger.info(
  6067. "[ARCHIVE] Archive %s status updated to %s, failure_reason=%s", archive_id, status, failure_reason
  6068. )
  6069. await ws_manager.send_archive_updated(
  6070. {
  6071. "id": archive_id,
  6072. "status": status,
  6073. }
  6074. )
  6075. logger.info("[ARCHIVE] WebSocket notification sent for archive %s", archive_id)
  6076. # MQTT relay - publish archive updated
  6077. try:
  6078. await mqtt_relay.on_archive_updated(
  6079. archive_id=archive_id,
  6080. print_name=filename or subtask_name,
  6081. status=status,
  6082. )
  6083. except Exception:
  6084. pass # Don't fail if MQTT fails
  6085. except Exception as e:
  6086. logger.error("[ARCHIVE] Failed to update archive %s status: %s", archive_id, e, exc_info=True)
  6087. # Continue with other operations even if archive update fails
  6088. log_timing("Archive status update")
  6089. # Apply finance wallet charge or release reservations once. For all partial
  6090. # terminal states (failed, aborted at the printer display, or cancelled via
  6091. # Bambuddy) use this run's measured spool delta, falling back to the last
  6092. # valid printer progress. PrintArchive.filament_used_grams is the slicer
  6093. # estimate and therefore cannot represent an interrupted run.
  6094. try:
  6095. if data.get("status") in ("completed", "failed", "aborted", "cancelled"):
  6096. async with async_session() as db:
  6097. from backend.app.models.archive import PrintArchive
  6098. from backend.app.services.finance_billing import apply_print_charge_for_archive
  6099. archive = await db.get(PrintArchive, archive_id)
  6100. if archive and billing_run_id is None:
  6101. billing_run_id = getattr(archive, "billing_run_id", None)
  6102. if archive and archive.created_by_id is None and _print_user_info:
  6103. archive.created_by_id = _print_user_info.get("user_id")
  6104. await db.flush()
  6105. run_status = data.get("status", "completed")
  6106. last_progress = data.get("last_progress")
  6107. if last_progress is None:
  6108. last_progress = data.get("progress")
  6109. actual_run_grams = _compute_run_filament_grams(
  6110. run_status,
  6111. billing_planned_grams,
  6112. last_progress,
  6113. usage_results,
  6114. )
  6115. filament_usage = (actual_run_grams, billing_planned_grams) if run_status != "completed" else None
  6116. in_memory_cost_center_id = _print_cost_center_ids.pop(archive_id, None)
  6117. charged = await apply_print_charge_for_archive(
  6118. db,
  6119. archive_id,
  6120. charged_user_id=billing_user_id,
  6121. cost_center_id=(
  6122. billing_cost_center_id if billing_cost_center_id is not None else in_memory_cost_center_id
  6123. ),
  6124. print_queue_id=queue_item_id,
  6125. print_run_id=billing_run_id,
  6126. base_cost_override=billing_base_cost,
  6127. filament_usage=filament_usage,
  6128. )
  6129. await db.commit()
  6130. if charged:
  6131. logger.info("[FINANCE] Applied print charge for archive %s", archive_id)
  6132. except Exception as e:
  6133. logger.warning("[FINANCE] Failed to apply print charge for archive %s: %s", archive_id, e)
  6134. printer_info = printer_manager.get_printer(printer_id)
  6135. billing_printer_name = printer_info.name if printer_info else f"Printer {printer_id}"
  6136. billing_filename = filename or subtask_name or "Unknown"
  6137. billing_error = str(e)
  6138. try:
  6139. await ws_manager.broadcast(
  6140. {
  6141. "type": "billing_charge_failed",
  6142. "printer_id": printer_id,
  6143. "printer_name": billing_printer_name,
  6144. "filename": billing_filename,
  6145. "archive_id": archive_id,
  6146. }
  6147. )
  6148. except Exception as notification_error:
  6149. logger.error(
  6150. "[FINANCE] Failed to broadcast billing error for archive %s: %s",
  6151. archive_id,
  6152. notification_error,
  6153. )
  6154. async def _notify_billing_charge_failed() -> None:
  6155. try:
  6156. async with async_session() as notification_db:
  6157. await notification_service.on_billing_charge_failed(
  6158. printer_id,
  6159. billing_printer_name,
  6160. billing_filename,
  6161. archive_id,
  6162. billing_error,
  6163. notification_db,
  6164. )
  6165. except Exception as provider_error:
  6166. logger.error(
  6167. "[FINANCE] Failed to send provider billing alert for archive %s: %s",
  6168. archive_id,
  6169. provider_error,
  6170. exc_info=True,
  6171. )
  6172. spawn_background_task(
  6173. _notify_billing_charge_failed(),
  6174. name=f"billing-charge-failed-{archive_id}",
  6175. )
  6176. log_timing("Finance charge update")
  6177. # Write independent print log entry (separate table, never touches archives)
  6178. try:
  6179. async with async_session() as db:
  6180. from backend.app.models.archive import PrintArchive
  6181. from backend.app.services.print_log import write_log_entry
  6182. archive = await db.get(PrintArchive, archive_id)
  6183. if archive:
  6184. # Back-fill created_by_id on reprint (#730): reprint reuses the
  6185. # source archive row rather than creating a new one, so an
  6186. # archive that was auto-created from a printer-initiated
  6187. # print (created_by_id=NULL) would otherwise stay unattributed
  6188. # forever. When we have a print-session user AND the archive
  6189. # has no attribution yet, credit the current user. Never
  6190. # overwrite an existing attribution — the original uploader
  6191. # keeps ownership.
  6192. _print_user_id = _print_user_info.get("user_id") if _print_user_info else None
  6193. if archive.created_by_id is None and _print_user_id is not None:
  6194. archive.created_by_id = _print_user_id
  6195. p_info = printer_manager.get_printer(printer_id)
  6196. # Per-run actuals — written to PrintLogEntry so stats reflect
  6197. # what THIS print actually used, not the source archive's
  6198. # first-run values (#1378). Helper handles the partial-print
  6199. # math (failed / cancelled / stopped get scaled to progress
  6200. # or to tracked spool deltas).
  6201. _run_status = data.get("status", "completed")
  6202. # #2614: scope the per-run estimate to the printed plate. For a
  6203. # multi-plate 3MF dispatched one plate at a time, the archive's
  6204. # filament/cost are the whole-file totals; the PrintLogEntry must
  6205. # reflect only this plate. No effect on single-plate archives (the
  6206. # plate estimate equals the whole-file value) or on the tracker
  6207. # path (measured spool deltas win in _compute_run_filament_grams).
  6208. _est_full_path = (
  6209. app_settings.base_dir / archive.file_path if archive.file_path else None
  6210. ) # SEC-PATH-OK: archive.file_path is DB-stored, internally generated
  6211. _est_grams, _est_cost = _plate_scoped_run_estimate(archive, _est_full_path)
  6212. _run_grams = _compute_run_filament_grams(
  6213. _run_status,
  6214. _est_grams,
  6215. data.get("last_progress", data.get("progress")),
  6216. usage_results,
  6217. )
  6218. # Per-run cost — prefer usage_results sum. For partial prints
  6219. # we deliberately skip the topup-to-estimate logic in
  6220. # usage_tracker (which assumes the print completed); the raw
  6221. # tracked-spool sum is closer to what THIS run actually cost.
  6222. _run_cost: float | None = None
  6223. if usage_results:
  6224. _run_cost = sum(r.get("cost") or 0 for r in usage_results) or None
  6225. if _run_cost is None and _run_status == "completed":
  6226. _run_cost = _est_cost
  6227. await write_log_entry(
  6228. db,
  6229. archive_id=archive.id,
  6230. # Captured by _update_queue_status above; None for
  6231. # printer-initiated prints with no queue row. Batch
  6232. # cost/energy roll-up joins on it (#342).
  6233. queue_item_id=queue_item_id,
  6234. status=_run_status,
  6235. print_name=archive.print_name,
  6236. printer_name=p_info.name if p_info else None,
  6237. printer_id=printer_id,
  6238. started_at=archive.started_at,
  6239. completed_at=archive.completed_at,
  6240. filament_type=archive.filament_type,
  6241. filament_color=archive.filament_color,
  6242. filament_used_grams=_run_grams,
  6243. cost=_run_cost,
  6244. failure_reason=archive.failure_reason,
  6245. thumbnail_path=archive.thumbnail_path,
  6246. created_by_id=archive.created_by_id,
  6247. created_by_username=_print_user_info.get("username") if _print_user_info else None,
  6248. # Reconciled completions have an unknown real end time —
  6249. # log 0 duration instead of the whole disconnect gap (#2592).
  6250. reconciled=bool(data.get("_reconciled")),
  6251. )
  6252. await db.commit()
  6253. logger.info("[PRINT_LOG] Log entry written for archive %s", archive_id)
  6254. except Exception as e:
  6255. logger.warning("[PRINT_LOG] Failed to write log entry for archive %s: %s", archive_id, e)
  6256. log_timing("Print log entry")
  6257. # Run slow operations as background tasks to avoid blocking the event loop
  6258. # These operations can take 5-10+ seconds and would freeze the UI if awaited
  6259. async def _background_energy_calculation():
  6260. """Calculate and save energy usage in background.
  6261. Reads the starting kWh from the archive row (#941: persisted so a mid-print
  6262. backend restart no longer loses per-print energy data).
  6263. """
  6264. try:
  6265. logger.info("[ENERGY-BG] Starting energy calculation for archive %s", archive_id)
  6266. async with async_session() as db:
  6267. from backend.app.models.archive import PrintArchive
  6268. archive = await db.get(PrintArchive, archive_id)
  6269. if archive is None:
  6270. logger.warning("[ENERGY-BG] Archive %s no longer exists", archive_id)
  6271. return
  6272. starting_kwh = archive.energy_start_kwh
  6273. if starting_kwh is None:
  6274. logger.info("[ENERGY-BG] No start kWh recorded for archive %s", archive_id)
  6275. return
  6276. candidates = await energy_plug_candidates(db, printer_id)
  6277. if not candidates:
  6278. logger.info("[ENERGY-BG] No smart plug for printer %s", printer_id)
  6279. return
  6280. # Same ordering as the start reading, so the delta below is
  6281. # against the counter that produced `starting_kwh` (#2859).
  6282. selected = await select_energy_reading(candidates, _get_plug_energy, db)
  6283. if selected is None:
  6284. logger.warning(
  6285. "[ENERGY-BG] No plug on printer %s reports a lifetime energy counter (tried: %s)",
  6286. printer_id,
  6287. ", ".join(plug.name for plug in candidates),
  6288. )
  6289. return
  6290. plug, energy = selected
  6291. logger.info("[ENERGY-BG] Energy response from plug '%s': %s", plug.name, energy)
  6292. energy_used = round(energy["total"] - starting_kwh, 4)
  6293. logger.info("[ENERGY-BG] Per-print energy: %s kWh", energy_used)
  6294. if energy_used < 0:
  6295. logger.warning(
  6296. "[ENERGY-BG] Negative energy delta for archive %s (start=%s, end=%s) — counter reset?",
  6297. archive_id,
  6298. starting_kwh,
  6299. energy["total"],
  6300. )
  6301. return
  6302. from backend.app.api.routes.settings import get_setting
  6303. energy_cost_per_kwh = await get_setting(db, "energy_cost_per_kwh")
  6304. cost_per_kwh = float(energy_cost_per_kwh) if energy_cost_per_kwh else 0.15
  6305. energy_cost_value = round(energy_used * cost_per_kwh, 3)
  6306. # First-run-only overwrite of archive.energy_kwh / energy_cost so a
  6307. # reprint doesn't visually clobber the source archive's energy data
  6308. # (#1378). Reprint energy lives in the matching PrintLogEntry below.
  6309. from sqlalchemy import func
  6310. from backend.app.models.print_log import PrintLogEntry
  6311. existing_runs = await db.scalar(
  6312. select(func.count(PrintLogEntry.id)).where(PrintLogEntry.archive_id == archive_id)
  6313. )
  6314. if (existing_runs or 0) <= 1:
  6315. # 0 = legacy archive that pre-dates per-run logging; 1 = the row
  6316. # we just wrote for THIS print. Either way it's the first run.
  6317. archive.energy_kwh = energy_used
  6318. archive.energy_cost = energy_cost_value
  6319. # Backfill the latest PrintLogEntry for this archive with energy
  6320. # (write_log_entry above ran before this background task completed,
  6321. # so energy fields are still NULL on that row).
  6322. latest_run = await db.execute(
  6323. select(PrintLogEntry)
  6324. .where(PrintLogEntry.archive_id == archive_id)
  6325. .order_by(PrintLogEntry.id.desc())
  6326. .limit(1)
  6327. )
  6328. run_row = latest_run.scalar_one_or_none()
  6329. if run_row is not None:
  6330. run_row.energy_kwh = energy_used
  6331. run_row.energy_cost = energy_cost_value
  6332. await db.commit()
  6333. logger.info("[ENERGY-BG] Saved: %s kWh, cost=%s", energy_used, energy_cost_value)
  6334. except Exception as e:
  6335. logger.warning("[ENERGY-BG] Failed: %s", e)
  6336. async def _background_finish_photo() -> str | None:
  6337. """Capture finish photo in background. Returns photo filename if captured."""
  6338. # #2547: set once this function has raised the plate itself (the
  6339. # timelapse path, where the moment producer returned without doing it).
  6340. # Declared out here so the `finally` can lower it again no matter where
  6341. # the capture below fails.
  6342. plate_restored_z: float | None = None
  6343. try:
  6344. logger.info("[PHOTO-BG] Starting finish photo capture for archive %s", archive_id)
  6345. from backend.app.api.routes.camera import _active_chamber_streams, _active_streams, get_buffered_frame
  6346. # Read phase: settings + printer + archive in a short session, released
  6347. # BEFORE the capture pipeline below. The capture (timelapse last-frame,
  6348. # stage-22 wait, external-camera grab, or a fresh RTSP shot) can take
  6349. # tens of seconds; holding this session across it pinned one pooled
  6350. # connection idle-in-transaction per finishing print (issue #2572).
  6351. async with async_session() as db:
  6352. from backend.app.api.routes.settings import get_setting
  6353. from backend.app.models.archive import PrintArchive
  6354. from backend.app.models.printer import Printer
  6355. capture_enabled = await get_setting(db, "capture_finish_photo")
  6356. if capture_enabled is not None and capture_enabled.lower() != "true":
  6357. return None
  6358. if not archive_id:
  6359. return None
  6360. printer = (await db.execute(select(Printer).where(Printer.id == printer_id))).scalar_one_or_none()
  6361. archive = (
  6362. await db.execute(select(PrintArchive).where(PrintArchive.id == archive_id))
  6363. ).scalar_one_or_none()
  6364. if not printer or not archive:
  6365. return None
  6366. import uuid
  6367. from datetime import datetime
  6368. from backend.app.utils.archive_paths import archive_dir as resolve_archive_dir
  6369. if not archive.file_path:
  6370. logger.warning("[PHOTO-BG] Archive %s has no file_path, using fallback dir", archive_id)
  6371. archive_dir = resolve_archive_dir(archive)
  6372. photo_filename = None
  6373. # Prefer the timelapse last-frame source when a timelapse was
  6374. # recording — it captures the moment after the toolhead parks
  6375. # but before the bed drops, which the live-camera grab below
  6376. # would miss (#1397). Skipped for external cameras (those have
  6377. # their own framing and don't see a Bambu timelapse). Only
  6378. # runs when the USER explicitly enabled timelapse for this
  6379. # print — #1721 removed Bambuddy's force-on at dispatch
  6380. # because it caused per-layer nozzle parking on Smooth-mode
  6381. # slicer profiles.
  6382. prefer_timelapse_source = bool(data.get("timelapse_was_active")) and not (
  6383. printer.external_camera_enabled and printer.external_camera_url
  6384. )
  6385. timelapse_still_pending = False
  6386. if prefer_timelapse_source:
  6387. photo_filename, timelapse_still_pending = await _capture_finish_photo_from_timelapse(
  6388. archive_id=archive_id,
  6389. archive_dir=archive_dir,
  6390. rotation=getattr(printer, "camera_rotation", 0),
  6391. )
  6392. # #1721: replacement framing path — on_finish_photo_moment
  6393. # pre-captured a frame at the stage-22 / FINISH edge (toolhead
  6394. # parked, bed not yet dropped) and cached the JPEG bytes in
  6395. # _stage22_finish_frames. Consume them now so the saved photo
  6396. # has the better framing instead of the post-bed-drop angle
  6397. # the live-camera fallback below would give.
  6398. if not photo_filename:
  6399. # #1790: on the FINISH-state fallback path the producer
  6400. # task is dispatched back-to-back with this consumer, so
  6401. # a bare pop would race past with an empty result and
  6402. # the RTSP fallback below would collide with the
  6403. # producer's still-in-flight grab (single-client RTSP
  6404. # on Bambu printers). Wait for the producer to finish
  6405. # or give up before touching the cache.
  6406. #
  6407. # #2547: 20s was enough when the producer only ever grabbed a
  6408. # frame. It now also raises the plate first, which costs the
  6409. # settle window before the grab even starts — so the budget has
  6410. # to cover settle + a worst-case 15s RTSP timeout, and still sit
  6411. # under the notification's own photo wait below.
  6412. in_flight = _stage22_finish_in_flight.pop(printer_id, None)
  6413. if in_flight is not None:
  6414. try:
  6415. await asyncio.wait_for(in_flight.wait(), timeout=_FINISH_PHOTO_PRODUCER_WAIT_SECONDS)
  6416. except asyncio.TimeoutError:
  6417. logger.warning(
  6418. "[PHOTO-BG] timed out waiting for stage-22 producer for printer %s — proceeding to fallback",
  6419. printer_id,
  6420. )
  6421. cached_frame = _stage22_finish_frames.pop(printer_id, None)
  6422. if cached_frame:
  6423. # Already rotated by the producer (#2708) — rotating again
  6424. # here would undo the fix on the banked-frame path, whose
  6425. # bytes reach the cache having been rotated once already.
  6426. photos_dir = archive_dir / "photos"
  6427. photos_dir.mkdir(parents=True, exist_ok=True)
  6428. timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
  6429. photo_filename = f"finish_{timestamp}_{uuid.uuid4().hex[:8]}.jpg"
  6430. photo_path = photos_dir / photo_filename
  6431. await asyncio.to_thread(photo_path.write_bytes, cached_frame)
  6432. logger.info(
  6433. "[PHOTO-BG] Saved stage-22 pre-captured frame: %s (%d bytes)",
  6434. photo_filename,
  6435. len(cached_frame),
  6436. )
  6437. # #2547: the timelapse path reaches the live grab below whenever the
  6438. # video hasn't landed in time — the documented usual outcome on
  6439. # P1-series, where transfers are slowest. `on_finish_photo_moment`
  6440. # returned early for those prints without raising the plate, so
  6441. # without this the photo that actually ships in the notification is
  6442. # of an already-dropped plate: exactly the framing #1145/#1397/#1565
  6443. # asked us to fix. The archive still gets the better video frame
  6444. # later; this is about the image the user is sent.
  6445. #
  6446. # Gated on `timelapse_was_active` precisely because that is the
  6447. # condition under which the producer skipped. On every other path it
  6448. # has already raised and lowered the plate, and repeating that here
  6449. # would be a second pointless round trip.
  6450. if (
  6451. not photo_filename
  6452. and data.get("timelapse_was_active")
  6453. and not print_dispatch_context.end_gcode_injected(printer_id)
  6454. ):
  6455. try:
  6456. async with async_session() as db:
  6457. from backend.app.api.routes.settings import get_setting
  6458. restore_setting = await get_setting(db, "finish_photo_restore_plate")
  6459. if restore_setting is None or restore_setting.lower() == "true":
  6460. max_z = await _max_z_for_current_print(printer_id, data, logger)
  6461. if max_z is not None and not await _plate_restore_is_blocked_by_queue(printer_id):
  6462. if await _restore_plate_for_finish_photo(printer_id, max_z, logger):
  6463. plate_restored_z = max_z
  6464. except Exception as e:
  6465. logger.warning("[PLATE-RESTORE] printer %s: restore failed: %s", printer_id, e)
  6466. # Fallback chain: external camera → buffered live frame →
  6467. # fresh RTSP capture. Only runs if the timelapse path above
  6468. # didn't already produce a photo.
  6469. if not photo_filename:
  6470. if printer.external_camera_enabled and printer.external_camera_url:
  6471. logger.info("[PHOTO-BG] Using external camera")
  6472. from backend.app.api.routes.camera import live_frame_for_capture
  6473. from backend.app.services.external_camera import capture_frame
  6474. # #2707: the second half of the finish-photo failure — the
  6475. # pre-capture and this fallback both collided with the live
  6476. # view. None here continues down the fallback chain.
  6477. defer, buffered = live_frame_for_capture(printer_id)
  6478. if defer:
  6479. frame_data = buffered
  6480. else:
  6481. frame_data = await capture_frame(
  6482. printer.external_camera_url,
  6483. printer.external_camera_type or "mjpeg",
  6484. snapshot_url=printer.external_camera_snapshot_url,
  6485. )
  6486. if frame_data:
  6487. frame_data = _apply_camera_rotation(frame_data, printer, logger)
  6488. photos_dir = archive_dir / "photos"
  6489. photos_dir.mkdir(parents=True, exist_ok=True)
  6490. timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
  6491. photo_filename = f"finish_{timestamp}_{uuid.uuid4().hex[:8]}.jpg"
  6492. photo_path = photos_dir / photo_filename
  6493. await asyncio.to_thread(photo_path.write_bytes, frame_data)
  6494. logger.info("[PHOTO-BG] Saved external camera frame: %s", photo_filename)
  6495. else:
  6496. # Check if camera stream is active - use buffered frame to avoid freeze
  6497. # Check both RTSP streams (_active_streams) and chamber image streams (_active_chamber_streams)
  6498. active_for_printer = [k for k in _active_streams if k.startswith(f"{printer_id}-")]
  6499. active_chamber_for_printer = [k for k in _active_chamber_streams if k.startswith(f"{printer_id}-")]
  6500. buffered_frame = get_buffered_frame(printer_id)
  6501. if (active_for_printer or active_chamber_for_printer) and buffered_frame:
  6502. # Use frame from active stream
  6503. logger.info("[PHOTO-BG] Using buffered frame from active stream")
  6504. buffered_frame = _apply_camera_rotation(buffered_frame, printer, logger)
  6505. photos_dir = archive_dir / "photos"
  6506. photos_dir.mkdir(parents=True, exist_ok=True)
  6507. timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
  6508. photo_filename = f"finish_{timestamp}_{uuid.uuid4().hex[:8]}.jpg"
  6509. photo_path = photos_dir / photo_filename
  6510. await asyncio.to_thread(photo_path.write_bytes, buffered_frame)
  6511. logger.info("[PHOTO-BG] Saved buffered frame: %s", photo_filename)
  6512. else:
  6513. # No active stream - capture new frame
  6514. from backend.app.services.camera import capture_finish_photo
  6515. photo_filename = await capture_finish_photo(
  6516. printer_id=printer_id,
  6517. ip_address=printer.ip_address,
  6518. access_code=printer.access_code,
  6519. model=printer.model,
  6520. archive_dir=archive_dir,
  6521. rotation=getattr(printer, "camera_rotation", 0),
  6522. )
  6523. # Write phase: attach the photo in a fresh short-lived session.
  6524. if photo_filename:
  6525. async with async_session() as db:
  6526. from backend.app.models.archive import PrintArchive
  6527. arch = await db.get(PrintArchive, archive_id)
  6528. if arch is not None:
  6529. photos = arch.photos or []
  6530. photos.append(photo_filename)
  6531. arch.photos = photos
  6532. await db.commit()
  6533. logger.info("[PHOTO-BG] Saved: %s", photo_filename)
  6534. # The short wait above is bounded so a slow printer can't hold up
  6535. # the print-complete notification, which is what the caller is
  6536. # blocking on. When it ran out with the video still on its way,
  6537. # keep waiting off to the side and add the better frame to the
  6538. # archive once it arrives (#2704 follow-up) — otherwise P1-series
  6539. # users, whose videos routinely take minutes to transfer, never get
  6540. # the pre-bed-drop framing this path exists to provide.
  6541. #
  6542. # Spawned here rather than at the point the wait gave up: both this
  6543. # function and the upgrade do a read-modify-write on `photos`, and
  6544. # the live-camera fallback above can take tens of seconds. Starting
  6545. # the upgrade before that write means the two can interleave and one
  6546. # silently drops the other's entry, leaving a JPEG on disk that the
  6547. # gallery never lists.
  6548. if timelapse_still_pending:
  6549. spawn_background_task(
  6550. _upgrade_finish_photo_from_timelapse(
  6551. archive_id, archive_dir, rotation=getattr(printer, "camera_rotation", 0)
  6552. ),
  6553. name=f"finish-photo-upgrade-{archive_id}",
  6554. )
  6555. return photo_filename
  6556. except Exception as e:
  6557. logger.warning("[PHOTO-BG] Failed: %s", e)
  6558. return None
  6559. finally:
  6560. # #2547: we raised the plate, so we owe the move back down — even if
  6561. # the capture in between threw. Otherwise the user finds the print
  6562. # pinned under the nozzle.
  6563. if plate_restored_z is not None:
  6564. try:
  6565. _park_plate_after_finish_photo(printer_id, plate_restored_z, logger)
  6566. except Exception as e:
  6567. logger.warning("[PLATE-RESTORE] printer %s: could not lower plate: %s", printer_id, e)
  6568. spawn_background_task(_background_energy_calculation(), name="background-energy-calc")
  6569. # Photo capture task - result will be used by notifications
  6570. photo_task = spawn_background_task(_background_finish_photo(), name="background-finish-photo")
  6571. log_timing("Background tasks scheduled (energy, photo)")
  6572. # Also run smart plug, notifications, and maintenance as background tasks
  6573. print_status = data.get("status", "completed")
  6574. async def _background_smart_plug():
  6575. """Handle smart plug automation in background."""
  6576. try:
  6577. logger.info("[AUTO-OFF-BG] Starting smart plug automation for printer %s", printer_id)
  6578. async with async_session() as db:
  6579. await smart_plug_manager.on_print_complete(printer_id, print_status, db)
  6580. logger.info("[AUTO-OFF-BG] Completed")
  6581. except Exception as e:
  6582. logger.warning("[AUTO-OFF-BG] Failed: %s", e)
  6583. async def _background_notifications(finish_photo_filename: str | None = None):
  6584. """Send print complete notifications in background."""
  6585. try:
  6586. logger.info(
  6587. "[NOTIFY-BG] Starting notifications for printer %s, photo=%s", printer_id, finish_photo_filename
  6588. )
  6589. async with async_session() as db:
  6590. from backend.app.models.archive import PrintArchive
  6591. from backend.app.models.printer import Printer
  6592. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  6593. printer = result.scalar_one_or_none()
  6594. printer_name = printer.name if printer else f"Printer {printer_id}"
  6595. archive_data = None
  6596. if archive_id:
  6597. archive_result = await db.execute(select(PrintArchive).where(PrintArchive.id == archive_id))
  6598. archive = archive_result.scalar_one_or_none()
  6599. if archive:
  6600. # Actual elapsed time from started_at/completed_at when both are
  6601. # populated (every terminal status sets completed_at after #1198).
  6602. # Falls back to None so the notification path can decide whether to
  6603. # render the slicer estimate as a last resort.
  6604. actual_time_seconds = None
  6605. if archive.started_at and archive.completed_at:
  6606. elapsed = (archive.completed_at - archive.started_at).total_seconds()
  6607. if elapsed > 0:
  6608. actual_time_seconds = int(elapsed)
  6609. archive_data = {
  6610. "print_time_seconds": archive.print_time_seconds,
  6611. "actual_time_seconds": actual_time_seconds,
  6612. "actual_filament_grams": archive.filament_used_grams,
  6613. "failure_reason": archive.failure_reason,
  6614. "created_by_id": archive.created_by_id,
  6615. }
  6616. # Scale filament usage for partial prints
  6617. if print_status != "completed" and archive.filament_used_grams:
  6618. progress = data.get("progress") or 0
  6619. scale = _partial_progress_scale(progress)
  6620. archive_data["actual_filament_grams"] = round(archive.filament_used_grams * scale, 1)
  6621. archive_data["progress"] = progress
  6622. # Pass per-slot data from archive.extra_data
  6623. if archive.extra_data and archive.extra_data.get("filament_slots"):
  6624. slots = archive.extra_data["filament_slots"]
  6625. if print_status != "completed":
  6626. scale = _partial_progress_scale(data.get("progress"))
  6627. slots = [{**s, "used_g": round(s["used_g"] * scale, 1)} for s in slots]
  6628. archive_data["filament_slots"] = slots
  6629. # Scope project-summed totals down to the plate that was
  6630. # actually printed — see _scope_notification_archive_data_to_plate
  6631. # for the why (#1785).
  6632. archive_data = _scope_notification_archive_data_to_plate(
  6633. archive_data,
  6634. archive.file_path,
  6635. notify_plate_id,
  6636. print_status,
  6637. data.get("progress"),
  6638. app_settings.base_dir,
  6639. )
  6640. # Enrich filament_grams from usage_results when archive has no 3MF data
  6641. if not archive_data.get("actual_filament_grams") and usage_results:
  6642. total_from_usage = sum(r.get("weight_used", 0) for r in usage_results)
  6643. if total_from_usage > 0:
  6644. archive_data["actual_filament_grams"] = round(total_from_usage, 1)
  6645. # Pass usage tracker results for AMS slot info in notifications
  6646. if usage_results:
  6647. archive_data["usage_results"] = usage_results
  6648. # Add finish photo URL and image bytes if available
  6649. if finish_photo_filename:
  6650. from backend.app.api.routes.settings import get_setting
  6651. external_url = await get_setting(db, "external_url")
  6652. if external_url:
  6653. external_url = external_url.rstrip("/")
  6654. archive_data["finish_photo_url"] = (
  6655. f"{external_url}/api/v1/archives/{archive_id}/photos/{finish_photo_filename}"
  6656. )
  6657. else:
  6658. # Fallback to relative URL (won't work for external services)
  6659. archive_data["finish_photo_url"] = (
  6660. f"/api/v1/archives/{archive_id}/photos/{finish_photo_filename}"
  6661. )
  6662. # Read finish photo bytes for image attachment (e.g. Pushover)
  6663. try:
  6664. from backend.app.utils.archive_paths import find_archive_photo
  6665. photo_path = find_archive_photo(archive, finish_photo_filename)
  6666. if photo_path is not None:
  6667. photo_bytes = await asyncio.to_thread(photo_path.read_bytes)
  6668. if len(photo_bytes) <= 2_500_000:
  6669. archive_data["image_data"] = photo_bytes
  6670. logger.info("[NOTIFY-BG] Loaded finish photo bytes: %s bytes", len(photo_bytes))
  6671. else:
  6672. logger.warning(
  6673. f"[NOTIFY-BG] Finish photo too large for attachment: "
  6674. f"{len(photo_bytes)} bytes"
  6675. )
  6676. except Exception as e:
  6677. logger.warning("[NOTIFY-BG] Failed to read finish photo bytes: %s", e)
  6678. if not await _kill_switch_notification_already_sent(kill_switch_notification_task):
  6679. await notification_service.on_print_complete(
  6680. printer_id, printer_name, print_status, data, db, archive_data=archive_data
  6681. )
  6682. else:
  6683. logger.info("[NOTIFY-BG] Skipped duplicate kill-switch provider notification")
  6684. # Send user-specific email notification
  6685. if archive_data:
  6686. created_by_id = archive_data.get("created_by_id")
  6687. raw_filename = data.get("subtask_name") or data.get("filename", "Unknown")
  6688. await _dispatch_user_print_email(
  6689. print_status,
  6690. created_by_id,
  6691. printer_name,
  6692. raw_filename,
  6693. db,
  6694. )
  6695. logger.info("[NOTIFY-BG] Completed")
  6696. except Exception as e:
  6697. logger.error("[NOTIFY-BG] Failed: %s", e, exc_info=True)
  6698. async def _background_maintenance_check():
  6699. """Check for maintenance due in background."""
  6700. if print_status != "completed":
  6701. return
  6702. try:
  6703. logger.info("[MAINT-BG] Starting maintenance check for printer %s", printer_id)
  6704. async with async_session() as db:
  6705. from backend.app.models.printer import Printer
  6706. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  6707. printer = result.scalar_one_or_none()
  6708. printer_name = printer.name if printer else f"Printer {printer_id}"
  6709. await ensure_default_types(db)
  6710. overview = await _get_printer_maintenance_internal(printer_id, db, commit=True)
  6711. items_needing_attention = [
  6712. {"name": item.maintenance_type_name, "is_due": item.is_due, "is_warning": item.is_warning}
  6713. for item in overview.maintenance_items
  6714. if item.enabled and (item.is_due or item.is_warning)
  6715. ]
  6716. if items_needing_attention:
  6717. await notification_service.on_maintenance_due(printer_id, printer_name, items_needing_attention, db)
  6718. logger.info("[MAINT-BG] Sent notification: %s items need attention", len(items_needing_attention))
  6719. # MQTT relay - publish maintenance alerts
  6720. for item in items_needing_attention:
  6721. try:
  6722. await mqtt_relay.on_maintenance_alert(
  6723. printer_id=printer_id,
  6724. printer_name=printer_name,
  6725. maintenance_type=item["name"],
  6726. current_value=0, # Not easily available here
  6727. threshold=0, # Not easily available here
  6728. )
  6729. except Exception:
  6730. pass # Don't fail if MQTT fails
  6731. else:
  6732. logger.info("[MAINT-BG] Completed (no items need attention)")
  6733. except Exception as e:
  6734. logger.warning("[MAINT-BG] Failed: %s", e)
  6735. spawn_background_task(_background_smart_plug(), name="background-smart-plug")
  6736. spawn_background_task(_background_maintenance_check(), name="background-maintenance-check")
  6737. # Notification task waits for photo capture to complete first (with timeout).
  6738. # When a timelapse was recording, photo sourcing polls the per-print
  6739. # timelapse for up to 60s (#1397) — extend the budget so the notification
  6740. # carries the correct bed-up photo instead of falling through to the
  6741. # live-cam grab. Adds ~30s of notification latency at worst on slow links.
  6742. #
  6743. # #2547: both budgets now have to cover a plate restore as well.
  6744. #
  6745. # Without timelapse, the wait is on the moment producer, which raises the
  6746. # plate before its grab — so this has to outlast that producer's own budget.
  6747. #
  6748. # With timelapse, the capture polls up to
  6749. # `_FINISH_PHOTO_TIMELAPSE_POLL_TIMEOUT_SECONDS` for the video and only then
  6750. # falls back to a live grab, which is the case that raises the plate. At the
  6751. # old flat 75s that fallback was guaranteed to be cut off mid-settle, so the
  6752. # restore would have moved the plate for a photo nobody waited for.
  6753. photo_wait_timeout = (
  6754. _FINISH_PHOTO_TIMELAPSE_POLL_TIMEOUT_SECONDS + _FINISH_PHOTO_PRODUCER_WAIT_SECONDS
  6755. if data.get("timelapse_was_active")
  6756. else _FINISH_PHOTO_PRODUCER_WAIT_SECONDS + 15
  6757. )
  6758. async def _photo_then_notify():
  6759. """Wait for photo capture, then send notification with photo URL."""
  6760. finish_photo = None
  6761. try:
  6762. finish_photo = await asyncio.wait_for(photo_task, timeout=photo_wait_timeout)
  6763. logger.info("[PHOTO-NOTIFY] Photo task returned: %s", finish_photo)
  6764. except TimeoutError:
  6765. logger.warning(
  6766. "[PHOTO-NOTIFY] Photo capture timed out after %ss, sending notification without photo",
  6767. photo_wait_timeout,
  6768. )
  6769. except Exception as e:
  6770. logger.warning("[PHOTO-NOTIFY] Photo task failed: %s", e)
  6771. try:
  6772. await _background_notifications(finish_photo)
  6773. except Exception as e:
  6774. logger.error("[PHOTO-NOTIFY] Notification sending failed: %s", e, exc_info=True)
  6775. spawn_background_task(_photo_then_notify(), name="photo-then-notify")
  6776. # Stitch external camera layer timelapse if session was active
  6777. print_status = data.get("status", "completed")
  6778. async def _background_layer_timelapse():
  6779. """Stitch layer timelapse and attach to archive."""
  6780. from backend.app.services.layer_timelapse import cancel_session, on_print_complete as tl_complete
  6781. try:
  6782. if print_status == "completed":
  6783. logger.info("[LAYER-TL] Stitching layer timelapse for printer %s", printer_id)
  6784. timelapse_path = await tl_complete(printer_id)
  6785. if timelapse_path and archive_id:
  6786. logger.info("[LAYER-TL] Attaching timelapse %s to archive %s", timelapse_path, archive_id)
  6787. async with async_session() as db:
  6788. service = ArchiveService(db)
  6789. timelapse_data = await asyncio.to_thread(timelapse_path.read_bytes)
  6790. await service.attach_timelapse(archive_id, timelapse_data, "layer_timelapse.mp4")
  6791. # Clean up the temp file
  6792. await asyncio.to_thread(timelapse_path.unlink, missing_ok=True)
  6793. logger.info("[LAYER-TL] Layer timelapse attached successfully")
  6794. elif timelapse_path:
  6795. # Timelapse created but no archive - just clean up
  6796. await asyncio.to_thread(timelapse_path.unlink, missing_ok=True)
  6797. else:
  6798. # Print failed or cancelled - cancel timelapse session
  6799. cancel_session(printer_id)
  6800. logger.info(
  6801. "[LAYER-TL] Cancelled layer timelapse for printer %s (status: %s)", printer_id, print_status
  6802. )
  6803. except Exception as e:
  6804. logger.warning("[LAYER-TL] Failed: %s", e)
  6805. # Try to cancel session on error
  6806. try:
  6807. cancel_session(printer_id)
  6808. except Exception:
  6809. pass # Best-effort timelapse session cancellation on error
  6810. spawn_background_task(_background_layer_timelapse(), name="background-layer-timelapse")
  6811. log_timing("All background tasks scheduled")
  6812. # Auto-scan for timelapse if recording was active during the print
  6813. if archive_id and data.get("timelapse_was_active") and data.get("status") == "completed":
  6814. logger.info("[TIMELAPSE] Timelapse was active during print, scheduling auto-scan for archive %s", archive_id)
  6815. # Schedule timelapse scan as background task with retries
  6816. # The printer needs time to encode the video after print completion
  6817. baseline = _timelapse_baselines.pop(printer_id, None)
  6818. spawn_background_task(
  6819. _scan_for_timelapse_with_retries(archive_id, baseline),
  6820. name=f"scan-timelapse-{archive_id}",
  6821. )
  6822. log_timing("Timelapse scan scheduled")
  6823. logger.info("[CALLBACK] on_print_complete finished for printer %s, archive %s", printer_id, archive_id)
  6824. # AMS sensor history recording
  6825. _ams_history_task: asyncio.Task | None = None
  6826. AMS_HISTORY_INTERVAL = 300 # Record every 5 minutes
  6827. AMS_HISTORY_RETENTION_DAYS = 30 # Keep data for 30 days
  6828. _ams_cleanup_counter = 0 # Track recordings to trigger periodic cleanup
  6829. # Track alarm cooldowns (printer_id:ams_id:type -> last_alarm_time)
  6830. _ams_alarm_cooldown: dict[str, datetime] = {}
  6831. AMS_ALARM_COOLDOWN_MINUTES = 60 # Don't send same alarm more than once per hour
  6832. def _resolve_temp_alarm_threshold(fair_threshold: float, raw_alarm_value: str | None) -> float:
  6833. """Temperature at which the AMS alarm fires, falling back to the display band.
  6834. ``ams_temp_fair`` decides when the AMS card turns amber. It used to decide
  6835. when a notification was sent as well, which is why a room above it made the
  6836. alarm fire once an hour for as long as the weather lasted -- and the only way
  6837. to stop that was to raise the display band and lose the colour that says the
  6838. unit is warm (#2905).
  6839. Unset resolves to the fair threshold, so an install that never sets one is
  6840. unchanged. Settings storage stringifies ``None`` to the literal ``"None"``,
  6841. so that arrives here as a string and is handled by the same branch as any
  6842. other unparseable value -- there is no separate sentinel to keep in sync.
  6843. A non-positive value is refused rather than honoured: zero would alarm
  6844. permanently, and it is far more likely to be a cleared field than a
  6845. deliberate choice.
  6846. """
  6847. if raw_alarm_value is None:
  6848. return fair_threshold
  6849. try:
  6850. value = float(raw_alarm_value)
  6851. except (TypeError, ValueError):
  6852. return fair_threshold
  6853. if not math.isfinite(value) or value <= 0:
  6854. return fair_threshold
  6855. return value
  6856. # Per-AMS "drying was live at" latch that suppresses the high-temperature alarm
  6857. # through a cycle and the cool-down after it (#1802). Stored in the settings
  6858. # table rather than alongside _ams_alarm_cooldown above, because a restart
  6859. # partway through a cool-down would otherwise resume alarming about heat the
  6860. # user asked for — the same internal-timestamp-row pattern as
  6861. # support.py's debug_logging_enabled_at.
  6862. AMS_DRYING_LATCH_KEY = "ams_drying_alarm_latch"
  6863. # Upper bound on that suppression. The latch normally clears as soon as the unit
  6864. # reads at or below the threshold; see utils.ams_drying for why this cap only
  6865. # matters when it never does.
  6866. AMS_DRYING_GRACE_MINUTES = 120
  6867. async def _load_ams_drying_latch(db) -> dict[str, datetime]:
  6868. """Read the persisted per-AMS drying latch, dropping entries out of window.
  6869. Anything older than the grace cap would expire on its next visit anyway, so
  6870. discarding it here costs nothing and stops rows for deleted printers from
  6871. accumulating.
  6872. Stamps ahead of now get two defences, because a box whose clock jumps
  6873. backwards (a Pi with no RTC coming up before NTP) writes them: wildly future
  6874. ones are discarded outright, and the rest are clamped to now. Without the
  6875. clamp the cap would measure from a moment that has not happened yet and hold
  6876. the alarm quiet for the skew on top of the cap. One unnecessary notification
  6877. after a clock jump is a far better failure than an alarm silently disabled
  6878. for hours.
  6879. """
  6880. from backend.app.models.settings import Settings
  6881. result = await db.execute(select(Settings).where(Settings.key == AMS_DRYING_LATCH_KEY))
  6882. setting = result.scalar_one_or_none()
  6883. if not setting or not setting.value:
  6884. return {}
  6885. try:
  6886. raw = json.loads(setting.value)
  6887. except (ValueError, TypeError):
  6888. return {} # Corrupted row → no latch, alarms behave as they did before
  6889. if not isinstance(raw, dict):
  6890. return {}
  6891. now = datetime.now(timezone.utc)
  6892. window = timedelta(minutes=AMS_DRYING_GRACE_MINUTES)
  6893. latch: dict[str, datetime] = {}
  6894. for key, value in raw.items():
  6895. try:
  6896. stamp = datetime.fromisoformat(str(value))
  6897. except (ValueError, TypeError):
  6898. continue
  6899. if stamp.tzinfo is None:
  6900. stamp = stamp.replace(tzinfo=timezone.utc)
  6901. if not (now - window <= stamp <= now + window):
  6902. continue
  6903. # Nothing may sit in the future: suppression is measured as now minus
  6904. # the stamp, so a stamp ahead of now would extend it by the skew on top
  6905. # of the cap. Clamping the survivors keeps the cap an actual cap.
  6906. latch[str(key)] = min(stamp, now)
  6907. return latch
  6908. async def _save_ams_drying_latch(db, latch: dict[str, datetime]) -> None:
  6909. """Persist the latch, writing only when it actually changed.
  6910. Adds the session change but does not commit — the caller's own commit
  6911. carries it, so the latch lands in the same transaction as the sensor rows
  6912. that produced it.
  6913. """
  6914. from backend.app.models.settings import Settings
  6915. payload = json.dumps({key: stamp.isoformat() for key, stamp in sorted(latch.items())})
  6916. result = await db.execute(select(Settings).where(Settings.key == AMS_DRYING_LATCH_KEY))
  6917. setting = result.scalar_one_or_none()
  6918. if setting is None:
  6919. # Don't create the row on installs that never dry anything.
  6920. if payload != "{}":
  6921. db.add(Settings(key=AMS_DRYING_LATCH_KEY, value=payload))
  6922. elif setting.value != payload:
  6923. setting.value = payload
  6924. def _ams_has_filament(ams_data: dict) -> bool:
  6925. """True if this AMS unit has at least one tray slot holding filament.
  6926. Bambu firmware reports loaded slots via `tray_exist_bits`, a per-AMS hex
  6927. bitmap (one bit per tray slot — bit set = spool present). Empty AMS units
  6928. still report sensor readings, but those readings are ambient and not
  6929. actionable: no filament to dry, no humidity to push down. #1619 — gate
  6930. humidity/temperature alarms on this check so empty units don't generate
  6931. hourly noise. Sensor history still records regardless so the UI charts
  6932. stay continuous.
  6933. Fallback path inspects the `tray` array's `tray_type` fields for setups
  6934. where `tray_exist_bits` is missing (some early-connection pushall shapes).
  6935. """
  6936. bits = ams_data.get("tray_exist_bits")
  6937. if isinstance(bits, str) and bits.strip():
  6938. try:
  6939. return int(bits, 16) > 0
  6940. except ValueError:
  6941. pass
  6942. trays = ams_data.get("tray")
  6943. if isinstance(trays, list):
  6944. return any(
  6945. isinstance(t, dict) and isinstance(t.get("tray_type"), str) and t["tray_type"].strip() for t in trays
  6946. )
  6947. return False
  6948. async def record_ams_history():
  6949. """Background task to record AMS humidity and temperature data."""
  6950. logger = logging.getLogger(__name__)
  6951. # Wait a short time for MQTT connections to establish on startup
  6952. await asyncio.sleep(10)
  6953. while True:
  6954. try:
  6955. from backend.app.models.ams_history import AMSSensorHistory
  6956. from backend.app.models.printer import Printer
  6957. from backend.app.models.settings import Settings
  6958. async with async_session() as db:
  6959. # Get all active printers
  6960. result = await db.execute(select(Printer).where(Printer.is_active.is_(True)))
  6961. printers = result.scalars().all()
  6962. # Get alarm thresholds from settings
  6963. humidity_threshold = 60.0 # Default: fair threshold
  6964. temp_fair_threshold = 35.0 # Display band default (ams_temp_fair)
  6965. result = await db.execute(select(Settings).where(Settings.key == "ams_humidity_fair"))
  6966. setting = result.scalar_one_or_none()
  6967. if setting:
  6968. try:
  6969. humidity_threshold = float(setting.value)
  6970. except (ValueError, TypeError):
  6971. pass # Keep default threshold if stored value is invalid
  6972. result = await db.execute(select(Settings).where(Settings.key == "ams_temp_fair"))
  6973. setting = result.scalar_one_or_none()
  6974. if setting:
  6975. try:
  6976. temp_fair_threshold = float(setting.value)
  6977. except (ValueError, TypeError):
  6978. pass # Keep default threshold if stored value is invalid
  6979. # The alarm gets its own threshold, seeded from the resolved fair
  6980. # value so an install that has never set one behaves exactly as
  6981. # it did before (#2905). ams_temp_fair decides when the card turns
  6982. # amber; 35 C is a reasonable place to change a colour and not a
  6983. # reasonable place to page someone. A room above it makes the
  6984. # alarm fire once an hour for as long as the weather lasts, and
  6985. # the only way to stop it was to raise the display band and lose
  6986. # the colour that says the unit is warm.
  6987. #
  6988. # An unset value is stored as the literal "None", which the except
  6989. # below swallows the same way it swallows garbage -- so the
  6990. # fallback costs nothing and needs no sentinel of its own.
  6991. result = await db.execute(select(Settings).where(Settings.key == "ams_temp_alarm"))
  6992. setting = result.scalar_one_or_none()
  6993. temp_alarm_threshold = _resolve_temp_alarm_threshold(
  6994. temp_fair_threshold, setting.value if setting else None
  6995. )
  6996. # Per-filament humidity threshold overrides (#1605) — resolved
  6997. # per-AMS below from the loaded tray types. Reuses the same
  6998. # resolver as the auto-drying scheduler so behavior stays in
  6999. # lockstep across both consumers.
  7000. from backend.app.services.print_scheduler import PrintScheduler
  7001. per_type_humidity_thresholds: dict[str, int] = {}
  7002. result = await db.execute(select(Settings).where(Settings.key == "ams_humidity_thresholds"))
  7003. setting = result.scalar_one_or_none()
  7004. if setting and setting.value:
  7005. try:
  7006. raw = json.loads(setting.value)
  7007. if isinstance(raw, dict):
  7008. for k, v in raw.items():
  7009. try:
  7010. per_type_humidity_thresholds[str(k).upper() if k != "default" else "default"] = int(
  7011. v
  7012. )
  7013. except (TypeError, ValueError):
  7014. continue
  7015. except (ValueError, TypeError):
  7016. pass # Invalid JSON → no overrides, fall through to global threshold
  7017. # Per-AMS drying latch (#1802), loaded once per pass and written
  7018. # back below only if a unit changed it.
  7019. drying_latch = await _load_ams_drying_latch(db)
  7020. drying_latch_before = dict(drying_latch)
  7021. recorded_count = 0
  7022. for printer in printers:
  7023. # Get current state from printer manager
  7024. state = printer_manager.get_status(printer.id)
  7025. if not state or not state.connected or not state.raw_data:
  7026. continue # Skip disconnected printers - don't use stale data
  7027. raw_data = state.raw_data
  7028. if "ams" not in raw_data or not isinstance(raw_data["ams"], list):
  7029. continue
  7030. # Record data for each AMS unit
  7031. for ams_data in raw_data["ams"]:
  7032. ams_id = int(ams_data.get("id", 0))
  7033. # Get humidity (prefer humidity_raw)
  7034. humidity_raw = ams_data.get("humidity_raw")
  7035. humidity_idx = ams_data.get("humidity")
  7036. humidity = None
  7037. if humidity_raw is not None:
  7038. try:
  7039. humidity = float(humidity_raw)
  7040. except (ValueError, TypeError):
  7041. pass # Skip unparseable humidity; will try fallback
  7042. if humidity is None and humidity_idx is not None:
  7043. try:
  7044. humidity = float(humidity_idx)
  7045. except (ValueError, TypeError):
  7046. pass # Skip unparseable humidity index value
  7047. # Get temperature
  7048. temperature = None
  7049. temp_str = ams_data.get("temp")
  7050. if temp_str is not None:
  7051. try:
  7052. temperature = float(temp_str)
  7053. except (ValueError, TypeError):
  7054. pass # Skip unparseable temperature value
  7055. # Skip if no data
  7056. if humidity is None and temperature is None:
  7057. continue
  7058. # Record the data point
  7059. history = AMSSensorHistory(
  7060. printer_id=printer.id,
  7061. ams_id=ams_id,
  7062. humidity=humidity,
  7063. humidity_raw=float(humidity_raw) if humidity_raw else None,
  7064. temperature=temperature,
  7065. )
  7066. db.add(history)
  7067. recorded_count += 1
  7068. # Generate AMS label and determine if it's AMS-HT (A, B, C, D or HT-A for AMS-Lite/Hub)
  7069. is_ams_ht = ams_id >= 128
  7070. if is_ams_ht:
  7071. ams_label = f"HT-{chr(65 + (ams_id - 128))}"
  7072. else:
  7073. ams_label = f"AMS-{chr(65 + ams_id)}"
  7074. # Skip alarm dispatch for empty AMS units — humidity /
  7075. # temperature readings are ambient with no filament to
  7076. # protect, and the hourly notification just becomes
  7077. # noise. Sensor history was already recorded above so
  7078. # the UI charts stay continuous (#1619). Per-AMS check
  7079. # so a multi-AMS setup with one loaded + one empty
  7080. # still alarms on the loaded unit.
  7081. if not _ams_has_filament(ams_data):
  7082. continue
  7083. # Resolve per-filament humidity threshold for this AMS
  7084. # unit (#1605). Falls back to the global ams_humidity_fair
  7085. # when no per-type overrides are configured.
  7086. trays = ams_data.get("tray", []) or []
  7087. effective_humidity_threshold = float(
  7088. PrintScheduler.resolve_humidity_threshold(
  7089. trays, per_type_humidity_thresholds, int(humidity_threshold)
  7090. )
  7091. )
  7092. # Check humidity alarm (only if above threshold)
  7093. if humidity is not None and humidity > effective_humidity_threshold:
  7094. cooldown_key = f"{printer.id}:{ams_id}:humidity"
  7095. last_alarm = _ams_alarm_cooldown.get(cooldown_key)
  7096. now = datetime.now(timezone.utc)
  7097. if (
  7098. last_alarm is None
  7099. or (now - last_alarm).total_seconds() >= AMS_ALARM_COOLDOWN_MINUTES * 60
  7100. ):
  7101. _ams_alarm_cooldown[cooldown_key] = now
  7102. logger.info(
  7103. f"Sending humidity alarm for {printer.name} {ams_label}: {humidity}% > {effective_humidity_threshold}%"
  7104. )
  7105. try:
  7106. # Call different notification method based on AMS type
  7107. if is_ams_ht:
  7108. await notification_service.on_ams_ht_humidity_high(
  7109. printer.id,
  7110. printer.name,
  7111. ams_label,
  7112. humidity,
  7113. effective_humidity_threshold,
  7114. db,
  7115. )
  7116. else:
  7117. await notification_service.on_ams_humidity_high(
  7118. printer.id,
  7119. printer.name,
  7120. ams_label,
  7121. humidity,
  7122. effective_humidity_threshold,
  7123. db,
  7124. )
  7125. except Exception as e:
  7126. logger.warning("Failed to send humidity alarm: %s", e)
  7127. # A drying cycle heats the unit far past ams_temp_fair on
  7128. # purpose — 45 C for PLA, 65 C for PETG, 85 C on an
  7129. # AMS-HT, against a 35 C default — so the alarm fired
  7130. # once an hour for the whole cycle and kept firing while
  7131. # the unit cooled back down (#1802). Latch on the
  7132. # firmware's own drying state and hold until the reading
  7133. # returns to normal. Humidity is deliberately left alone:
  7134. # it falls during drying, which is the whole point.
  7135. latch_key = f"{printer.id}:{ams_id}"
  7136. # The latch releases at `threshold`, so it takes the alarm
  7137. # number too. Handing it the display band would strand the
  7138. # latch on any unit that settles back above it -- a room
  7139. # where the AMS rests at 37.7 C never returns under a 35 C
  7140. # band, so the latch could only expire on the grace cap
  7141. # rather than releasing when the unit had actually cooled.
  7142. suppress_temp_alarm, new_latch = temperature_alarm_suppressed(
  7143. drying_active=is_drying_active(ams_data),
  7144. temperature=temperature,
  7145. threshold=temp_alarm_threshold,
  7146. latched_at=drying_latch.get(latch_key),
  7147. now=datetime.now(timezone.utc),
  7148. grace_minutes=AMS_DRYING_GRACE_MINUTES,
  7149. )
  7150. if new_latch is None:
  7151. drying_latch.pop(latch_key, None)
  7152. else:
  7153. drying_latch[latch_key] = new_latch
  7154. # Check temperature alarm (only if above threshold)
  7155. if temperature is not None and temperature > temp_alarm_threshold and not suppress_temp_alarm:
  7156. cooldown_key = f"{printer.id}:{ams_id}:temperature"
  7157. last_alarm = _ams_alarm_cooldown.get(cooldown_key)
  7158. now = datetime.now(timezone.utc)
  7159. if (
  7160. last_alarm is None
  7161. or (now - last_alarm).total_seconds() >= AMS_ALARM_COOLDOWN_MINUTES * 60
  7162. ):
  7163. _ams_alarm_cooldown[cooldown_key] = now
  7164. logger.info(
  7165. f"Sending temperature alarm for {printer.name} {ams_label}: "
  7166. f"{temperature}°C > {temp_alarm_threshold}°C"
  7167. )
  7168. try:
  7169. # Call different notification method based on AMS type
  7170. if is_ams_ht:
  7171. # The reported threshold has to be the one
  7172. # that fired, or the message says "> 35 °C"
  7173. # while firing at 45.
  7174. await notification_service.on_ams_ht_temperature_high(
  7175. printer.id, printer.name, ams_label, temperature, temp_alarm_threshold, db
  7176. )
  7177. else:
  7178. await notification_service.on_ams_temperature_high(
  7179. printer.id, printer.name, ams_label, temperature, temp_alarm_threshold, db
  7180. )
  7181. except Exception as e:
  7182. logger.warning("Failed to send temperature alarm: %s", e)
  7183. if drying_latch != drying_latch_before:
  7184. await _save_ams_drying_latch(db, drying_latch)
  7185. await db.commit()
  7186. if recorded_count > 0:
  7187. logger.info("Recorded %s AMS sensor history entries", recorded_count)
  7188. # Periodic cleanup of old data (every ~288 recordings = ~24 hours at 5min interval)
  7189. global _ams_cleanup_counter
  7190. _ams_cleanup_counter += 1
  7191. if _ams_cleanup_counter >= 288:
  7192. _ams_cleanup_counter = 0
  7193. # Get retention days from settings
  7194. from backend.app.models.settings import Settings
  7195. result = await db.execute(select(Settings).where(Settings.key == "ams_history_retention_days"))
  7196. setting = result.scalar_one_or_none()
  7197. retention_days = int(setting.value) if setting else AMS_HISTORY_RETENTION_DAYS
  7198. cutoff = utcnow_naive() - timedelta(days=retention_days)
  7199. result = await db.execute(delete(AMSSensorHistory).where(AMSSensorHistory.recorded_at < cutoff))
  7200. await db.commit()
  7201. if result.rowcount > 0:
  7202. logger.info(
  7203. f"Cleaned up {result.rowcount} old AMS sensor history entries (older than {retention_days} days)"
  7204. )
  7205. # Wait until next recording interval
  7206. await asyncio.sleep(AMS_HISTORY_INTERVAL)
  7207. except asyncio.CancelledError:
  7208. break
  7209. except Exception as e:
  7210. logger.warning("AMS history recording failed: %s", e)
  7211. await asyncio.sleep(60) # Wait a bit before retrying
  7212. def start_ams_history_recording():
  7213. """Start the AMS history recording background task."""
  7214. global _ams_history_task
  7215. if _ams_history_task is None:
  7216. _ams_history_task = asyncio.create_task(record_ams_history())
  7217. logging.getLogger(__name__).info("AMS history recording started")
  7218. def stop_ams_history_recording():
  7219. """Stop the AMS history recording background task."""
  7220. global _ams_history_task
  7221. if _ams_history_task:
  7222. _ams_history_task.cancel()
  7223. _ams_history_task = None
  7224. logging.getLogger(__name__).info("AMS history recording stopped")
  7225. # Printer sensor history recording (nozzle / bed / chamber)
  7226. _printer_sensor_history_task: asyncio.Task | None = None
  7227. PRINTER_SENSOR_HISTORY_INTERVAL = 60 # Record every minute — heaters move faster than AMS humidity
  7228. PRINTER_SENSOR_HISTORY_RETENTION_DAYS = 30
  7229. _printer_sensor_cleanup_counter = 0
  7230. # Sensor kinds tracked in state.temperatures — these are the normalised keys the
  7231. # MQTT parser writes, so we don't need to handle per-model field aliases here
  7232. # (nozzle_temper / left_nozzle_temper / right_nozzle_temper / chamber_temper
  7233. # are all collapsed by services/bambu_mqtt.py before they reach this loop).
  7234. _SENSOR_KINDS = ("nozzle", "nozzle_2", "bed", "chamber")
  7235. _SENSOR_TARGET_KEYS = {
  7236. "nozzle": "nozzle_target",
  7237. "nozzle_2": "nozzle_2_target",
  7238. "bed": "bed_target",
  7239. "chamber": "chamber_target",
  7240. }
  7241. async def record_printer_sensor_history():
  7242. """Background task to record nozzle / bed / chamber readings.
  7243. Pulls from `state.temperatures` (already normalised across all printer
  7244. models by the MQTT parser) rather than re-parsing raw_data, so we get
  7245. free coverage of dual-nozzle H2D, sensor-only X1C chamber, etc.
  7246. """
  7247. logger = logging.getLogger(__name__)
  7248. await asyncio.sleep(10)
  7249. while True:
  7250. try:
  7251. from backend.app.models.printer import Printer
  7252. from backend.app.models.printer_sensor_history import PrinterSensorHistory
  7253. from backend.app.models.settings import Settings
  7254. async with async_session() as db:
  7255. result = await db.execute(select(Printer).where(Printer.is_active.is_(True)))
  7256. printers = result.scalars().all()
  7257. recorded_count = 0
  7258. for printer in printers:
  7259. state = printer_manager.get_status(printer.id)
  7260. if not state or not state.connected:
  7261. continue
  7262. temps = getattr(state, "temperatures", None) or {}
  7263. if not isinstance(temps, dict):
  7264. continue
  7265. for kind in _SENSOR_KINDS:
  7266. if kind not in temps:
  7267. continue
  7268. try:
  7269. value = float(temps[kind])
  7270. except (ValueError, TypeError):
  7271. continue
  7272. target_raw = temps.get(_SENSOR_TARGET_KEYS[kind])
  7273. target_val: float | None = None
  7274. if target_raw is not None:
  7275. try:
  7276. target_val = float(target_raw)
  7277. except (ValueError, TypeError):
  7278. target_val = None
  7279. db.add(
  7280. PrinterSensorHistory(
  7281. printer_id=printer.id,
  7282. sensor_kind=kind,
  7283. value=value,
  7284. target=target_val,
  7285. )
  7286. )
  7287. recorded_count += 1
  7288. await db.commit()
  7289. if recorded_count > 0:
  7290. logger.debug("Recorded %s printer sensor history entries", recorded_count)
  7291. # Periodic cleanup — once every ~24h at this interval.
  7292. global _printer_sensor_cleanup_counter
  7293. _printer_sensor_cleanup_counter += 1
  7294. cleanup_every = max(1, (24 * 60 * 60) // PRINTER_SENSOR_HISTORY_INTERVAL)
  7295. if _printer_sensor_cleanup_counter >= cleanup_every:
  7296. _printer_sensor_cleanup_counter = 0
  7297. result = await db.execute(
  7298. select(Settings).where(Settings.key == "printer_sensor_history_retention_days")
  7299. )
  7300. setting = result.scalar_one_or_none()
  7301. retention_days = int(setting.value) if setting else PRINTER_SENSOR_HISTORY_RETENTION_DAYS
  7302. cutoff = utcnow_naive() - timedelta(days=retention_days)
  7303. cleanup = await db.execute(
  7304. delete(PrinterSensorHistory).where(PrinterSensorHistory.recorded_at < cutoff)
  7305. )
  7306. await db.commit()
  7307. if cleanup.rowcount > 0:
  7308. logger.info(
  7309. "Cleaned up %s old printer sensor history entries (older than %s days)",
  7310. cleanup.rowcount,
  7311. retention_days,
  7312. )
  7313. await asyncio.sleep(PRINTER_SENSOR_HISTORY_INTERVAL)
  7314. except asyncio.CancelledError:
  7315. break
  7316. except Exception as e:
  7317. logger.warning("Printer sensor history recording failed: %s", e)
  7318. await asyncio.sleep(60)
  7319. def start_printer_sensor_history_recording():
  7320. global _printer_sensor_history_task
  7321. if _printer_sensor_history_task is None:
  7322. _printer_sensor_history_task = asyncio.create_task(record_printer_sensor_history())
  7323. logging.getLogger(__name__).info("Printer sensor history recording started")
  7324. def stop_printer_sensor_history_recording():
  7325. global _printer_sensor_history_task
  7326. if _printer_sensor_history_task:
  7327. _printer_sensor_history_task.cancel()
  7328. _printer_sensor_history_task = None
  7329. logging.getLogger(__name__).info("Printer sensor history recording stopped")
  7330. # Printer runtime tracking
  7331. _runtime_tracking_task: asyncio.Task | None = None
  7332. RUNTIME_TRACKING_INTERVAL = 30 # Update every 30 seconds
  7333. async def track_printer_runtime():
  7334. """Background task to track printer active runtime (RUNNING state only).
  7335. PAUSE is intentionally excluded — the runtime counter feeds hours-based
  7336. maintenance intervals (rod lubrication, belt checks, nozzle cleaning)
  7337. which track mechanical wear. Pause time has no motion and no wear, so
  7338. counting it inflates maintenance warnings (#1521).
  7339. """
  7340. logger = logging.getLogger(__name__)
  7341. # Wait for MQTT connections to establish on startup
  7342. await asyncio.sleep(15)
  7343. while True:
  7344. try:
  7345. from backend.app.models.printer import Printer
  7346. # Fetch printer IDs in a short-lived read-only session
  7347. async with async_session() as db:
  7348. result = await db.execute(
  7349. select(Printer.id, Printer.name, Printer.runtime_seconds, Printer.last_runtime_update).where(
  7350. Printer.is_active.is_(True)
  7351. )
  7352. )
  7353. printer_rows = result.all()
  7354. now = datetime.now(timezone.utc)
  7355. updated_count = 0
  7356. # Update each printer in its own short session to minimise write-lock
  7357. # hold time and avoid blocking critical commits like queue status
  7358. # updates (#897).
  7359. for pid, pname, runtime_secs, last_update in printer_rows:
  7360. state = printer_manager.get_status(pid)
  7361. if not state:
  7362. logger.debug("[%s] Runtime tracking: no state available", pname)
  7363. continue
  7364. if not state.connected:
  7365. logger.debug("[%s] Runtime tracking: not connected", pname)
  7366. continue
  7367. needs_commit = False
  7368. new_runtime = runtime_secs
  7369. new_last_update = last_update
  7370. if state.state == "RUNNING":
  7371. if last_update:
  7372. lu = last_update if last_update.tzinfo else last_update.replace(tzinfo=timezone.utc)
  7373. elapsed = (now - lu).total_seconds()
  7374. if elapsed > 0:
  7375. new_runtime = runtime_secs + int(elapsed)
  7376. updated_count += 1
  7377. needs_commit = True
  7378. logger.debug(
  7379. f"[{pname}] Runtime tracking: added {int(elapsed)}s, "
  7380. f"total={new_runtime}s ({new_runtime / 3600:.2f}h)"
  7381. )
  7382. else:
  7383. needs_commit = True
  7384. logger.debug("[%s] Runtime tracking: first active detection", pname)
  7385. new_last_update = now
  7386. else:
  7387. if last_update is not None:
  7388. logger.debug(f"[{pname}] Runtime tracking: state={state.state}, clearing last_runtime_update")
  7389. new_last_update = None
  7390. needs_commit = True
  7391. if needs_commit:
  7392. try:
  7393. async with async_session() as db:
  7394. result = await db.execute(select(Printer).where(Printer.id == pid))
  7395. printer = result.scalar_one_or_none()
  7396. if printer:
  7397. printer.runtime_seconds = new_runtime
  7398. printer.last_runtime_update = new_last_update
  7399. await db.commit()
  7400. except Exception as e:
  7401. logger.warning("[%s] Runtime tracking commit failed: %s", pname, e)
  7402. if updated_count > 0:
  7403. logger.debug("Updated runtime for %s printer(s)", updated_count)
  7404. except asyncio.CancelledError:
  7405. logger.info("Runtime tracking cancelled")
  7406. break
  7407. except Exception as e:
  7408. logger.warning("Runtime tracking failed: %s", e)
  7409. await asyncio.sleep(RUNTIME_TRACKING_INTERVAL)
  7410. def start_runtime_tracking():
  7411. """Start the printer runtime tracking background task."""
  7412. global _runtime_tracking_task
  7413. if _runtime_tracking_task is None:
  7414. _runtime_tracking_task = asyncio.create_task(track_printer_runtime())
  7415. logging.getLogger(__name__).info("Printer runtime tracking started")
  7416. def stop_runtime_tracking():
  7417. """Stop the printer runtime tracking background task."""
  7418. global _runtime_tracking_task
  7419. if _runtime_tracking_task:
  7420. _runtime_tracking_task.cancel()
  7421. _runtime_tracking_task = None
  7422. logging.getLogger(__name__).info("Printer runtime tracking stopped")
  7423. # SpoolBuddy device watchdog
  7424. _spoolbuddy_watchdog_task: asyncio.Task | None = None
  7425. SPOOLBUDDY_WATCHDOG_INTERVAL = 15
  7426. async def _spoolbuddy_watchdog_loop():
  7427. """Periodic check for SpoolBuddy devices that have gone offline."""
  7428. from backend.app.api.routes.spoolbuddy import spoolbuddy_watchdog
  7429. while True:
  7430. try:
  7431. await spoolbuddy_watchdog()
  7432. except asyncio.CancelledError:
  7433. break
  7434. except Exception as e:
  7435. logging.getLogger(__name__).warning("SpoolBuddy watchdog failed: %s", e)
  7436. await asyncio.sleep(SPOOLBUDDY_WATCHDOG_INTERVAL)
  7437. def start_spoolbuddy_watchdog():
  7438. global _spoolbuddy_watchdog_task
  7439. if _spoolbuddy_watchdog_task is None:
  7440. _spoolbuddy_watchdog_task = asyncio.create_task(_spoolbuddy_watchdog_loop())
  7441. logging.getLogger(__name__).info("SpoolBuddy watchdog started")
  7442. def stop_spoolbuddy_watchdog():
  7443. global _spoolbuddy_watchdog_task
  7444. if _spoolbuddy_watchdog_task:
  7445. _spoolbuddy_watchdog_task.cancel()
  7446. _spoolbuddy_watchdog_task = None
  7447. logging.getLogger(__name__).info("SpoolBuddy watchdog stopped")
  7448. # Dead-MQTT-session recovery
  7449. #
  7450. # check_staleness() covers the "connected but silent" half-broken session. It
  7451. # does nothing once ``state.connected`` is False, and paho's own auto-reconnect
  7452. # is the only thing left watching at that point. When paho stops making
  7453. # progress there is no backstop at all: the #2732 bundle has a P1S drop on a
  7454. # keep-alive timeout at 02:19 and not reconnect until 11:24 — nine hours
  7455. # offline with the UI open the whole time, recovered only when something
  7456. # happened to nudge it.
  7457. #
  7458. # This loop is that backstop. It only touches printers that had a working
  7459. # session and lost it, and only when the MQTT port still answers — a printer
  7460. # that is simply switched off is left to paho, since rebuilding a client
  7461. # against an unreachable host achieves nothing and would fill the log every
  7462. # night.
  7463. _connection_watchdog_task: asyncio.Task | None = None
  7464. CONNECTION_WATCHDOG_INTERVAL = 60
  7465. # How long a printer must have been silent before we stop trusting paho.
  7466. # Comfortably above STALE_TIMEOUT (60 s) and the max reconnect backoff (30 s),
  7467. # so a session that is recovering on its own is never interrupted.
  7468. CONNECTION_WATCHDOG_OFFLINE_GRACE = 300
  7469. # Per-printer floor between rebuild attempts.
  7470. CONNECTION_WATCHDOG_RETRY_INTERVAL = 300
  7471. _connection_watchdog_last_attempt: dict[int, float] = {}
  7472. async def _recover_dead_printer_sessions() -> int:
  7473. """Rebuild MQTT clients that have been offline too long to still be trying.
  7474. Returns the number of printers a rebuild was attempted for (for tests and
  7475. for the caller's logging). Never raises: one unreachable printer must not
  7476. stop the sweep for the rest of the farm.
  7477. """
  7478. logger = logging.getLogger(__name__)
  7479. from backend.app.services.printer_diagnostic import PORT_MQTT, check_port
  7480. now = time.monotonic()
  7481. recovered = 0
  7482. for printer_id, client in list(printer_manager._clients.items()):
  7483. try:
  7484. if client.state.connected:
  7485. _connection_watchdog_last_attempt.pop(printer_id, None)
  7486. continue
  7487. # Time since the last inbound message is the age of the last known
  7488. # good session — no extra bookkeeping needed, and it is the same
  7489. # clock is_stale() reads. 0 means this client has never had one:
  7490. # that is the initial-connect path, where paho retrying is the
  7491. # correct and only behaviour, so leave it be.
  7492. last_msg = client._last_message_time
  7493. if not last_msg:
  7494. continue
  7495. offline_for = time.time() - last_msg
  7496. if offline_for < CONNECTION_WATCHDOG_OFFLINE_GRACE:
  7497. continue
  7498. last_attempt = _connection_watchdog_last_attempt.get(printer_id)
  7499. if last_attempt is not None and now - last_attempt < CONNECTION_WATCHDOG_RETRY_INTERVAL:
  7500. continue
  7501. if not await check_port(client.ip_address, PORT_MQTT):
  7502. # Switched off, unplugged, or off the network. Paho's retry is
  7503. # the right handler; say so at debug level and move on.
  7504. logger.debug(
  7505. "[#2732] Printer %s offline for %.0fs and its MQTT port is not answering "
  7506. "— leaving the reconnect to paho",
  7507. printer_id,
  7508. offline_for,
  7509. )
  7510. _connection_watchdog_last_attempt[printer_id] = now
  7511. continue
  7512. _connection_watchdog_last_attempt[printer_id] = now
  7513. recovered += 1
  7514. logger.warning(
  7515. "[#2732] Printer %s has been offline for %.0fs but answers on MQTT port %d — "
  7516. "rebuilding the client with a fresh session (last connect error: %s)",
  7517. printer_id,
  7518. offline_for,
  7519. PORT_MQTT,
  7520. client.last_connect_error or "none recorded",
  7521. )
  7522. # Async context, so this takes the hard-reset path: fresh client_id,
  7523. # paho's QoS 1 queue dropped. That matters — a project_file left
  7524. # unacked on the dead session would otherwise replay into the new
  7525. # one and trip 0500_4003 on the printer (#1136).
  7526. client.force_reconnect_stale_session(f"offline for {offline_for:.0f}s, port still answering")
  7527. except Exception as e:
  7528. logger.warning("[#2732] Connection watchdog failed for printer %s: %s", printer_id, e)
  7529. return recovered
  7530. async def _connection_watchdog_loop():
  7531. logger = logging.getLogger(__name__)
  7532. # Let the initial connects settle before judging anyone offline.
  7533. await asyncio.sleep(CONNECTION_WATCHDOG_OFFLINE_GRACE)
  7534. while True:
  7535. try:
  7536. await _recover_dead_printer_sessions()
  7537. except asyncio.CancelledError:
  7538. break
  7539. except Exception as e:
  7540. logger.warning("Connection watchdog sweep failed: %s", e)
  7541. await asyncio.sleep(CONNECTION_WATCHDOG_INTERVAL)
  7542. def start_connection_watchdog():
  7543. global _connection_watchdog_task
  7544. if _connection_watchdog_task is None:
  7545. _connection_watchdog_task = asyncio.create_task(_connection_watchdog_loop())
  7546. logging.getLogger(__name__).info("Printer connection watchdog started")
  7547. def stop_connection_watchdog():
  7548. global _connection_watchdog_task
  7549. if _connection_watchdog_task:
  7550. _connection_watchdog_task.cancel()
  7551. _connection_watchdog_task = None
  7552. _connection_watchdog_last_attempt.clear()
  7553. logging.getLogger(__name__).info("Printer connection watchdog stopped")
  7554. # Camera stream orphan cleanup
  7555. _camera_cleanup_task: asyncio.Task | None = None
  7556. CAMERA_CLEANUP_INTERVAL = 60
  7557. async def _camera_cleanup_loop():
  7558. """Periodically clean up orphaned ffmpeg processes."""
  7559. from backend.app.api.routes.camera import cleanup_orphaned_streams
  7560. while True:
  7561. try:
  7562. await cleanup_orphaned_streams()
  7563. except asyncio.CancelledError:
  7564. break
  7565. except Exception as e:
  7566. logging.getLogger(__name__).warning("Camera stream cleanup failed: %s", e)
  7567. await asyncio.sleep(CAMERA_CLEANUP_INTERVAL)
  7568. def start_camera_cleanup():
  7569. global _camera_cleanup_task
  7570. if _camera_cleanup_task is None:
  7571. _camera_cleanup_task = asyncio.create_task(_camera_cleanup_loop())
  7572. logging.getLogger(__name__).info("Camera stream cleanup started")
  7573. def stop_camera_cleanup():
  7574. global _camera_cleanup_task
  7575. if _camera_cleanup_task:
  7576. _camera_cleanup_task.cancel()
  7577. _camera_cleanup_task = None
  7578. logging.getLogger(__name__).info("Camera stream cleanup stopped")
  7579. # ---------------------------------------------------------------------------
  7580. # Expected-print TTL eviction
  7581. # ---------------------------------------------------------------------------
  7582. def _evict_stale_expected_prints() -> None:
  7583. """Remove entries from _expected_prints / _expected_print_creators that are
  7584. older than _EXPECTED_PRINT_TTL_SECONDS.
  7585. This prevents unbounded growth when a print is registered (via
  7586. register_expected_print) but on_print_start never fires — e.g. because the
  7587. printer disconnects, the app restarts, or the print is started directly from
  7588. the printer panel without going through the queue.
  7589. """
  7590. # Use monotonic time so the TTL is unaffected by system clock adjustments
  7591. # (e.g. NTP sync, DST changes).
  7592. cutoff = time.monotonic() - _EXPECTED_PRINT_TTL_SECONDS
  7593. stale_keys = [k for k, t in _expected_print_registered_at.items() if t < cutoff]
  7594. if not stale_keys:
  7595. return
  7596. evicted_archive_ids: set[int] = set()
  7597. for key in stale_keys:
  7598. archive_id = _expected_prints.pop(key, None)
  7599. if archive_id is not None:
  7600. evicted_archive_ids.add(archive_id)
  7601. _expected_print_creators.pop(key, None)
  7602. _expected_print_registered_at.pop(key, None)
  7603. # Also clean up _print_ams_mappings and _print_plate_ids for archive_ids
  7604. # that have no remaining live keys in _expected_prints (all variants
  7605. # were just evicted).
  7606. live_archive_ids = set(_expected_prints.values())
  7607. for archive_id in evicted_archive_ids:
  7608. if archive_id not in live_archive_ids:
  7609. _print_ams_mappings.pop(archive_id, None)
  7610. _print_cost_center_ids.pop(archive_id, None)
  7611. _print_plate_ids.pop(archive_id, None)
  7612. logging.getLogger(__name__).info(
  7613. "Evicted %d stale expected-print entries (TTL=%ds)", len(stale_keys), _EXPECTED_PRINT_TTL_SECONDS
  7614. )
  7615. async def _expected_prints_cleanup_loop() -> None:
  7616. """Background task: periodically evict stale expected-print entries."""
  7617. while True:
  7618. try:
  7619. _evict_stale_expected_prints()
  7620. except asyncio.CancelledError:
  7621. raise
  7622. except Exception as e:
  7623. logging.getLogger(__name__).warning("Expected prints cleanup failed: %s", e)
  7624. await asyncio.sleep(_EXPECTED_PRINT_CLEANUP_INTERVAL)
  7625. def start_expected_prints_cleanup() -> None:
  7626. global _expected_prints_cleanup_task
  7627. if _expected_prints_cleanup_task is None:
  7628. _expected_prints_cleanup_task = asyncio.create_task(_expected_prints_cleanup_loop())
  7629. logging.getLogger(__name__).info("Expected prints cleanup started")
  7630. def stop_expected_prints_cleanup() -> None:
  7631. global _expected_prints_cleanup_task
  7632. if _expected_prints_cleanup_task:
  7633. _expected_prints_cleanup_task.cancel()
  7634. _expected_prints_cleanup_task = None
  7635. logging.getLogger(__name__).info("Expected prints cleanup stopped")
  7636. # ---------------------------------------------------------------------------
  7637. # L-2: Periodic auth-token cleanup (stale TOTP + expired revoked JTIs)
  7638. # ---------------------------------------------------------------------------
  7639. _auth_cleanup_task: asyncio.Task | None = None
  7640. _AUTH_CLEANUP_INTERVAL = 3600 # seconds (hourly)
  7641. async def _run_auth_cleanup() -> None:
  7642. """Single cleanup pass: remove stale TOTP records, expired revoked JTIs, and old rate-limit events."""
  7643. from backend.app.core.database import async_session
  7644. from backend.app.models.auth_ephemeral import AuthEphemeralToken, AuthRateLimitEvent
  7645. from backend.app.models.user_totp import UserTOTP
  7646. now = datetime.now(timezone.utc)
  7647. # Remove unconfirmed (is_enabled=False) TOTP records older than 1 hour.
  7648. try:
  7649. async with async_session() as db:
  7650. stale_cutoff = now - timedelta(hours=1)
  7651. result = await db.execute(
  7652. select(UserTOTP).where(
  7653. UserTOTP.is_enabled.is_(False),
  7654. UserTOTP.created_at < stale_cutoff,
  7655. )
  7656. )
  7657. stale_records = result.scalars().all()
  7658. if stale_records:
  7659. for rec in stale_records:
  7660. await db.delete(rec)
  7661. await db.commit()
  7662. logging.info("Auth cleanup: removed %d stale unconfirmed TOTP record(s)", len(stale_records))
  7663. except Exception as e:
  7664. logging.warning("Auth cleanup: failed to purge stale TOTP records: %s", e)
  7665. # Remove expired revoked-JTI entries (they are no longer needed once the
  7666. # original token's exp has passed — the token would be rejected by JWT
  7667. # signature verification regardless).
  7668. try:
  7669. async with async_session() as db:
  7670. await db.execute(
  7671. delete(AuthEphemeralToken).where(
  7672. AuthEphemeralToken.token_type == "revoked_jti",
  7673. AuthEphemeralToken.expires_at < now,
  7674. )
  7675. )
  7676. await db.commit()
  7677. except Exception as e:
  7678. logging.warning("Auth cleanup: failed to purge expired revoked JTIs: %s", e)
  7679. # L-R6-B: Purge AuthRateLimitEvent rows older than the lockout window (15 min).
  7680. # Events outside this window can never affect rate-limit decisions — they only
  7681. # consume DB space. Use the same window constant as the rate limiter so the
  7682. # two are always in sync.
  7683. try:
  7684. from backend.app.api.routes.mfa import LOCKOUT_WINDOW
  7685. async with async_session() as db:
  7686. await db.execute(
  7687. delete(AuthRateLimitEvent).where(
  7688. AuthRateLimitEvent.occurred_at < now - LOCKOUT_WINDOW,
  7689. )
  7690. )
  7691. await db.commit()
  7692. except Exception as e:
  7693. logging.warning("Auth cleanup: failed to purge stale rate-limit events: %s", e)
  7694. async def _auth_cleanup_loop() -> None:
  7695. """Periodic background task: run auth cleanup every hour."""
  7696. while True:
  7697. try:
  7698. await _run_auth_cleanup()
  7699. except asyncio.CancelledError:
  7700. break
  7701. except Exception as e:
  7702. logging.warning("Auth cleanup loop error: %s", e)
  7703. await asyncio.sleep(_AUTH_CLEANUP_INTERVAL)
  7704. def start_auth_cleanup() -> None:
  7705. global _auth_cleanup_task
  7706. if _auth_cleanup_task is None:
  7707. _auth_cleanup_task = asyncio.create_task(_auth_cleanup_loop())
  7708. logging.getLogger(__name__).info("Auth periodic cleanup started")
  7709. def stop_auth_cleanup() -> None:
  7710. global _auth_cleanup_task
  7711. if _auth_cleanup_task:
  7712. _auth_cleanup_task.cancel()
  7713. _auth_cleanup_task = None
  7714. logging.getLogger(__name__).info("Auth periodic cleanup stopped")
  7715. @asynccontextmanager
  7716. async def lifespan(app: FastAPI):
  7717. # Startup
  7718. # Install Windows-only asyncio Proactor cleanup-RST filter (#1113) before
  7719. # anything else can spawn tasks that might trip it.
  7720. from backend.app.core.asyncio_handlers import install_proactor_reset_filter
  7721. install_proactor_reset_filter()
  7722. await init_db()
  7723. # Browser download tokens expire after five minutes. Remove abandoned
  7724. # prepared ZIPs at startup as well as before each new preparation so a
  7725. # quiet appliance cannot retain an unusable bundle indefinitely.
  7726. try:
  7727. from backend.app.services.printer_media import prune_stale_printer_file_bundles
  7728. await prune_stale_printer_file_bundles()
  7729. except Exception as exc:
  7730. logging.warning("Failed to prune stale printer download bundles: %s", exc)
  7731. # After migrations, so the is_env_managed column exists. Never raises --
  7732. # a bad BAMBUDDY_OIDC_* value is logged and skipped rather than blocking
  7733. # startup (see apply_env_oidc_provider).
  7734. from backend.app.core.oidc_env import apply_env_oidc_provider
  7735. async with async_session() as oidc_db:
  7736. await apply_env_oidc_provider(oidc_db)
  7737. # Close out batches that finished before `completed` was a reachable status
  7738. # (#342). Without this the Batches tab opens on every batch created since
  7739. # the feature shipped, all still marked active. Never blocks startup.
  7740. try:
  7741. from backend.app.services.print_batch import backfill_batch_statuses
  7742. async with async_session() as batch_db:
  7743. await backfill_batch_statuses(batch_db)
  7744. except Exception as exc:
  7745. logging.warning("[BATCH] Startup status backfill failed: %s", exc)
  7746. # Register an app-scoped httpx client for Bambu Cloud services so
  7747. # per-request BambuCloudService instances reuse the same connection pool
  7748. # (important for routes like /cloud/filament-info that chain many
  7749. # get_setting_detail calls). The shared client stores no region/token
  7750. # state, so the per-request ownership pattern that fixed the region-bleed
  7751. # bug is preserved.
  7752. import httpx as _httpx
  7753. from backend.app.services.bambu_cloud import set_shared_http_client
  7754. from backend.app.services.makerworld import (
  7755. set_shared_http_client as set_shared_makerworld_http_client,
  7756. )
  7757. from backend.app.services.orca_cloud import (
  7758. set_shared_http_client as set_shared_orca_http_client,
  7759. )
  7760. _shared_cloud_http_client = _httpx.AsyncClient(timeout=30.0)
  7761. set_shared_http_client(_shared_cloud_http_client)
  7762. # Reuse the same connection pool for MakerWorld — different host, same
  7763. # keep-alive pool saves a TLS handshake per request.
  7764. set_shared_makerworld_http_client(_shared_cloud_http_client)
  7765. # Same for Orca Cloud — without this the per-request OrcaCloudService()
  7766. # each spun up (and never closed) its own client, leaking sockets.
  7767. set_shared_orca_http_client(_shared_cloud_http_client)
  7768. # Fix queue items stuck with invalid "aborted" status (should be "cancelled").
  7769. # This can happen when a print was cancelled mid-print on versions before this fix.
  7770. try:
  7771. async with async_session() as db:
  7772. from backend.app.models.print_queue import PrintQueueItem
  7773. result = await db.execute(select(PrintQueueItem).where(PrintQueueItem.status == "aborted"))
  7774. aborted_items = result.scalars().all()
  7775. if aborted_items:
  7776. for item in aborted_items:
  7777. item.status = "cancelled"
  7778. await db.commit()
  7779. logging.info("Fixed %d queue item(s) with invalid 'aborted' status → 'cancelled'", len(aborted_items))
  7780. except Exception as e:
  7781. logging.warning("Failed to fix aborted queue items: %s", e)
  7782. # Restore debug logging state from previous session
  7783. await init_debug_logging()
  7784. # Set up printer manager callbacks
  7785. loop = asyncio.get_event_loop()
  7786. printer_manager.set_event_loop(loop)
  7787. printer_manager.set_status_change_callback(on_printer_status_change)
  7788. printer_manager.set_print_start_callback(on_print_start)
  7789. printer_manager.set_print_complete_callback(on_print_complete)
  7790. printer_manager.set_print_running_observed_callback(on_print_running_observed)
  7791. printer_manager.set_finish_photo_moment_callback(on_finish_photo_moment)
  7792. printer_manager.set_ams_change_callback(on_ams_change)
  7793. printer_manager.set_fts_inlet_change_callback(on_fts_inlet_change)
  7794. # Rehydrate persisted awaiting-plate-clear gate (#961) so prompts survive restarts
  7795. await printer_manager.load_awaiting_plate_clear_from_db()
  7796. # Layer change callback for external camera timelapse
  7797. async def on_layer_change(printer_id: int, layer_num: int):
  7798. """Capture timelapse frame on layer change + first layer notification."""
  7799. from backend.app.services.layer_timelapse import on_layer_change as tl_layer_change
  7800. await tl_layer_change(printer_id, layer_num)
  7801. # #1867: bank a recent in-print frame so the finish-photo path has a
  7802. # pre-End-G-code image to use instead of a live grab of a swapped plate.
  7803. # #2547 added `on_print_progress` as a second driver — this one alone
  7804. # stops firing once the final layer begins.
  7805. await _maybe_bank_inprint_frame(printer_id, layer_num)
  7806. # First layer complete notification (layer_num >= 2 means layer 1 is done).
  7807. # Gate on actual printing state — Bambu firmware ticks layer_num during
  7808. # the pre-print calibration sequence (homing / mesh-level / bed scan /
  7809. # nozzle clean), so a bare layer_num check can fire minutes before the
  7810. # first real extrusion. We require gcode_state == RUNNING and
  7811. # mc_print_sub_stage in (0 = "Printing", None) so calibration sub-stages
  7812. # (1, 9, 14, ...) are excluded. The window widens to [2, 10] because if
  7813. # the layer counter advanced past 2 during PREPARE, the next on_layer_change
  7814. # edge fires later; _first_layer_notified stays clear until we actually send
  7815. # so a deferred re-evaluation can win. See issue #1837.
  7816. if 2 <= layer_num <= 10 and not _first_layer_notified.get(printer_id, False):
  7817. client = printer_manager.get_client(printer_id)
  7818. state = client.state if client else None
  7819. if not state or state.state != "RUNNING":
  7820. return
  7821. if state.mc_print_sub_stage not in (None, 0):
  7822. return
  7823. _first_layer_notified[printer_id] = True
  7824. try:
  7825. async with async_session() as db:
  7826. from backend.app.models.printer import Printer
  7827. result = await db.execute(select(Printer).where(Printer.id == printer_id))
  7828. printer = result.scalar_one_or_none()
  7829. if not printer:
  7830. return
  7831. printer_name = printer.name
  7832. filename = (state.subtask_name or state.gcode_file or "Unknown") if state else "Unknown"
  7833. total_layers = state.total_layers if state else 0
  7834. image_data = await _capture_snapshot_for_notification(
  7835. printer_id, printer, logging.getLogger(__name__)
  7836. )
  7837. await notification_service.on_first_layer_complete(
  7838. printer_id, printer_name, filename, total_layers, db, image_data=image_data
  7839. )
  7840. except Exception as e:
  7841. logging.getLogger(__name__).warning("First layer notification failed: %s", e)
  7842. printer_manager.set_layer_change_callback(on_layer_change)
  7843. async def on_print_progress(printer_id: int, percent: int):
  7844. """#2547: keep the in-print frame bank fresh through the final layer.
  7845. `on_layer_change` stops the moment the last layer starts, which on the
  7846. H2C capture that closed #2547 left the bank stale for the three minutes
  7847. that layer took. Progress is the only field that keeps advancing there,
  7848. and it freezes before the End G-code runs — so banking on it stays
  7849. inside the print and never sees a swapped plate.
  7850. """
  7851. client = printer_manager.get_client(printer_id)
  7852. state = client.state if client else None
  7853. await _maybe_bank_inprint_frame(printer_id, state.layer_num if state else 0)
  7854. printer_manager.set_print_progress_callback(on_print_progress)
  7855. # Event-driven bed cooldown: fires whenever bed_temper arrives via MQTT
  7856. async def on_bed_temp_update(printer_id: int, bed_temp: float):
  7857. waiter = _bed_cool_waiters.get(printer_id)
  7858. if not waiter:
  7859. return
  7860. threshold = waiter["threshold"]
  7861. if bed_temp > threshold:
  7862. return
  7863. # Bed is at or below threshold — fire notification and remove waiter
  7864. waiter_info = _bed_cool_waiters.pop(printer_id, None)
  7865. if not waiter_info:
  7866. return # Another callback already handled it
  7867. bed_cool_logger = logging.getLogger(__name__)
  7868. bed_cool_logger.info(
  7869. "[BED-COOL] Bed cooled to %.1f°C on printer %s (threshold: %.0f°C)",
  7870. bed_temp,
  7871. printer_id,
  7872. threshold,
  7873. )
  7874. try:
  7875. printer_info = printer_manager.get_printer(printer_id)
  7876. p_name = printer_info.name if printer_info else "Unknown"
  7877. async with async_session() as db:
  7878. await notification_service.on_bed_cooled(
  7879. printer_id=printer_id,
  7880. printer_name=p_name,
  7881. bed_temp=bed_temp,
  7882. threshold=threshold,
  7883. filename=waiter_info["filename"],
  7884. db=db,
  7885. )
  7886. except Exception as e:
  7887. bed_cool_logger.warning("[BED-COOL] Failed to send notification: %s", e)
  7888. printer_manager.set_bed_temp_update_callback(on_bed_temp_update)
  7889. async def on_drying_complete(printer_id: int, ams_id: int):
  7890. """Smart-plug auto-off-after-drying trigger (#1349).
  7891. Fires once per AMS unit when ``dry_time`` falls from >0 to 0. The
  7892. manager walks all plugs linked to this printer and turns off only
  7893. the ones with ``auto_off_after_drying`` enabled, after their
  7894. per-plug delay. Multiple AMS units finishing close together (e.g. a
  7895. dual-AMS dry that ends within the same MQTT push) call this once
  7896. per unit — the manager's ``_cancel_pending_off`` collapses
  7897. repeated scheduling on the same plug to one timer, so duplicate
  7898. fires are safe.
  7899. """
  7900. try:
  7901. async with async_session() as db:
  7902. await smart_plug_manager.on_drying_complete(printer_id, db)
  7903. except Exception as e:
  7904. logging.getLogger(__name__).warning(
  7905. "Failed to schedule auto-off-after-drying for printer %d (AMS %d): %s",
  7906. printer_id,
  7907. ams_id,
  7908. e,
  7909. )
  7910. printer_manager.set_drying_complete_callback(on_drying_complete)
  7911. async def on_assignment_verified(printer_id: int, ams_id: int, tray_id: int, verified: bool, detail: dict):
  7912. """Surface the read-back result of a spool assignment to the UI (#2582).
  7913. The MQTT client confirms (or fails to confirm) that the tray telemetry
  7914. echoed back the filament id we pushed. We relay that as a websocket
  7915. event so the frontend can toast "loaded" / "assignment didn't take"
  7916. instead of the historic silent fire-and-forget, which made the
  7917. AMS→Studio hand-off feel random to users.
  7918. """
  7919. try:
  7920. from backend.app.services.spool_assignment_notifications import (
  7921. _slot_label_from_global_tray,
  7922. )
  7923. if ams_id == 255:
  7924. global_id = 254 + tray_id
  7925. elif ams_id >= 128:
  7926. global_id = ams_id
  7927. else:
  7928. global_id = ams_id * 4 + tray_id
  7929. slot_label = _slot_label_from_global_tray(global_id)
  7930. printer_info = printer_manager.get_printer(printer_id)
  7931. printer_name = printer_info.name if printer_info else f"Printer {printer_id}"
  7932. await ws_manager.broadcast(
  7933. {
  7934. "type": "spool_assignment_verified",
  7935. "printer_id": printer_id,
  7936. "printer_name": printer_name,
  7937. "ams_id": ams_id,
  7938. "tray_id": tray_id,
  7939. "slot": slot_label,
  7940. "verified": verified,
  7941. # Present on success: False means the filament setting landed
  7942. # but the K-profile (cali_idx) did not — the reporter's exact
  7943. # "loaded but no flow profile" symptom.
  7944. "kprofile_applied": detail.get("kprofile_applied", True),
  7945. # Present on failure: whether any tray telemetry was seen in
  7946. # the window (distinguishes "printer silent" from "printer
  7947. # stored something else").
  7948. "saw_tray": detail.get("saw_tray", False),
  7949. }
  7950. )
  7951. except Exception as e:
  7952. logging.getLogger(__name__).warning(
  7953. "Failed to broadcast assignment verification for printer %d AMS%d-T%d: %s",
  7954. printer_id,
  7955. ams_id,
  7956. tray_id,
  7957. e,
  7958. )
  7959. printer_manager.set_assignment_verified_callback(on_assignment_verified)
  7960. async def on_tray_change(printer_id: int, tray_global: int, layer_num: int):
  7961. """Persist a mid-print tray change for completion-time attribution.
  7962. AMS filament backup switches trays without telling the slicer, so the
  7963. tray-change log is the only record of which spool fed which layers.
  7964. Keeping it only in memory meant a restart mid-print charged everything
  7965. to the tray that finished the job.
  7966. """
  7967. try:
  7968. from backend.app.services.usage_tracker import record_tray_change
  7969. async with async_session() as db:
  7970. await record_tray_change(db, printer_id, tray_global, layer_num)
  7971. except Exception as e:
  7972. logging.getLogger(__name__).warning(
  7973. "Failed to persist tray change for printer %d (tray=%d, layer=%d): %s",
  7974. printer_id,
  7975. tray_global,
  7976. layer_num,
  7977. e,
  7978. )
  7979. printer_manager.set_tray_change_callback(on_tray_change)
  7980. # Initialize MQTT relay from settings
  7981. async with async_session() as db:
  7982. from backend.app.api.routes.settings import get_setting
  7983. mqtt_settings = {
  7984. "mqtt_enabled": (await get_setting(db, "mqtt_enabled") or "false") == "true",
  7985. "mqtt_broker": await get_setting(db, "mqtt_broker") or "",
  7986. "mqtt_port": int(await get_setting(db, "mqtt_port") or "1883"),
  7987. "mqtt_username": await get_setting(db, "mqtt_username") or "",
  7988. "mqtt_password": await get_setting(db, "mqtt_password") or "",
  7989. "mqtt_topic_prefix": await get_setting(db, "mqtt_topic_prefix") or "bambuddy",
  7990. "mqtt_use_tls": (await get_setting(db, "mqtt_use_tls") or "false") == "true",
  7991. }
  7992. await mqtt_relay.configure(mqtt_settings)
  7993. # Restore MQTT smart plug subscriptions
  7994. if mqtt_settings.get("mqtt_enabled"):
  7995. from backend.app.models.smart_plug import SmartPlug
  7996. from backend.app.services.mqtt_smart_plug import subscribe_plug_to_mqtt
  7997. result = await db.execute(select(SmartPlug).where(SmartPlug.plug_type == "mqtt"))
  7998. mqtt_plugs = result.scalars().all()
  7999. restored = 0
  8000. for plug in mqtt_plugs:
  8001. if subscribe_plug_to_mqtt(mqtt_relay.smart_plug_service, plug):
  8002. restored += 1
  8003. if restored:
  8004. logging.info("Restored %s MQTT smart plug subscriptions", restored)
  8005. # Connect to all active printers
  8006. async with async_session() as db:
  8007. await init_printer_connections(db)
  8008. # Auto-connect to Spoolman if enabled
  8009. async with async_session() as db:
  8010. from backend.app.api.routes.settings import get_setting
  8011. spoolman_enabled = await get_setting(db, "spoolman_enabled")
  8012. spoolman_url = await get_setting(db, "spoolman_url")
  8013. if spoolman_enabled and spoolman_enabled.lower() == "true" and spoolman_url:
  8014. try:
  8015. client = await init_spoolman_client(spoolman_url)
  8016. if await client.health_check():
  8017. logging.info("Auto-connected to Spoolman at %s", spoolman_url)
  8018. # Ensure the 'tag' extra field exists for RFID/UUID storage
  8019. field_ok = await client.ensure_tag_extra_field()
  8020. if not field_ok:
  8021. logging.error("Spoolman tag extra field registration failed — NFC tag links may not persist")
  8022. # Register the BambuStudio slicer-preset fields used by the
  8023. # spool-edit / assign flow. Spoolman rejects PATCHes with
  8024. # unknown extra keys, so these must exist before any update
  8025. # that touches them.
  8026. for field_name in ("bambu_slicer_filament", "bambu_slicer_filament_name"):
  8027. if not await client.ensure_extra_field(field_name):
  8028. logging.warning(
  8029. "Spoolman extra field %r registration failed — "
  8030. "spool slicer-preset edits will return 502",
  8031. field_name,
  8032. )
  8033. else:
  8034. logging.warning("Spoolman at %s is not reachable", spoolman_url)
  8035. except Exception as e:
  8036. logging.warning("Failed to auto-connect to Spoolman: %s", e)
  8037. # Start the print scheduler
  8038. spawn_background_task(print_scheduler.run(), name="print-scheduler")
  8039. # Start the smart plug scheduler for time-based on/off
  8040. smart_plug_manager.start_scheduler()
  8041. # Start the Home Assistant sensor poller (#1148)
  8042. ha_sensor_manager.start()
  8043. location_ha_sensor_manager.start()
  8044. # Resume any pending auto-offs that were interrupted by restart
  8045. await smart_plug_manager.resume_pending_auto_offs()
  8046. # Start the notification digest scheduler
  8047. notification_service.start_digest_scheduler()
  8048. # Start the GitHub backup scheduler
  8049. await github_backup_service.start_scheduler()
  8050. # Start the local backup scheduler
  8051. await local_backup_service.start_scheduler()
  8052. await obico_detection_service.start()
  8053. # Start the library trash sweeper (#1008)
  8054. await library_trash_service.start_scheduler()
  8055. # Start the archive auto-purge sweeper (#1008 follow-up)
  8056. await archive_purge_service.start_scheduler()
  8057. # Start AMS history recording
  8058. start_ams_history_recording()
  8059. # Start printer sensor (nozzle / bed / chamber) history recording
  8060. start_printer_sensor_history_recording()
  8061. # Start printer runtime tracking
  8062. start_runtime_tracking()
  8063. # Start SpoolBuddy device watchdog
  8064. start_spoolbuddy_watchdog()
  8065. # Start camera stream orphan cleanup
  8066. start_camera_cleanup()
  8067. # Start the backstop for MQTT sessions paho has stopped recovering (#2732)
  8068. start_connection_watchdog()
  8069. # One-shot sweep for timelapse session directories orphaned by a crash
  8070. # or restart that happened mid-print (in-memory session tracking can't
  8071. # survive that, and nothing else reaps the leftover frames/output file)
  8072. try:
  8073. from backend.app.services.layer_timelapse import cleanup_orphaned_timelapse_sessions
  8074. removed = cleanup_orphaned_timelapse_sessions()
  8075. if removed:
  8076. logging.getLogger(__name__).info("Removed %d orphaned timelapse session artifact(s)", removed)
  8077. except Exception as e:
  8078. logging.getLogger(__name__).warning("Orphaned timelapse session cleanup failed: %s", e)
  8079. # Start expected-print TTL eviction (prevents memory leak when prints are
  8080. # registered but on_print_start never fires)
  8081. start_expected_prints_cleanup()
  8082. # L-2: Start periodic auth cleanup (stale TOTP + expired revoked JTIs)
  8083. start_auth_cleanup()
  8084. from backend.app.services.printer_media import start_printer_download_cleanup
  8085. start_printer_download_cleanup()
  8086. # Event-loop stall watchdog: dumps all thread stacks to stderr if the loop
  8087. # freezes (#1486 — silent "container hangs after adding a printer" reports).
  8088. from backend.app.services.loop_watchdog import start_loop_watchdog
  8089. start_loop_watchdog()
  8090. # Initialize virtual printer manager and sync from DB
  8091. from backend.app.services.virtual_printer import virtual_printer_manager
  8092. virtual_printer_manager.set_session_factory(async_session)
  8093. virtual_printer_manager.set_printer_manager(printer_manager)
  8094. try:
  8095. await virtual_printer_manager.sync_from_db()
  8096. logging.info("Virtual printer manager synced from database")
  8097. except Exception as e:
  8098. logging.warning("Failed to sync virtual printers: %s", e)
  8099. yield
  8100. # Shutdown
  8101. print_scheduler.stop()
  8102. smart_plug_manager.stop_scheduler()
  8103. ha_sensor_manager.stop()
  8104. location_ha_sensor_manager.stop()
  8105. notification_service.stop_digest_scheduler()
  8106. github_backup_service.stop_scheduler()
  8107. local_backup_service.stop_scheduler()
  8108. library_trash_service.stop_scheduler()
  8109. archive_purge_service.stop_scheduler()
  8110. obico_detection_service.stop()
  8111. stop_ams_history_recording()
  8112. stop_printer_sensor_history_recording()
  8113. stop_runtime_tracking()
  8114. stop_spoolbuddy_watchdog()
  8115. stop_camera_cleanup()
  8116. stop_connection_watchdog()
  8117. from backend.app.services.loop_watchdog import stop_loop_watchdog
  8118. stop_loop_watchdog()
  8119. # Tear down all camera fan-out broadcasters (#1089) so subscribers exit
  8120. # cleanly rather than waiting on a queue that nothing will ever fill.
  8121. try:
  8122. from backend.app.services.camera_fanout import shutdown_all_broadcasters
  8123. await shutdown_all_broadcasters()
  8124. except Exception as e:
  8125. logging.warning("Failed to shut down camera broadcasters: %s", e)
  8126. stop_expected_prints_cleanup()
  8127. stop_auth_cleanup()
  8128. from backend.app.services.printer_media import stop_printer_download_cleanup
  8129. await stop_printer_download_cleanup()
  8130. printer_manager.disconnect_all()
  8131. await close_spoolman_client()
  8132. # Stop all virtual printer services
  8133. await virtual_printer_manager.stop_all()
  8134. await mqtt_smart_plug_service.disconnect(timeout=2)
  8135. await mqtt_relay.disconnect(timeout=2)
  8136. # Drop the shared Bambu Cloud HTTP client we registered at startup.
  8137. set_shared_http_client(None)
  8138. set_shared_makerworld_http_client(None)
  8139. set_shared_orca_http_client(None)
  8140. await _shared_cloud_http_client.aclose()
  8141. # Checkpoint WAL (SQLite only) and close all database connections
  8142. from backend.app.core.db_dialect import is_sqlite
  8143. if is_sqlite():
  8144. try:
  8145. async with engine.begin() as conn:
  8146. await conn.execute(text("PRAGMA wal_checkpoint(TRUNCATE)"))
  8147. logging.info("WAL checkpoint completed")
  8148. except Exception as e:
  8149. logging.warning("WAL checkpoint failed: %s", e)
  8150. await engine.dispose()
  8151. app = FastAPI(
  8152. title=app_settings.app_name,
  8153. description="Archive and manage Bambu Lab 3MF files",
  8154. version=APP_VERSION,
  8155. lifespan=lifespan,
  8156. )
  8157. # =============================================================================
  8158. # Authentication Middleware - Secures ALL API routes by default
  8159. # =============================================================================
  8160. # Public routes that don't require authentication even when auth is enabled
  8161. PUBLIC_API_ROUTES = {
  8162. # Auth routes needed before/during login
  8163. "/api/v1/auth/status",
  8164. "/api/v1/auth/login",
  8165. "/api/v1/auth/setup", # Needed for initial setup and recovery
  8166. # Advanced auth status needed for login page
  8167. "/api/v1/auth/advanced-auth/status",
  8168. "/api/v1/auth/forgot-password", # Password reset for advanced auth
  8169. "/api/v1/auth/forgot-password/confirm", # Complete password reset with token (H-6)
  8170. # 2FA routes that are called BEFORE a JWT is issued (pre-auth flow)
  8171. "/api/v1/auth/2fa/verify", # Exchange pre_auth_token + 2FA code for JWT
  8172. "/api/v1/auth/2fa/email/send", # Send OTP email (pre_auth_token based)
  8173. # OIDC routes that must be reachable without a JWT
  8174. "/api/v1/auth/oidc/providers", # Public list of enabled providers
  8175. "/api/v1/auth/oidc/callback", # Redirect target from OIDC provider
  8176. "/api/v1/auth/oidc/exchange", # Exchange short-lived OIDC token for JWT
  8177. # Version check for updates (no sensitive data)
  8178. "/api/v1/updates/version",
  8179. # Metrics endpoint handles its own prometheus_token authentication
  8180. "/api/v1/metrics",
  8181. # Appliance bootstrap (#1589 follow-up): the SPA's i18n setup polls
  8182. # this BEFORE a JWT is available to pick up the firstboot wizard's
  8183. # hostname / timezone / locale and the chrony NTP-gate state. The
  8184. # response contains user-set defaults and a public sync flag — no
  8185. # secrets. Without this entry the global auth middleware returns 401
  8186. # before the route handler runs, regardless of the route's own
  8187. # "no auth required" intent.
  8188. "/api/v1/system/appliance",
  8189. # Cam Wall kiosk feed (#2531): a TV or Pi in kiosk mode has no login, so it
  8190. # authenticates with a long-lived ``camwall``-scoped token in the query
  8191. # string — exactly like the camera streams two lists below, and for the same
  8192. # reason (no header to put a JWT in). "Public" here only means the middleware
  8193. # steps aside; the route still runs RequireCamWallTokenIfAuthEnabled, which
  8194. # rejects an absent, expired, revoked, or wrong-scoped token. In particular a
  8195. # plain ``camera_stream`` token does NOT open this door.
  8196. "/api/v1/camwall/printers",
  8197. }
  8198. # Route prefixes that are public (for routes with dynamic segments)
  8199. PUBLIC_API_PREFIXES = [
  8200. # WebSocket connections handle their own auth
  8201. "/api/v1/ws",
  8202. # OIDC authorize redirects — include provider_id in path
  8203. "/api/v1/auth/oidc/authorize/",
  8204. ]
  8205. # Route patterns that are public (read-only display data)
  8206. # These are checked with "in path" - needed because browsers load images/videos
  8207. # via <img src> and <video src> which don't include Authorization headers
  8208. PUBLIC_API_PATTERNS = [
  8209. # Thumbnails
  8210. "/thumbnail", # /archives/{id}/thumbnail, /library/files/{id}/thumbnail
  8211. "/plate-thumbnail/", # /archives/{id}/plate-thumbnail/{plate_id}
  8212. # Images and media
  8213. "/photos/", # /archives/{id}/photos/{filename}
  8214. "/project-image/", # /archives/{id}/project-image/{path}
  8215. "/qrcode", # /archives/{id}/qrcode
  8216. "/timelapse", # /archives/{id}/timelapse (video)
  8217. "/cover", # /printers/{id}/cover
  8218. "/icon", # /external-links/{id}/icon
  8219. # Camera (streams loaded via <img> tag)
  8220. "/camera/stream", # /printers/{id}/camera/stream
  8221. "/camera/snapshot", # /printers/{id}/camera/snapshot
  8222. # Streaming-overlay status feed (#2613): OBS loads /overlay/{id} with no login
  8223. # and this backs it, authenticated by an ``overlay``-scoped token in the query
  8224. # string (same reasoning as the camera streams above — no header to carry a
  8225. # JWT). "Public" only means the middleware steps aside; the route still runs
  8226. # RequireOverlayTokenIfAuthEnabled, which rejects an absent, expired, revoked,
  8227. # or wrong-scoped token — a camwall or camera_stream token does NOT open it.
  8228. "/overlay-status", # /printers/{id}/overlay-status
  8229. # Slicer token-authenticated downloads — protocol handlers (bambustudioopen://,
  8230. # orcaslicer://) cannot send auth headers. These endpoints validate a short-lived
  8231. # download token in the URL path instead.
  8232. "/dl/", # /archives/{id}/dl/{token}/{filename}, /library/files/{id}/dl/{token}/{filename}
  8233. # Obico ML API fetches JPEG frames by one-shot nonce (issue #172 follow-up).
  8234. # The nonce itself is the credential: 32-byte random, single-use, ~30s TTL.
  8235. "/obico/cached-frame/", # /obico/cached-frame/{nonce}
  8236. ]
  8237. _security_headers_logger = logging.getLogger("backend.app.main.security_headers")
  8238. def _parse_trusted_frame_origins() -> tuple[str, ...]:
  8239. """Parse TRUSTED_FRAME_ORIGINS env var into a validated allowlist (#1191).
  8240. Format: comma-separated list of ``scheme://host[:port]`` origins.
  8241. Used by ``security_headers_middleware`` to relax ``frame-ancestors`` for
  8242. trusted same-LAN deployments (e.g. Home Assistant Webpage panel embedding
  8243. Bambuddy from a different port). Defaults to empty — strict ``'none'``.
  8244. Invalid entries are dropped with a warning rather than failing startup, so
  8245. a typo in one origin doesn't take the whole deployment down.
  8246. """
  8247. raw = os.environ.get("TRUSTED_FRAME_ORIGINS", "").strip()
  8248. if not raw:
  8249. return ()
  8250. valid: list[str] = []
  8251. for item in raw.split(","):
  8252. candidate = item.strip()
  8253. if not candidate:
  8254. continue
  8255. try:
  8256. parsed = urlparse(candidate)
  8257. except ValueError as e:
  8258. _security_headers_logger.warning("TRUSTED_FRAME_ORIGINS: dropping %r — %s", candidate, e)
  8259. continue
  8260. if parsed.scheme not in ("http", "https"):
  8261. _security_headers_logger.warning("TRUSTED_FRAME_ORIGINS: dropping %r — must be http(s)", candidate)
  8262. continue
  8263. if not parsed.netloc:
  8264. _security_headers_logger.warning("TRUSTED_FRAME_ORIGINS: dropping %r — missing host", candidate)
  8265. continue
  8266. if parsed.path and parsed.path != "/":
  8267. _security_headers_logger.warning("TRUSTED_FRAME_ORIGINS: dropping %r — paths not allowed", candidate)
  8268. continue
  8269. if parsed.query or parsed.fragment:
  8270. _security_headers_logger.warning(
  8271. "TRUSTED_FRAME_ORIGINS: dropping %r — query/fragment not allowed", candidate
  8272. )
  8273. continue
  8274. if "*" in parsed.netloc:
  8275. _security_headers_logger.warning("TRUSTED_FRAME_ORIGINS: dropping %r — wildcards not allowed", candidate)
  8276. continue
  8277. valid.append(f"{parsed.scheme}://{parsed.netloc}")
  8278. if valid:
  8279. _security_headers_logger.info("TRUSTED_FRAME_ORIGINS: %s", ", ".join(valid))
  8280. return tuple(valid)
  8281. _TRUSTED_FRAME_ORIGINS: tuple[str, ...] = _parse_trusted_frame_origins()
  8282. def _frame_ancestors(default_value: str) -> str:
  8283. """Compose the ``frame-ancestors`` CSP directive (#1191).
  8284. ``default_value`` is the strict directive used when the operator has not
  8285. configured ``TRUSTED_FRAME_ORIGINS`` — typically ``'none'`` (catch-all and
  8286. docs) or ``'self'`` (the streaming overlay, embedded same-origin by the
  8287. Settings URL builder's preview). When trusted origins
  8288. are configured, ``'self'`` is always included so same-origin embedding never
  8289. breaks even if an operator forgets to add their own origin to the list.
  8290. """
  8291. if _TRUSTED_FRAME_ORIGINS:
  8292. return "frame-ancestors 'self' " + " ".join(_TRUSTED_FRAME_ORIGINS) + ";"
  8293. return f"frame-ancestors {default_value};"
  8294. @app.middleware("http")
  8295. async def security_headers_middleware(request, call_next):
  8296. """Add standard HTTP security headers to every response."""
  8297. # Per-request nonce stamped into `script-src` (#1460). On its own this
  8298. # changes nothing for Bambuddy's own pages — index.html has no inline
  8299. # scripts since the SW registration moved to /sw-register.js. The reason
  8300. # it's here is Cloudflare: a CF-fronted deployment has the bot-detection
  8301. # script injected into the HTML on the edge, with a fresh hash on every
  8302. # load (so hashes can't be allowlisted). When CF sees a nonce in our CSP,
  8303. # it clones the same nonce onto its injected <script>, and the inline
  8304. # script passes the policy without us needing 'unsafe-inline'. See
  8305. # https://developers.cloudflare.com/cloudflare-challenges/challenge-types/javascript-detections/#if-you-have-a-content-security-policy-csp
  8306. csp_nonce = secrets.token_urlsafe(16)
  8307. response = await call_next(request)
  8308. response.headers["X-Content-Type-Options"] = "nosniff"
  8309. # X-Frame-Options is the legacy cross-origin embedding control. Modern
  8310. # browsers honour CSP frame-ancestors instead, and the legacy
  8311. # `ALLOW-FROM <url>` syntax is deprecated and inconsistent across vendors.
  8312. # When operators have explicitly allowlisted trusted frame origins (#1191
  8313. # — typically Home Assistant on a different port), drop X-Frame-Options
  8314. # and let the CSP-side frame-ancestors directive govern embedding.
  8315. if not _TRUSTED_FRAME_ORIGINS:
  8316. response.headers["X-Frame-Options"] = "SAMEORIGIN"
  8317. response.headers["Referrer-Policy"] = "strict-origin-when-cross-origin"
  8318. # Content-Security-Policy for the React SPA.
  8319. # Notes:
  8320. # - 'unsafe-inline' for style-src: React and UI libs inject inline styles at runtime.
  8321. # - connect-src ws:/wss:: MQTT/printer WebSocket connections.
  8322. # - img-src data: / blob:: base64 thumbnails and Blob-URL timelapse previews.
  8323. # - media-src blob:: timelapse video player uses Blob URLs.
  8324. # - font-src data:: some icon fonts are embedded as data URIs.
  8325. if request.url.path in ("/docs", "/redoc", "/docs/oauth2-redirect"):
  8326. # FastAPI's built-in Swagger UI / ReDoc pages load assets from
  8327. # cdn.jsdelivr.net and bootstrap with an inline <script>, so the
  8328. # default CSP would render a blank page.
  8329. response.headers["Content-Security-Policy"] = (
  8330. "default-src 'self'; "
  8331. "script-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net; "
  8332. "style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://fonts.googleapis.com; "
  8333. "img-src 'self' data: blob: https://fastapi.tiangolo.com https://cdn.redoc.ly; "
  8334. "connect-src 'self'; "
  8335. "font-src 'self' data: https://fonts.gstatic.com; "
  8336. "worker-src 'self' blob:; "
  8337. "object-src 'none'; "
  8338. "base-uri 'self'; " + _frame_ancestors("'none'")
  8339. )
  8340. else:
  8341. # The streaming overlay is embedded same-origin by the URL builder's
  8342. # preview in Settings (#1422), so this branch allows 'self'.
  8343. # Embedding from anywhere else is still refused: 'self'
  8344. # only permits a framer on this origin, which is Bambuddy's own UI, so
  8345. # a clickjacking page on another host is blocked exactly as before.
  8346. # (The overlay draws status over a camera feed and its only interactive
  8347. # element is the logo link, so there is nothing to bait a click into
  8348. # even from a same-origin framer.) Cross-origin embedding of the
  8349. # overlay — Home Assistant on another port — remains what
  8350. # TRUSTED_FRAME_ORIGINS is for, and _frame_ancestors already folds that
  8351. # allowlist in.
  8352. embeddable_same_origin = request.url.path.startswith("/overlay/")
  8353. response.headers["Content-Security-Policy"] = (
  8354. "default-src 'self'; "
  8355. f"script-src 'self' 'nonce-{csp_nonce}'; "
  8356. "style-src 'self' 'unsafe-inline'; "
  8357. "img-src 'self' data: blob:; "
  8358. "media-src 'self' blob:; "
  8359. "connect-src 'self' ws: wss:; "
  8360. "font-src 'self' data:; "
  8361. "object-src 'none'; "
  8362. "base-uri 'self'; "
  8363. "frame-src 'self' http: https:; " + _frame_ancestors("'self'" if embeddable_same_origin else "'none'")
  8364. )
  8365. if request.url.scheme == "https":
  8366. response.headers["Strict-Transport-Security"] = "max-age=31536000; includeSubDomains"
  8367. return response
  8368. @app.middleware("http")
  8369. async def auth_middleware(request, call_next):
  8370. """Enforce authentication on all API routes when auth is enabled.
  8371. This middleware provides defense-in-depth by checking auth at the API gateway level,
  8372. regardless of whether individual routes have auth dependencies.
  8373. """
  8374. from starlette.responses import JSONResponse
  8375. path = request.url.path
  8376. # Only apply to API routes
  8377. if not path.startswith("/api/"):
  8378. return await call_next(request)
  8379. # Allow public routes
  8380. if path in PUBLIC_API_ROUTES:
  8381. return await call_next(request)
  8382. # Allow public prefixes
  8383. for prefix in PUBLIC_API_PREFIXES:
  8384. if path.startswith(prefix):
  8385. return await call_next(request)
  8386. # Allow public patterns (read-only display data like thumbnails)
  8387. for pattern in PUBLIC_API_PATTERNS:
  8388. if pattern in path:
  8389. return await call_next(request)
  8390. # Check if auth is enabled. Fail CLOSED on any exception during the
  8391. # probe — GHSA-6mf4-q26m-47pv: the previous fail-open path here let
  8392. # an attacker who could force a DB exception (e.g. file-descriptor
  8393. # exhaustion via login flood) bypass auth on every protected endpoint.
  8394. try:
  8395. async with async_session() as db:
  8396. from backend.app.core.auth import is_auth_enabled
  8397. auth_enabled = await is_auth_enabled(db)
  8398. if not auth_enabled:
  8399. # Auth disabled, allow all requests
  8400. return await call_next(request)
  8401. except Exception:
  8402. logging.getLogger(__name__).exception("auth_middleware: failing closed on auth-probe error from %s", path)
  8403. return JSONResponse(
  8404. status_code=503,
  8405. content={"detail": "Authentication service temporarily unavailable"},
  8406. )
  8407. # Auth is enabled - require valid token
  8408. auth_header = request.headers.get("Authorization")
  8409. x_api_key = request.headers.get("X-API-Key")
  8410. # Check for API key auth first
  8411. if x_api_key or (auth_header and auth_header.startswith("Bearer bb_")):
  8412. # API key authentication - let the request through to be validated by route handler
  8413. # API keys are validated per-route since they have different permission levels
  8414. return await call_next(request)
  8415. # Check for JWT auth
  8416. if not auth_header or not auth_header.startswith("Bearer "):
  8417. return JSONResponse(
  8418. status_code=401,
  8419. content={"detail": "Authentication required"},
  8420. headers={"WWW-Authenticate": "Bearer"},
  8421. )
  8422. # Validate JWT token
  8423. import jwt
  8424. try:
  8425. from backend.app.core.auth import (
  8426. ALGORITHM,
  8427. SECRET_KEY,
  8428. _is_token_fresh,
  8429. get_user_by_username,
  8430. is_jti_revoked,
  8431. )
  8432. token = auth_header.replace("Bearer ", "")
  8433. payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])
  8434. username = payload.get("sub")
  8435. if not username:
  8436. raise ValueError("No username in token")
  8437. jti = payload.get("jti")
  8438. if not jti:
  8439. raise ValueError("No jti in token")
  8440. iat = payload.get("iat")
  8441. # Verify user exists, is active, and token is still fresh (L-R8-A).
  8442. # Reject revoked tokens first (defense-in-depth gateway check), reusing
  8443. # this session so the gateway adds a single pooled checkout, not two (#2572).
  8444. async with async_session() as db:
  8445. if await is_jti_revoked(jti, db):
  8446. return JSONResponse(
  8447. status_code=401,
  8448. content={"detail": "Token has been revoked"},
  8449. headers={"WWW-Authenticate": "Bearer"},
  8450. )
  8451. user = await get_user_by_username(db, username)
  8452. if not user or not user.is_active:
  8453. return JSONResponse(
  8454. status_code=401,
  8455. content={"detail": "User not found or inactive"},
  8456. headers={"WWW-Authenticate": "Bearer"},
  8457. )
  8458. if not _is_token_fresh(iat, user):
  8459. return JSONResponse(
  8460. status_code=401,
  8461. content={"detail": "Token no longer valid"},
  8462. headers={"WWW-Authenticate": "Bearer"},
  8463. )
  8464. except jwt.ExpiredSignatureError:
  8465. return JSONResponse(
  8466. status_code=401,
  8467. content={"detail": "Token has expired"},
  8468. headers={"WWW-Authenticate": "Bearer"},
  8469. )
  8470. except (jwt.InvalidTokenError, ValueError, Exception):
  8471. return JSONResponse(
  8472. status_code=401,
  8473. content={"detail": "Invalid token"},
  8474. headers={"WWW-Authenticate": "Bearer"},
  8475. )
  8476. return await call_next(request)
  8477. @app.middleware("http")
  8478. async def trace_id_middleware(request, call_next):
  8479. """Stamp every HTTP request with a trace ID and echo it back.
  8480. Decorated AFTER auth_middleware on purpose: Starlette stacks
  8481. @app.middleware decorators LIFO, so the last-decorated runs first
  8482. inbound. Putting the trace stamp last makes it the OUTERMOST layer,
  8483. which means auth-middleware log lines (and every line emitted on the
  8484. way down to and back from the route handler) all carry the same
  8485. trace ID. If we put it before auth, auth's logs would be stamped
  8486. with the *previous* request's ID — useless for correlation.
  8487. Honours an inbound ``X-Trace-Id`` header so callers running their
  8488. own tracing can correlate their span IDs with our log lines, but
  8489. only if the value passes the whitelist gate in
  8490. ``backend.app.core.trace.normalise_inbound_trace_id`` — anything
  8491. rejected (too long, contains control chars, etc.) silently triggers
  8492. a freshly minted server-side ID rather than failing the request.
  8493. The minted (or echoed) ID is set on a ContextVar so that every log
  8494. record emitted during the request — application logs *and* uvicorn's
  8495. access log — carries it via TraceIDFilter, and is also written to
  8496. the ``X-Trace-Id`` response header so clients can pin a server-side
  8497. log search to the exact request they made.
  8498. """
  8499. from backend.app.core.trace import (
  8500. generate_trace_id,
  8501. normalise_inbound_trace_id,
  8502. trace_id_var,
  8503. )
  8504. inbound = normalise_inbound_trace_id(request.headers.get("X-Trace-Id"))
  8505. trace_id = inbound if inbound is not None else generate_trace_id()
  8506. token = trace_id_var.set(trace_id)
  8507. try:
  8508. response = await call_next(request)
  8509. finally:
  8510. # Reset the ContextVar so a record emitted in a totally
  8511. # unrelated background task that just happens to inherit this
  8512. # context doesn't keep referencing this request's ID forever.
  8513. # In practice ContextVar.reset is best-effort under asyncio
  8514. # task-spawn semantics, but the cost is one attribute write so
  8515. # we may as well do it.
  8516. trace_id_var.reset(token)
  8517. response.headers["X-Trace-Id"] = trace_id
  8518. return response
  8519. # API routes
  8520. app.include_router(auth.router, prefix=app_settings.api_prefix)
  8521. app.include_router(mfa.router, prefix=app_settings.api_prefix)
  8522. app.include_router(bug_report.router, prefix=app_settings.api_prefix)
  8523. app.include_router(users.router, prefix=app_settings.api_prefix)
  8524. app.include_router(groups.router, prefix=app_settings.api_prefix)
  8525. app.include_router(printers.router, prefix=app_settings.api_prefix)
  8526. app.include_router(archives.router, prefix=app_settings.api_prefix)
  8527. app.include_router(filaments.router, prefix=app_settings.api_prefix)
  8528. app.include_router(finance.router, prefix=app_settings.api_prefix)
  8529. app.include_router(inventory.router, prefix=app_settings.api_prefix)
  8530. app.include_router(labels.router, prefix=app_settings.api_prefix)
  8531. app.include_router(settings_routes.router, prefix=app_settings.api_prefix)
  8532. app.include_router(cloud.router, prefix=app_settings.api_prefix)
  8533. app.include_router(orca_cloud.router, prefix=app_settings.api_prefix)
  8534. app.include_router(local_presets.router, prefix=app_settings.api_prefix)
  8535. app.include_router(smart_plugs.router, prefix=app_settings.api_prefix)
  8536. app.include_router(ha_sensors.router, prefix=app_settings.api_prefix)
  8537. app.include_router(location_ha_sensors.router, prefix=app_settings.api_prefix)
  8538. app.include_router(print_log.router, prefix=app_settings.api_prefix)
  8539. app.include_router(print_queue.router, prefix=app_settings.api_prefix)
  8540. app.include_router(scheduled_dryings.router, prefix=app_settings.api_prefix)
  8541. app.include_router(kprofiles.router, prefix=app_settings.api_prefix)
  8542. app.include_router(notifications.router, prefix=app_settings.api_prefix)
  8543. app.include_router(notification_templates.router, prefix=app_settings.api_prefix)
  8544. app.include_router(user_notifications.router, prefix=app_settings.api_prefix)
  8545. app.include_router(spoolman.router, prefix=app_settings.api_prefix)
  8546. app.include_router(spoolman_inventory.router, prefix=app_settings.api_prefix)
  8547. app.include_router(updates.router, prefix=app_settings.api_prefix)
  8548. app.include_router(sponsor_prompt.router, prefix=app_settings.api_prefix)
  8549. app.include_router(maintenance.router, prefix=app_settings.api_prefix)
  8550. app.include_router(camera.router, prefix=app_settings.api_prefix)
  8551. app.include_router(camwall.router, prefix=app_settings.api_prefix)
  8552. app.include_router(external_links.router, prefix=app_settings.api_prefix)
  8553. app.include_router(projects.router, prefix=app_settings.api_prefix)
  8554. app.include_router(library.router, prefix=app_settings.api_prefix)
  8555. app.include_router(library_tags.router, prefix=app_settings.api_prefix)
  8556. app.include_router(library_trash.router, prefix=app_settings.api_prefix)
  8557. app.include_router(library_variants.router, prefix=app_settings.api_prefix)
  8558. app.include_router(slice_jobs.router, prefix=app_settings.api_prefix)
  8559. app.include_router(slicer_pipelines.router, prefix=app_settings.api_prefix)
  8560. app.include_router(pipeline_runs.pipeline_run_create_router, prefix=app_settings.api_prefix)
  8561. app.include_router(pipeline_runs.pipeline_run_router, prefix=app_settings.api_prefix)
  8562. app.include_router(slicer_presets.router, prefix=app_settings.api_prefix)
  8563. app.include_router(archive_purge.router, prefix=app_settings.api_prefix)
  8564. app.include_router(makerworld.router, prefix=app_settings.api_prefix)
  8565. app.include_router(api_keys.router, prefix=app_settings.api_prefix)
  8566. app.include_router(webhook.router, prefix=app_settings.api_prefix)
  8567. app.include_router(ams_history.router, prefix=app_settings.api_prefix)
  8568. app.include_router(printer_sensor_history.router, prefix=app_settings.api_prefix)
  8569. app.include_router(system.router, prefix=app_settings.api_prefix)
  8570. app.include_router(support.router, prefix=app_settings.api_prefix)
  8571. app.include_router(websocket.router, prefix=app_settings.api_prefix)
  8572. app.include_router(discovery.router, prefix=app_settings.api_prefix)
  8573. app.include_router(pending_uploads.router, prefix=app_settings.api_prefix)
  8574. app.include_router(firmware.router, prefix=app_settings.api_prefix)
  8575. app.include_router(github_backup.router, prefix=app_settings.api_prefix)
  8576. app.include_router(local_backup.router, prefix=app_settings.api_prefix)
  8577. app.include_router(obico.router, prefix=app_settings.api_prefix)
  8578. app.include_router(metrics.router, prefix=app_settings.api_prefix)
  8579. app.include_router(virtual_printers.router, prefix=app_settings.api_prefix)
  8580. app.include_router(spoolbuddy.router, prefix=app_settings.api_prefix)
  8581. # Serve static files (React build)
  8582. if app_settings.static_dir.exists() and any(app_settings.static_dir.iterdir()):
  8583. app.mount(
  8584. "/assets",
  8585. StaticFiles(directory=app_settings.static_dir / "assets"),
  8586. name="assets",
  8587. )
  8588. if (app_settings.static_dir / "img").exists():
  8589. app.mount(
  8590. "/img",
  8591. StaticFiles(directory=app_settings.static_dir / "img"),
  8592. name="img",
  8593. )
  8594. if (app_settings.static_dir / "icons").exists():
  8595. app.mount(
  8596. "/icons",
  8597. StaticFiles(directory=app_settings.static_dir / "icons"),
  8598. name="icons",
  8599. )
  8600. # Self-hosted Inter woff2 files (#1460). Without this mount /fonts/*.woff2
  8601. # falls through to the SPA catch-all and returns index.html, which the
  8602. # browser's font sanitizer rejects ("downloadable font: rejected by
  8603. # sanitizer").
  8604. if (app_settings.static_dir / "fonts").exists():
  8605. app.mount(
  8606. "/fonts",
  8607. StaticFiles(directory=app_settings.static_dir / "fonts"),
  8608. name="fonts",
  8609. )
  8610. @app.get("/")
  8611. async def serve_frontend():
  8612. """Serve the React frontend."""
  8613. index_file = app_settings.static_dir / "index.html"
  8614. if index_file.exists():
  8615. return FileResponse(index_file, headers=_HTML_CACHE_HEADERS)
  8616. return {
  8617. "message": "Bambuddy API",
  8618. "docs": "/docs",
  8619. "frontend": "Build and place React app in /static directory",
  8620. }
  8621. # index.html must always be revalidated — Vite emits content-hashed JS/CSS
  8622. # bundles (e.g. `index-JRaF_JhW.js`), so the JS itself is safe to cache
  8623. # forever, but the HTML wrapping it is the only file that knows which hash
  8624. # is current. Without explicit cache-control headers Chromium decides
  8625. # heuristically (typically 10% of the time since Last-Modified) and on
  8626. # long-running kiosks happily serves stale HTML across browser restarts.
  8627. # That stale HTML references an old bundle hash, the old bundle is also
  8628. # in the disk cache, and the user ends up running pre-update JS forever
  8629. # without ever knowing why. ``no-cache`` (revalidate every time, but a
  8630. # 304 is cheap) is the correct setting for an SPA's entry HTML.
  8631. _HTML_CACHE_HEADERS = {"Cache-Control": "no-cache, must-revalidate"}
  8632. @app.get("/health")
  8633. async def health_check():
  8634. """Health check endpoint."""
  8635. return {"status": "healthy"}
  8636. # GET + HEAD on the three PWA bootstrap routes (#1460). Scanners and a plain
  8637. # `curl -I` use HEAD; FastAPI's @app.get only registers GET, so HEAD answers
  8638. # with 405 Method Not Allowed and shows up as a "broken manifest" red herring
  8639. # in deployment debugging.
  8640. @app.api_route("/manifest.json", methods=["GET", "HEAD"])
  8641. async def serve_manifest():
  8642. """Serve PWA manifest."""
  8643. manifest_file = app_settings.static_dir / "manifest.json"
  8644. if manifest_file.exists():
  8645. return FileResponse(manifest_file, media_type="application/manifest+json")
  8646. return {"error": "Manifest not found"}
  8647. @app.api_route("/sw.js", methods=["GET", "HEAD"])
  8648. async def serve_service_worker():
  8649. """Serve service worker."""
  8650. sw_file = app_settings.static_dir / "sw.js"
  8651. if sw_file.exists():
  8652. return FileResponse(
  8653. sw_file,
  8654. media_type="application/javascript",
  8655. headers={"Cache-Control": "no-cache, no-store, must-revalidate"},
  8656. )
  8657. return {"error": "Service worker not found"}
  8658. @app.api_route("/sw-register.js", methods=["GET", "HEAD"])
  8659. async def serve_sw_register():
  8660. """Serve the service-worker registration bootstrap script.
  8661. Served as a real JS file so the strict `script-src 'self'` CSP covers it
  8662. without needing 'unsafe-inline' or per-build hashes on the inline tag.
  8663. """
  8664. reg_file = app_settings.static_dir / "sw-register.js"
  8665. if reg_file.exists():
  8666. return FileResponse(reg_file, media_type="application/javascript")
  8667. return {"error": "sw-register.js not found"}
  8668. # ── GCode viewer static files ────────────────────────────────────────────────
  8669. # Catch-all route for React Router (must be last)
  8670. @app.get("/{full_path:path}")
  8671. async def serve_spa(full_path: str):
  8672. """Serve React app for client-side routing."""
  8673. # Don't intercept API routes - raise proper 404 so FastAPI can handle redirects
  8674. if full_path.startswith("api/"):
  8675. from fastapi import HTTPException
  8676. raise HTTPException(status_code=404, detail="Not found")
  8677. index_file = app_settings.static_dir / "index.html"
  8678. if index_file.exists():
  8679. return FileResponse(index_file, headers=_HTML_CACHE_HEADERS)
  8680. return {"error": "Frontend not built"}