background.js 163 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980
  1. // background.js — Service Worker: orchestration, state, tab management, message routing
  2. importScripts('data/names.js', 'hotmail-utils.js', 'content/activation-utils.js');
  3. const {
  4. buildHotmailGraphMessagesUrl,
  5. extractVerificationCodeFromMessage,
  6. filterHotmailAccountsByUsage,
  7. getLatestHotmailMessage,
  8. getHotmailGraphRequestConfig,
  9. getHotmailVerificationPollConfig,
  10. getHotmailVerificationRequestTimestamp,
  11. normalizeHotmailMailApiMessages,
  12. pickHotmailAccountForRun,
  13. pickVerificationMessage,
  14. pickVerificationMessageWithFallback,
  15. pickVerificationMessageWithTimeFallback,
  16. shouldClearHotmailCurrentSelection,
  17. } = self.HotmailUtils;
  18. const {
  19. isRecoverableStep9AuthFailure,
  20. } = self.MultiPageActivationUtils;
  21. const buildHotmailMailApiLatestUrl = buildHotmailGraphMessagesUrl;
  22. const getHotmailMailApiRequestConfig = getHotmailGraphRequestConfig;
  23. const LOG_PREFIX = '[MultiPage:bg]';
  24. const DUCK_AUTOFILL_URL = 'https://duckduckgo.com/email/settings/autofill';
  25. const HOTMAIL_PROVIDER = 'hotmail-api';
  26. const HOTMAIL_MAILBOXES = ['INBOX', 'Junk'];
  27. const STOP_ERROR_MESSAGE = '流程已被用户停止。';
  28. const HUMAN_STEP_DELAY_MIN = 700;
  29. const HUMAN_STEP_DELAY_MAX = 2200;
  30. const STEP7_RESTART_MAX_ROUNDS = 8;
  31. const SUB2API_STEP1_RESPONSE_TIMEOUT_MS = 90000;
  32. const SUB2API_STEP9_RESPONSE_TIMEOUT_MS = 120000;
  33. const DEFAULT_SUB2API_URL = 'https://sub2api.hisence.fun/admin/accounts';
  34. const DEFAULT_SUB2API_GROUP_NAME = 'codex';
  35. const DEFAULT_SUB2API_REDIRECT_URI = 'http://localhost:1455/auth/callback';
  36. const AUTO_RUN_ALARM_NAME = 'scheduled-auto-run';
  37. const AUTO_RUN_DELAY_MIN_MINUTES = 1;
  38. const AUTO_RUN_DELAY_MAX_MINUTES = 1440;
  39. const AUTO_STEP_DELAY_MIN_ALLOWED_SECONDS = 0;
  40. const AUTO_STEP_DELAY_MAX_ALLOWED_SECONDS = 600;
  41. const LEGACY_AUTO_STEP_DELAY_KEYS = ['autoStepRandomDelayMinSeconds', 'autoStepRandomDelayMaxSeconds'];
  42. const DEFAULT_LOCAL_CPA_STEP9_MODE = 'submit';
  43. initializeSessionStorageAccess();
  44. // ============================================================
  45. // 状态管理(chrome.storage.session + chrome.storage.local)
  46. // ============================================================
  47. const PERSISTED_SETTING_DEFAULTS = {
  48. panelMode: 'cpa',
  49. vpsUrl: '',
  50. vpsPassword: '',
  51. localCpaStep9Mode: DEFAULT_LOCAL_CPA_STEP9_MODE,
  52. sub2apiUrl: DEFAULT_SUB2API_URL,
  53. sub2apiEmail: '',
  54. sub2apiPassword: '',
  55. sub2apiGroupName: DEFAULT_SUB2API_GROUP_NAME,
  56. customPassword: '',
  57. autoRunSkipFailures: false,
  58. autoRunFallbackThreadIntervalMinutes: 0,
  59. autoRunDelayEnabled: false,
  60. autoRunDelayMinutes: 30,
  61. autoStepDelaySeconds: null,
  62. mailProvider: '163',
  63. emailGenerator: 'duck',
  64. emailPrefix: '',
  65. inbucketHost: '',
  66. inbucketMailbox: '',
  67. cloudflareDomain: '',
  68. cloudflareDomains: [],
  69. hotmailAccounts: [],
  70. };
  71. const PERSISTED_SETTING_KEYS = Object.keys(PERSISTED_SETTING_DEFAULTS);
  72. const SETTINGS_EXPORT_SCHEMA_VERSION = 1;
  73. const SETTINGS_EXPORT_FILENAME_PREFIX = 'multipage-settings';
  74. const DEFAULT_STATE = {
  75. currentStep: 0, // 当前流程执行到的步骤编号。
  76. stepStatuses: {
  77. 1: 'pending', 2: 'pending', 3: 'pending', 4: 'pending', 5: 'pending', // 运行时步骤状态映射,不要手动预填。
  78. 6: 'pending', 7: 'pending', 8: 'pending', 9: 'pending',
  79. },
  80. oauthUrl: null, // 运行时抓取到的 OAuth 地址,不要手动预填。
  81. email: null, // 运行时邮箱,由程序自动获取并写入,不能手动预填。
  82. password: null, // 运行时实际密码,由 customPassword 或程序自动生成后写入。
  83. accounts: [], // 已生成账号记录:{ email, password, createdAt }。
  84. lastEmailTimestamp: null, // 最近一次获取到邮箱数据的运行时时间戳。
  85. lastSignupCode: null, // 注册验证码,运行时由程序自动读取并写入。
  86. lastLoginCode: null, // 登录验证码,运行时由程序自动读取并写入。
  87. localhostUrl: null, // 运行时捕获到的 localhost 回调地址,不要手动预填。
  88. sub2apiSessionId: null, // SUB2API OpenAI Auth 会话 ID。
  89. sub2apiOAuthState: null, // SUB2API OpenAI Auth state。
  90. sub2apiGroupId: null, // SUB2API 目标分组 ID。
  91. sub2apiDraftName: null, // SUB2API 本轮预生成的账号名称。
  92. flowStartTime: null, // 当前流程开始时间。
  93. tabRegistry: {}, // 程序维护的标签页注册表。
  94. sourceLastUrls: {}, // 各来源页面最近一次打开的地址记录。
  95. logs: [], // 侧边栏展示的运行日志。
  96. ...PERSISTED_SETTING_DEFAULTS, // 合并 chrome.storage.local 中持久化保存的用户配置。
  97. autoRunning: false, // 当前是否处于自动运行中。
  98. autoRunPhase: 'idle', // 当前自动运行阶段。
  99. autoRunCurrentRun: 0, // 自动运行当前执行到第几轮。
  100. autoRunTotalRuns: 1, // 自动运行计划总轮数。
  101. autoRunAttemptRun: 0, // 当前轮次的重试序号。
  102. scheduledAutoRunAt: null, // 自动运行计划启动时间戳。
  103. scheduledAutoRunPlan: null, // 自动运行计划参数快照。
  104. signupVerificationRequestedAt: null,
  105. loginVerificationRequestedAt: null,
  106. currentHotmailAccountId: null,
  107. };
  108. function normalizeAutoRunDelayMinutes(value) {
  109. const numeric = Number(value);
  110. if (!Number.isFinite(numeric)) {
  111. return PERSISTED_SETTING_DEFAULTS.autoRunDelayMinutes;
  112. }
  113. return Math.min(
  114. AUTO_RUN_DELAY_MAX_MINUTES,
  115. Math.max(AUTO_RUN_DELAY_MIN_MINUTES, Math.floor(numeric))
  116. );
  117. }
  118. function normalizeAutoRunFallbackThreadIntervalMinutes(value) {
  119. const rawValue = String(value ?? '').trim();
  120. if (!rawValue) {
  121. return 0;
  122. }
  123. const numeric = Number(rawValue);
  124. if (!Number.isFinite(numeric)) {
  125. return 0;
  126. }
  127. return Math.min(
  128. AUTO_RUN_DELAY_MAX_MINUTES,
  129. Math.max(0, Math.floor(numeric))
  130. );
  131. }
  132. function normalizeAutoStepDelaySeconds(value, fallback = null) {
  133. const rawValue = String(value ?? '').trim();
  134. if (!rawValue) {
  135. return fallback;
  136. }
  137. const numeric = Number(rawValue);
  138. if (!Number.isFinite(numeric)) {
  139. return fallback;
  140. }
  141. return Math.min(
  142. AUTO_STEP_DELAY_MAX_ALLOWED_SECONDS,
  143. Math.max(AUTO_STEP_DELAY_MIN_ALLOWED_SECONDS, Math.floor(numeric))
  144. );
  145. }
  146. function resolveLegacyAutoStepDelaySeconds(input = {}) {
  147. const hasLegacyMin = input.autoStepRandomDelayMinSeconds !== undefined;
  148. const hasLegacyMax = input.autoStepRandomDelayMaxSeconds !== undefined;
  149. if (!hasLegacyMin && !hasLegacyMax) {
  150. return undefined;
  151. }
  152. const minSeconds = normalizeAutoStepDelaySeconds(input.autoStepRandomDelayMinSeconds, null);
  153. const maxSeconds = normalizeAutoStepDelaySeconds(input.autoStepRandomDelayMaxSeconds, null);
  154. if (minSeconds === null && maxSeconds === null) {
  155. return null;
  156. }
  157. if (minSeconds === null) {
  158. return maxSeconds;
  159. }
  160. if (maxSeconds === null) {
  161. return minSeconds;
  162. }
  163. return Math.round((minSeconds + maxSeconds) / 2);
  164. }
  165. function normalizeRunCount(value) {
  166. const numeric = Number(value);
  167. if (!Number.isFinite(numeric)) {
  168. return 1;
  169. }
  170. return Math.min(50, Math.max(1, Math.floor(numeric)));
  171. }
  172. function normalizeScheduledAutoRunPlan(plan) {
  173. if (!plan || typeof plan !== 'object') {
  174. return null;
  175. }
  176. return {
  177. totalRuns: normalizeRunCount(plan.totalRuns),
  178. autoRunSkipFailures: Boolean(plan.autoRunSkipFailures),
  179. mode: plan.mode === 'continue' ? 'continue' : 'restart',
  180. };
  181. }
  182. function normalizeEmailGenerator(value = '') {
  183. return String(value || '').trim().toLowerCase() === 'cloudflare' ? 'cloudflare' : 'duck';
  184. }
  185. function normalizePanelMode(value = '') {
  186. return String(value || '').trim().toLowerCase() === 'sub2api' ? 'sub2api' : 'cpa';
  187. }
  188. function normalizeMailProvider(value = '') {
  189. const normalized = String(value || '').trim().toLowerCase();
  190. switch (normalized) {
  191. case HOTMAIL_PROVIDER:
  192. case '163':
  193. case '163-vip':
  194. case 'qq':
  195. case 'inbucket':
  196. case '2925':
  197. return normalized;
  198. default:
  199. return PERSISTED_SETTING_DEFAULTS.mailProvider;
  200. }
  201. }
  202. function normalizeLocalCpaStep9Mode(value = '') {
  203. return String(value || '').trim().toLowerCase() === 'bypass'
  204. ? 'bypass'
  205. : DEFAULT_LOCAL_CPA_STEP9_MODE;
  206. }
  207. function normalizeCloudflareDomain(rawValue = '') {
  208. let value = String(rawValue || '').trim().toLowerCase();
  209. if (!value) return '';
  210. value = value.replace(/^@+/, '');
  211. value = value.replace(/^https?:\/\//, '');
  212. value = value.replace(/\/.*$/, '');
  213. if (!/^[a-z0-9.-]+\.[a-z]{2,}$/.test(value)) return '';
  214. return value;
  215. }
  216. function normalizeCloudflareDomains(values) {
  217. const normalizedDomains = [];
  218. const seen = new Set();
  219. for (const value of Array.isArray(values) ? values : []) {
  220. const normalized = normalizeCloudflareDomain(value);
  221. if (!normalized || seen.has(normalized)) continue;
  222. seen.add(normalized);
  223. normalizedDomains.push(normalized);
  224. }
  225. return normalizedDomains;
  226. }
  227. function normalizePersistentSettingValue(key, value) {
  228. switch (key) {
  229. case 'panelMode':
  230. return normalizePanelMode(value);
  231. case 'vpsUrl':
  232. return String(value || '').trim();
  233. case 'vpsPassword':
  234. return String(value || '');
  235. case 'localCpaStep9Mode':
  236. return normalizeLocalCpaStep9Mode(value);
  237. case 'sub2apiUrl':
  238. return String(value || '').trim();
  239. case 'sub2apiEmail':
  240. return String(value || '').trim();
  241. case 'sub2apiPassword':
  242. return String(value || '');
  243. case 'sub2apiGroupName':
  244. return String(value || '').trim();
  245. case 'customPassword':
  246. return String(value || '');
  247. case 'autoRunSkipFailures':
  248. case 'autoRunDelayEnabled':
  249. return Boolean(value);
  250. case 'autoRunFallbackThreadIntervalMinutes':
  251. return normalizeAutoRunFallbackThreadIntervalMinutes(value);
  252. case 'autoRunDelayMinutes':
  253. return normalizeAutoRunDelayMinutes(value);
  254. case 'autoStepDelaySeconds':
  255. return normalizeAutoStepDelaySeconds(value, PERSISTED_SETTING_DEFAULTS.autoStepDelaySeconds);
  256. case 'mailProvider':
  257. return normalizeMailProvider(value);
  258. case 'emailGenerator':
  259. return normalizeEmailGenerator(value);
  260. case 'emailPrefix':
  261. return String(value || '').trim();
  262. case 'inbucketHost':
  263. return String(value || '').trim();
  264. case 'inbucketMailbox':
  265. return String(value || '').trim();
  266. case 'cloudflareDomain':
  267. return normalizeCloudflareDomain(value);
  268. case 'cloudflareDomains':
  269. return normalizeCloudflareDomains(value);
  270. case 'hotmailAccounts':
  271. return normalizeHotmailAccounts(value);
  272. default:
  273. return value;
  274. }
  275. }
  276. function buildPersistentSettingsPayload(input = {}, options = {}) {
  277. const { fillDefaults = false, requireKnownKeys = false } = options;
  278. if (!input || typeof input !== 'object' || Array.isArray(input)) {
  279. throw new Error('\u914d\u7f6e\u5185\u5bb9\u683c\u5f0f\u65e0\u6548\u3002');
  280. }
  281. const normalizedInput = { ...input };
  282. if (normalizedInput.autoStepDelaySeconds === undefined) {
  283. const legacyAutoStepDelaySeconds = resolveLegacyAutoStepDelaySeconds(normalizedInput);
  284. if (legacyAutoStepDelaySeconds !== undefined) {
  285. normalizedInput.autoStepDelaySeconds = legacyAutoStepDelaySeconds;
  286. }
  287. }
  288. const payload = {};
  289. let matchedKeyCount = 0;
  290. for (const key of PERSISTED_SETTING_KEYS) {
  291. if (normalizedInput[key] !== undefined) {
  292. payload[key] = normalizePersistentSettingValue(key, normalizedInput[key]);
  293. matchedKeyCount += 1;
  294. } else if (fillDefaults) {
  295. payload[key] = normalizePersistentSettingValue(key, PERSISTED_SETTING_DEFAULTS[key]);
  296. }
  297. }
  298. if (requireKnownKeys && matchedKeyCount === 0) {
  299. throw new Error('\u914d\u7f6e\u6587\u4ef6\u4e2d\u6ca1\u6709\u53ef\u8bc6\u522b\u7684\u914d\u7f6e\u5185\u5bb9\u3002');
  300. }
  301. if (payload.cloudflareDomains) {
  302. const domains = normalizeCloudflareDomains(payload.cloudflareDomains);
  303. if (payload.cloudflareDomain && !domains.includes(payload.cloudflareDomain)) {
  304. domains.unshift(payload.cloudflareDomain);
  305. }
  306. payload.cloudflareDomains = domains;
  307. }
  308. return payload;
  309. }
  310. async function getPersistedSettings() {
  311. const stored = await chrome.storage.local.get([...PERSISTED_SETTING_KEYS, ...LEGACY_AUTO_STEP_DELAY_KEYS]);
  312. return buildPersistentSettingsPayload(stored, { fillDefaults: true });
  313. }
  314. async function getState() {
  315. const [state, persistedSettings] = await Promise.all([
  316. chrome.storage.session.get(null),
  317. getPersistedSettings(),
  318. ]);
  319. return { ...DEFAULT_STATE, ...persistedSettings, ...state };
  320. }
  321. async function initializeSessionStorageAccess() {
  322. try {
  323. if (chrome.storage?.session?.setAccessLevel) {
  324. await chrome.storage.session.setAccessLevel({
  325. accessLevel: 'TRUSTED_AND_UNTRUSTED_CONTEXTS',
  326. });
  327. console.log(LOG_PREFIX, 'Enabled storage.session for content scripts');
  328. }
  329. } catch (err) {
  330. console.warn(LOG_PREFIX, 'Failed to enable storage.session for content scripts:', err?.message || err);
  331. }
  332. }
  333. async function setState(updates) {
  334. console.log(LOG_PREFIX, 'storage.set:', JSON.stringify(updates).slice(0, 200));
  335. if (Object.keys(updates || {}).length > 0) {
  336. await chrome.storage.session.set(updates);
  337. }
  338. }
  339. async function setPersistentSettings(updates) {
  340. const persistedUpdates = buildPersistentSettingsPayload(updates);
  341. if (Object.keys(persistedUpdates).length > 0) {
  342. await chrome.storage.local.set(persistedUpdates);
  343. }
  344. }
  345. function buildSettingsExportFilename(date = new Date()) {
  346. const pad = (value) => String(value).padStart(2, '0');
  347. return `${SETTINGS_EXPORT_FILENAME_PREFIX}-${date.getFullYear()}${pad(date.getMonth() + 1)}${pad(date.getDate())}-${pad(date.getHours())}${pad(date.getMinutes())}${pad(date.getSeconds())}.json`;
  348. }
  349. async function exportSettingsBundle() {
  350. const settings = await getPersistedSettings();
  351. const bundle = {
  352. schemaVersion: SETTINGS_EXPORT_SCHEMA_VERSION,
  353. exportedAt: new Date().toISOString(),
  354. extensionVersion: chrome.runtime.getManifest().version,
  355. settings,
  356. };
  357. return {
  358. fileName: buildSettingsExportFilename(),
  359. fileContent: JSON.stringify(bundle, null, 2),
  360. };
  361. }
  362. async function importSettingsBundle(configBundle) {
  363. const state = await ensureManualInteractionAllowed('\u5bfc\u5165\u914d\u7f6e');
  364. if (Object.values(state.stepStatuses || {}).some((status) => status === 'running')) {
  365. throw new Error('\u5f53\u524d\u6709\u6b65\u9aa4\u6b63\u5728\u6267\u884c\uff0c\u65e0\u6cd5\u5bfc\u5165\u914d\u7f6e\u3002');
  366. }
  367. if (!configBundle || typeof configBundle !== 'object' || Array.isArray(configBundle)) {
  368. throw new Error('\u914d\u7f6e\u6587\u4ef6\u5185\u5bb9\u65e0\u6548\u3002');
  369. }
  370. const schemaVersion = Number(configBundle.schemaVersion);
  371. if (schemaVersion !== SETTINGS_EXPORT_SCHEMA_VERSION) {
  372. throw new Error(`\u4ec5\u652f\u6301\u5bfc\u5165 schemaVersion=${SETTINGS_EXPORT_SCHEMA_VERSION} \u7684\u914d\u7f6e\u6587\u4ef6\u3002`);
  373. }
  374. if (!configBundle.settings || typeof configBundle.settings !== 'object' || Array.isArray(configBundle.settings)) {
  375. throw new Error('\u914d\u7f6e\u6587\u4ef6\u7f3a\u5c11 settings \u914d\u7f6e\u6bb5\u3002');
  376. }
  377. const importedSettings = buildPersistentSettingsPayload(configBundle.settings, {
  378. fillDefaults: true,
  379. requireKnownKeys: true,
  380. });
  381. await setPersistentSettings(importedSettings);
  382. const sessionUpdates = {
  383. ...importedSettings,
  384. currentHotmailAccountId: null,
  385. email: null,
  386. };
  387. await setState(sessionUpdates);
  388. broadcastDataUpdate({
  389. ...importedSettings,
  390. currentHotmailAccountId: null,
  391. ...(sessionUpdates.email !== undefined ? { email: sessionUpdates.email } : {}),
  392. });
  393. return getState();
  394. }
  395. function broadcastDataUpdate(payload) {
  396. chrome.runtime.sendMessage({
  397. type: 'DATA_UPDATED',
  398. payload,
  399. }).catch(() => { });
  400. }
  401. async function setEmailStateSilently(email) {
  402. await setState({ email });
  403. broadcastDataUpdate({ email });
  404. }
  405. async function setEmailState(email) {
  406. await setEmailStateSilently(email);
  407. if (email) {
  408. await resumeAutoRunIfWaitingForEmail();
  409. }
  410. }
  411. async function setPasswordState(password) {
  412. await setState({ password });
  413. broadcastDataUpdate({ password });
  414. }
  415. async function resetState() {
  416. console.log(LOG_PREFIX, 'Resetting all state');
  417. // Preserve settings and persistent data across resets
  418. const [prev, persistedSettings] = await Promise.all([
  419. chrome.storage.session.get([
  420. 'seenCodes',
  421. 'seenInbucketMailIds',
  422. 'accounts',
  423. 'tabRegistry',
  424. 'sourceLastUrls',
  425. ]),
  426. getPersistedSettings(),
  427. ]);
  428. await chrome.storage.session.clear();
  429. await chrome.storage.session.set({
  430. ...DEFAULT_STATE,
  431. ...persistedSettings,
  432. seenCodes: prev.seenCodes || [],
  433. seenInbucketMailIds: prev.seenInbucketMailIds || [],
  434. accounts: prev.accounts || [],
  435. tabRegistry: prev.tabRegistry || {},
  436. sourceLastUrls: prev.sourceLastUrls || {},
  437. });
  438. }
  439. /**
  440. * Generate a random password: 14 chars, mix of uppercase, lowercase, digits, symbols.
  441. */
  442. function generatePassword() {
  443. const upper = 'ABCDEFGHJKLMNPQRSTUVWXYZ';
  444. const lower = 'abcdefghjkmnpqrstuvwxyz';
  445. const digits = '23456789';
  446. const symbols = '!@#$%&*?';
  447. const all = upper + lower + digits + symbols;
  448. // Ensure at least one of each type
  449. let pw = '';
  450. pw += upper[Math.floor(Math.random() * upper.length)];
  451. pw += lower[Math.floor(Math.random() * lower.length)];
  452. pw += digits[Math.floor(Math.random() * digits.length)];
  453. pw += symbols[Math.floor(Math.random() * symbols.length)];
  454. // Fill remaining 10 chars
  455. for (let i = 0; i < 10; i++) {
  456. pw += all[Math.floor(Math.random() * all.length)];
  457. }
  458. // Shuffle
  459. return pw.split('').sort(() => Math.random() - 0.5).join('');
  460. }
  461. function normalizeHotmailAccount(account = {}) {
  462. const normalizedLastAuthAt = Number.isFinite(Number(account.lastAuthAt)) ? Number(account.lastAuthAt) : 0;
  463. const normalizedStatus = String(
  464. account.status
  465. || (normalizedLastAuthAt > 0 || account.accessToken ? 'authorized' : 'pending')
  466. );
  467. return {
  468. id: String(account.id || crypto.randomUUID()),
  469. email: String(account.email || '').trim(),
  470. password: String(account.password || ''),
  471. clientId: String(account.clientId || '').trim(),
  472. accessToken: String(account.accessToken || ''),
  473. refreshToken: String(account.refreshToken || ''),
  474. expiresAt: Number.isFinite(Number(account.expiresAt)) ? Number(account.expiresAt) : 0,
  475. status: normalizedStatus,
  476. enabled: account.enabled !== undefined ? Boolean(account.enabled) : true,
  477. used: Boolean(account.used),
  478. lastUsedAt: Number.isFinite(Number(account.lastUsedAt)) ? Number(account.lastUsedAt) : 0,
  479. lastAuthAt: normalizedLastAuthAt,
  480. lastError: String(account.lastError || ''),
  481. };
  482. }
  483. function normalizeHotmailAccounts(accounts) {
  484. if (!Array.isArray(accounts)) return [];
  485. const deduped = new Map();
  486. for (const account of accounts) {
  487. const normalized = normalizeHotmailAccount(account);
  488. if (!normalized.email && !normalized.id) continue;
  489. deduped.set(normalized.id, normalized);
  490. }
  491. return [...deduped.values()];
  492. }
  493. function findHotmailAccount(accounts, accountId) {
  494. return normalizeHotmailAccounts(accounts).find((account) => account.id === accountId) || null;
  495. }
  496. function isHotmailProvider(stateOrProvider) {
  497. const provider = typeof stateOrProvider === 'string'
  498. ? stateOrProvider
  499. : stateOrProvider?.mailProvider;
  500. return provider === HOTMAIL_PROVIDER;
  501. }
  502. async function syncHotmailAccounts(accounts) {
  503. const normalized = normalizeHotmailAccounts(accounts);
  504. await setPersistentSettings({ hotmailAccounts: normalized });
  505. await setState({ hotmailAccounts: normalized });
  506. broadcastDataUpdate({ hotmailAccounts: normalized });
  507. return normalized;
  508. }
  509. async function upsertHotmailAccount(input) {
  510. const state = await getState();
  511. const accounts = normalizeHotmailAccounts(state.hotmailAccounts);
  512. const normalizedEmail = String(input?.email || '').trim().toLowerCase();
  513. const existing = input?.id
  514. ? findHotmailAccount(accounts, input.id)
  515. : accounts.find((account) => account.email.toLowerCase() === normalizedEmail) || null;
  516. const credentialsChanged = !existing
  517. || (input?.clientId !== undefined && String(input.clientId).trim() !== existing.clientId)
  518. || (input?.refreshToken !== undefined && String(input.refreshToken).trim() !== existing.refreshToken)
  519. || (input?.email !== undefined && String(input.email).trim().toLowerCase() !== existing.email.toLowerCase());
  520. const normalized = normalizeHotmailAccount({
  521. ...(existing || {}),
  522. ...(credentialsChanged ? {
  523. accessToken: '',
  524. expiresAt: 0,
  525. status: 'pending',
  526. lastAuthAt: 0,
  527. lastError: '',
  528. } : {}),
  529. ...input,
  530. id: input?.id || existing?.id || crypto.randomUUID(),
  531. });
  532. const nextAccounts = existing
  533. ? accounts.map((account) => (account.id === normalized.id ? normalized : account))
  534. : [...accounts, normalized];
  535. await syncHotmailAccounts(nextAccounts);
  536. return normalized;
  537. }
  538. async function deleteHotmailAccount(accountId) {
  539. const state = await getState();
  540. const accounts = normalizeHotmailAccounts(state.hotmailAccounts);
  541. const nextAccounts = accounts.filter((account) => account.id !== accountId);
  542. await syncHotmailAccounts(nextAccounts);
  543. if (state.currentHotmailAccountId === accountId) {
  544. await setState({ currentHotmailAccountId: null });
  545. if (isHotmailProvider(state)) {
  546. await setEmailState(null);
  547. }
  548. broadcastDataUpdate({ currentHotmailAccountId: null });
  549. }
  550. }
  551. async function deleteHotmailAccounts(mode = 'all') {
  552. const state = await getState();
  553. const accounts = normalizeHotmailAccounts(state.hotmailAccounts);
  554. const targets = filterHotmailAccountsByUsage(accounts, mode);
  555. const targetIds = new Set(targets.map((account) => account.id));
  556. const nextAccounts = mode === 'used'
  557. ? accounts.filter((account) => !targetIds.has(account.id))
  558. : [];
  559. await syncHotmailAccounts(nextAccounts);
  560. if (state.currentHotmailAccountId && targetIds.has(state.currentHotmailAccountId)) {
  561. await setState({ currentHotmailAccountId: null });
  562. if (isHotmailProvider(state)) {
  563. await setEmailState(null);
  564. }
  565. broadcastDataUpdate({ currentHotmailAccountId: null });
  566. }
  567. return {
  568. deletedCount: targets.length,
  569. remainingCount: nextAccounts.length,
  570. };
  571. }
  572. async function patchHotmailAccount(accountId, updates = {}) {
  573. const state = await getState();
  574. const accounts = normalizeHotmailAccounts(state.hotmailAccounts);
  575. const account = findHotmailAccount(accounts, accountId);
  576. if (!account) {
  577. throw new Error('未找到对应的 Hotmail 账号。');
  578. }
  579. const nextAccount = normalizeHotmailAccount({
  580. ...account,
  581. ...updates,
  582. id: account.id,
  583. });
  584. await syncHotmailAccounts(accounts.map((item) => (item.id === account.id ? nextAccount : item)));
  585. if (state.currentHotmailAccountId === account.id && shouldClearHotmailCurrentSelection(nextAccount)) {
  586. await setState({ currentHotmailAccountId: null });
  587. broadcastDataUpdate({ currentHotmailAccountId: null });
  588. if (isHotmailProvider(state)) {
  589. await setEmailState(null);
  590. }
  591. }
  592. return nextAccount;
  593. }
  594. async function setCurrentHotmailAccount(accountId, options = {}) {
  595. const { markUsed = false, syncEmail = true } = options;
  596. const state = await getState();
  597. const accounts = normalizeHotmailAccounts(state.hotmailAccounts);
  598. const account = findHotmailAccount(accounts, accountId);
  599. if (!account) {
  600. throw new Error('未找到对应的 Hotmail 账号。');
  601. }
  602. if (markUsed) {
  603. account.lastUsedAt = Date.now();
  604. await syncHotmailAccounts(accounts.map((item) => (item.id === account.id ? account : item)));
  605. }
  606. await setState({ currentHotmailAccountId: account.id });
  607. broadcastDataUpdate({ currentHotmailAccountId: account.id });
  608. if (syncEmail) {
  609. await setEmailState(account.email || null);
  610. }
  611. return account;
  612. }
  613. async function ensureHotmailAccountForFlow(options = {}) {
  614. const { allowAllocate = true, markUsed = false, preferredAccountId = null } = options;
  615. const state = await getState();
  616. const accounts = normalizeHotmailAccounts(state.hotmailAccounts);
  617. const isAccountAllocatable = (candidate) => Boolean(candidate)
  618. && candidate.status === 'authorized'
  619. && !candidate.used
  620. && Boolean(candidate.refreshToken);
  621. let account = null;
  622. if (preferredAccountId) {
  623. account = findHotmailAccount(accounts, preferredAccountId);
  624. }
  625. if (!account && state.currentHotmailAccountId) {
  626. account = findHotmailAccount(accounts, state.currentHotmailAccountId);
  627. }
  628. if ((!account || !isAccountAllocatable(account)) && allowAllocate) {
  629. account = pickHotmailAccountForRun(accounts, {});
  630. }
  631. if (!account) {
  632. throw new Error('没有可用的 Hotmail 账号。请先在侧边栏添加至少一个带刷新令牌(refresh token)的账号。');
  633. }
  634. if (!isAccountAllocatable(account)) {
  635. throw new Error(`Hotmail 账号 ${account.email || account.id} 尚未就绪,无法读取邮件。`);
  636. }
  637. return setCurrentHotmailAccount(account.id, { markUsed, syncEmail: true });
  638. }
  639. async function requestHotmailMailApiLegacy(account, mailbox = 'INBOX') {
  640. if (!account?.email) {
  641. throw new Error('Hotmail 账号缺少邮箱地址。');
  642. }
  643. if (!account?.clientId) {
  644. throw new Error(`Hotmail 账号 ${account.email || account.id} 缺少客户端 ID。`);
  645. }
  646. if (!account?.refreshToken) {
  647. throw new Error(`Hotmail 账号 ${account.email || account.id} 缺少刷新令牌(refresh token)。`);
  648. }
  649. const url = buildHotmailMailApiLatestUrl({
  650. clientId: account.clientId,
  651. email: account.email,
  652. refreshToken: account.refreshToken,
  653. mailbox,
  654. responseType: 'json',
  655. });
  656. const { timeoutMs } = getHotmailMailApiRequestConfig();
  657. const controller = new AbortController();
  658. const timeoutId = setTimeout(() => controller.abort(new Error('timeout')), timeoutMs);
  659. let response;
  660. try {
  661. response = await fetch(url, { method: 'GET', signal: controller.signal });
  662. } catch (err) {
  663. if (err?.name === 'AbortError') {
  664. throw new Error(`Hotmail API 请求超时(>${Math.round(timeoutMs / 1000)} 秒):${mailbox}`);
  665. }
  666. throw new Error(`Hotmail API 请求失败:${err.message}`);
  667. } finally {
  668. clearTimeout(timeoutId);
  669. }
  670. const text = await response.text();
  671. let payload = {};
  672. try {
  673. payload = text ? JSON.parse(text) : {};
  674. } catch {
  675. payload = { raw: text };
  676. }
  677. if (!response.ok) {
  678. const errorText = payload?.message || payload?.error || payload?.msg || text || `HTTP ${response.status}`;
  679. throw new Error(`Hotmail API 请求失败:${errorText}`);
  680. }
  681. if (payload && payload.success === false) {
  682. const errorText = payload?.message || payload?.msg || payload?.error || '未知错误';
  683. throw new Error(`Hotmail API 返回失败:${errorText}`);
  684. }
  685. return {
  686. mailbox,
  687. payload,
  688. messages: normalizeHotmailMailApiMessages(payload?.data),
  689. nextRefreshToken: String(payload?.new_refresh_token || payload?.newRefreshToken || '').trim(),
  690. };
  691. }
  692. function applyHotmailApiResultToAccountLegacy(account, apiResult) {
  693. const nextRefreshToken = String(apiResult?.nextRefreshToken || '').trim();
  694. return {
  695. ...account,
  696. accessToken: '',
  697. expiresAt: 0,
  698. refreshToken: nextRefreshToken || account.refreshToken,
  699. status: 'authorized',
  700. lastAuthAt: Date.now(),
  701. lastError: '',
  702. };
  703. }
  704. async function fetchHotmailMailboxMessagesLegacy(account, mailboxes = HOTMAIL_MAILBOXES) {
  705. let workingAccount = normalizeHotmailAccount(account);
  706. const mailboxResults = [];
  707. for (const mailbox of mailboxes) {
  708. const result = await requestHotmailMailApiLegacy(workingAccount, mailbox);
  709. workingAccount = applyHotmailApiResultToAccountLegacy(workingAccount, result);
  710. mailboxResults.push({
  711. mailbox,
  712. count: result.messages.length,
  713. messages: result.messages.map((message) => ({ ...message, mailbox })),
  714. });
  715. }
  716. const savedAccount = await upsertHotmailAccount(workingAccount);
  717. return {
  718. account: savedAccount,
  719. mailboxResults,
  720. messages: mailboxResults.flatMap((item) => item.messages),
  721. };
  722. }
  723. function isHotmailAccessTokenUsable(account, now = Date.now()) {
  724. return Boolean(account?.accessToken)
  725. && Number(account?.expiresAt || 0) > now + 60_000;
  726. }
  727. async function refreshHotmailAccessToken(account) {
  728. if (!account?.email) {
  729. throw new Error('Hotmail 账号缺少邮箱地址。');
  730. }
  731. if (!account?.clientId) {
  732. throw new Error(`Hotmail 账号 ${account.email || account.id} 缺少客户端 ID。`);
  733. }
  734. if (!account?.refreshToken) {
  735. throw new Error(`Hotmail 账号 ${account.email || account.id} 缺少刷新令牌(refresh token)。`);
  736. }
  737. const { timeoutMs, scopes, tokenUrl } = getHotmailGraphRequestConfig();
  738. const controller = new AbortController();
  739. const timeoutId = setTimeout(() => controller.abort(new Error('timeout')), timeoutMs);
  740. const formData = new URLSearchParams();
  741. formData.set('client_id', account.clientId);
  742. formData.set('grant_type', 'refresh_token');
  743. formData.set('refresh_token', account.refreshToken);
  744. formData.set('scope', scopes.join(' '));
  745. formData.set('redirect_uri', 'https://login.microsoftonline.com/common/oauth2/nativeclient');
  746. let response;
  747. try {
  748. response = await fetch(tokenUrl, {
  749. method: 'POST',
  750. headers: {
  751. 'Content-Type': 'application/x-www-form-urlencoded',
  752. },
  753. body: formData.toString(),
  754. signal: controller.signal,
  755. });
  756. } catch (err) {
  757. const error = new Error(
  758. err?.name === 'AbortError'
  759. ? `Hotmail 令牌刷新超时(>${Math.round(timeoutMs / 1000)} 秒)`
  760. : `Hotmail 令牌刷新失败:${err.message}`
  761. );
  762. error.code = 'HOTMAIL_TOKEN_REFRESH_FAILED';
  763. throw error;
  764. } finally {
  765. clearTimeout(timeoutId);
  766. }
  767. const text = await response.text();
  768. let payload = {};
  769. try {
  770. payload = text ? JSON.parse(text) : {};
  771. } catch {
  772. payload = { raw: text };
  773. }
  774. if (!response.ok || !payload?.access_token) {
  775. const rawErrorText = payload?.error_description || payload?.error?.message || payload?.error || payload?.message || text || `HTTP ${response.status}`;
  776. const isCrossOriginError = typeof rawErrorText === 'string' && rawErrorText.includes('AADSTS90023');
  777. const errorText = isCrossOriginError
  778. ? `Azure AD 拒绝了跨域令牌请求(AADSTS90023)。请在 Azure AD 应用注册中将应用平台改为"单页应用程序(SPA)",并将重定向 URI 设置为 https://login.microsoftonline.com/common/oauth2/nativeclient,或将应用类型改为"移动和桌面应用程序(Native)"。`
  779. : rawErrorText;
  780. const error = new Error(`Hotmail 令牌刷新失败:${errorText}`);
  781. error.code = 'HOTMAIL_TOKEN_REFRESH_FAILED';
  782. throw error;
  783. }
  784. const expiresInSeconds = Math.max(60, Number(payload.expires_in || payload.expiresIn || 0) || 3600);
  785. return normalizeHotmailAccount({
  786. ...account,
  787. accessToken: String(payload.access_token || ''),
  788. refreshToken: String(payload.refresh_token || '').trim() || account.refreshToken,
  789. expiresAt: Date.now() + expiresInSeconds * 1000,
  790. status: 'authorized',
  791. lastAuthAt: Date.now(),
  792. lastError: '',
  793. });
  794. }
  795. async function requestHotmailGraphMessages(account, mailbox = 'INBOX') {
  796. const { timeoutMs, pageSize, messageFields } = getHotmailGraphRequestConfig();
  797. const controller = new AbortController();
  798. const timeoutId = setTimeout(() => controller.abort(new Error('timeout')), timeoutMs);
  799. const url = buildHotmailGraphMessagesUrl({
  800. mailbox,
  801. top: pageSize,
  802. selectFields: messageFields,
  803. });
  804. let response;
  805. try {
  806. response = await fetch(url, {
  807. method: 'GET',
  808. headers: {
  809. Accept: 'application/json',
  810. Authorization: `Bearer ${account.accessToken}`,
  811. },
  812. signal: controller.signal,
  813. });
  814. } catch (err) {
  815. const error = new Error(
  816. err?.name === 'AbortError'
  817. ? `Hotmail 邮件请求超时(>${Math.round(timeoutMs / 1000)} 秒):${mailbox}`
  818. : `Hotmail 邮件请求失败:${err.message}`
  819. );
  820. error.code = 'HOTMAIL_GRAPH_REQUEST_FAILED';
  821. throw error;
  822. } finally {
  823. clearTimeout(timeoutId);
  824. }
  825. const text = await response.text();
  826. let payload = {};
  827. try {
  828. payload = text ? JSON.parse(text) : {};
  829. } catch {
  830. payload = { raw: text };
  831. }
  832. if (!response.ok) {
  833. const errorText = payload?.error?.message || payload?.error_description || payload?.message || text || `HTTP ${response.status}`;
  834. const error = new Error(`Hotmail 邮件请求失败:${errorText}`);
  835. error.code = response.status === 401 || response.status === 403
  836. ? 'HOTMAIL_GRAPH_AUTH_FAILED'
  837. : 'HOTMAIL_GRAPH_REQUEST_FAILED';
  838. throw error;
  839. }
  840. return {
  841. mailbox,
  842. payload,
  843. messages: normalizeHotmailMailApiMessages(payload?.value),
  844. };
  845. }
  846. function buildHotmailAuthFailureAccount(account, errorMessage) {
  847. return normalizeHotmailAccount({
  848. ...account,
  849. accessToken: '',
  850. expiresAt: 0,
  851. status: 'error',
  852. lastError: String(errorMessage || ''),
  853. });
  854. }
  855. async function fetchHotmailMailboxMessages(account, mailboxes = HOTMAIL_MAILBOXES) {
  856. let workingAccount = normalizeHotmailAccount(account);
  857. const mailboxResults = [];
  858. try {
  859. if (!isHotmailAccessTokenUsable(workingAccount)) {
  860. workingAccount = await refreshHotmailAccessToken(workingAccount);
  861. }
  862. for (const mailbox of mailboxes) {
  863. let result;
  864. try {
  865. result = await requestHotmailGraphMessages(workingAccount, mailbox);
  866. } catch (err) {
  867. if (err?.code !== 'HOTMAIL_GRAPH_AUTH_FAILED') {
  868. throw err;
  869. }
  870. workingAccount = await refreshHotmailAccessToken({
  871. ...workingAccount,
  872. accessToken: '',
  873. expiresAt: 0,
  874. });
  875. result = await requestHotmailGraphMessages(workingAccount, mailbox);
  876. }
  877. mailboxResults.push({
  878. mailbox,
  879. count: result.messages.length,
  880. messages: result.messages.map((message) => ({ ...message, mailbox })),
  881. });
  882. }
  883. } catch (err) {
  884. if (err?.code === 'HOTMAIL_TOKEN_REFRESH_FAILED' || err?.code === 'HOTMAIL_GRAPH_AUTH_FAILED') {
  885. const failedAccount = buildHotmailAuthFailureAccount(workingAccount, err.message);
  886. await upsertHotmailAccount(failedAccount);
  887. }
  888. throw err;
  889. }
  890. const savedAccount = await upsertHotmailAccount(workingAccount);
  891. return {
  892. account: savedAccount,
  893. mailboxResults,
  894. messages: mailboxResults.flatMap((item) => item.messages),
  895. };
  896. }
  897. async function verifyHotmailAccount(accountId) {
  898. const state = await getState();
  899. const account = findHotmailAccount(state.hotmailAccounts, accountId);
  900. if (!account) {
  901. throw new Error('未找到需要校验的 Hotmail 账号。');
  902. }
  903. const result = await fetchHotmailMailboxMessages(account, ['INBOX']);
  904. return {
  905. account: result.account,
  906. messageCount: result.mailboxResults[0]?.count || 0,
  907. };
  908. }
  909. async function testHotmailAccountMailAccess(accountId) {
  910. const state = await getState();
  911. const account = findHotmailAccount(state.hotmailAccounts, accountId);
  912. if (!account) {
  913. throw new Error('未找到需要测试的 Hotmail 账号。');
  914. }
  915. const result = await fetchHotmailMailboxMessages(account, HOTMAIL_MAILBOXES);
  916. const latestMessage = getLatestHotmailMessage(result.messages);
  917. const latestCode = latestMessage ? extractVerificationCodeFromMessage(latestMessage) : null;
  918. return {
  919. account: result.account,
  920. accountId: result.account.id,
  921. email: result.account.email,
  922. messageCount: result.messages.length,
  923. latestSubject: latestMessage?.subject || '',
  924. latestMailbox: latestMessage?.mailbox || '',
  925. latestCode: latestCode || '',
  926. inboxCount: result.mailboxResults.find((item) => item.mailbox === 'INBOX')?.count || 0,
  927. junkCount: result.mailboxResults.find((item) => item.mailbox === 'Junk')?.count || 0,
  928. };
  929. }
  930. async function pollHotmailVerificationCode(step, state, pollPayload = {}) {
  931. await addLog(`步骤 ${step}:正在确定 Hotmail 收信账号...`, 'info');
  932. let account = await ensureHotmailAccountForFlow({
  933. allowAllocate: true,
  934. markUsed: false,
  935. preferredAccountId: state.currentHotmailAccountId || null,
  936. });
  937. await addLog(`步骤 ${step}:当前使用 Hotmail 账号 ${account.email} 轮询收件箱。`, 'info');
  938. const maxAttempts = Number(pollPayload.maxAttempts) || 5;
  939. const intervalMs = Number(pollPayload.intervalMs) || 3000;
  940. let lastError = null;
  941. function summarizeMessagesForLog(messages) {
  942. return (messages || [])
  943. .slice()
  944. .sort((left, right) => {
  945. const leftTime = Date.parse(left.receivedDateTime || '') || 0;
  946. const rightTime = Date.parse(right.receivedDateTime || '') || 0;
  947. return rightTime - leftTime;
  948. })
  949. .slice(0, 3)
  950. .map((message) => {
  951. const receivedAt = message?.receivedDateTime || '未知时间';
  952. const sender = message?.from?.emailAddress?.address || '未知发件人';
  953. const subject = message?.subject || '(无主题)';
  954. const preview = String(message?.bodyPreview || '').replace(/\s+/g, ' ').trim().slice(0, 80);
  955. return `[${message.mailbox || 'INBOX'}] ${receivedAt} | ${sender} | ${subject} | ${preview}`;
  956. })
  957. .join(' || ');
  958. }
  959. for (let attempt = 1; attempt <= maxAttempts; attempt++) {
  960. throwIfStopped();
  961. try {
  962. await addLog(`步骤 ${step}:正在轮询 Hotmail 邮件(${attempt}/${maxAttempts})...`, 'info');
  963. const fetchResult = await fetchHotmailMailboxMessages(account, HOTMAIL_MAILBOXES);
  964. account = fetchResult.account;
  965. const matchResult = pickVerificationMessageWithTimeFallback(fetchResult.messages, {
  966. afterTimestamp: pollPayload.filterAfterTimestamp || 0,
  967. senderFilters: pollPayload.senderFilters || [],
  968. subjectFilters: pollPayload.subjectFilters || [],
  969. excludeCodes: pollPayload.excludeCodes || [],
  970. });
  971. const match = matchResult.match;
  972. if (match?.code) {
  973. const mailboxLabel = match.message?.mailbox || 'INBOX';
  974. if (matchResult.usedRelaxedFilters) {
  975. const fallbackLabel = matchResult.usedTimeFallback ? '宽松匹配 + 时间回退' : '宽松匹配';
  976. await addLog(`步骤 ${step}:严格规则未命中,已改用 ${fallbackLabel} 并命中 Hotmail ${mailboxLabel} 验证码。`, 'warn');
  977. }
  978. await addLog(`步骤 ${step}:已在 Hotmail ${mailboxLabel} 中找到验证码:${match.code}`, 'ok');
  979. return {
  980. ok: true,
  981. code: match.code,
  982. emailTimestamp: match.receivedAt || Date.now(),
  983. mailId: match.message?.id || '',
  984. };
  985. }
  986. lastError = new Error(`步骤 ${step}:暂未在 Hotmail 收件箱中找到匹配验证码(${attempt}/${maxAttempts})。`);
  987. await addLog(lastError.message, attempt === maxAttempts ? 'warn' : 'info');
  988. const mailSummary = summarizeMessagesForLog(fetchResult.messages);
  989. if (mailSummary) {
  990. await addLog(`步骤 ${step}:最近邮件样本:${mailSummary}`, 'info');
  991. }
  992. } catch (err) {
  993. lastError = err;
  994. await addLog(`步骤 ${step}:Hotmail 收件箱轮询失败:${err.message}`, 'warn');
  995. }
  996. if (attempt < maxAttempts) {
  997. await sleepWithStop(intervalMs);
  998. }
  999. }
  1000. throw lastError || new Error(`步骤 ${step}:未在 Hotmail 收件箱中找到新的匹配验证码。`);
  1001. }
  1002. function generateRandomSuffix(length = 6) {
  1003. const chars = 'abcdefghjkmnpqrstuvwxyz23456789';
  1004. let suffix = '';
  1005. for (let i = 0; i < length; i++) {
  1006. suffix += chars[Math.floor(Math.random() * chars.length)];
  1007. }
  1008. return suffix;
  1009. }
  1010. function isGeneratedAliasProvider(provider) {
  1011. return provider === '2925';
  1012. }
  1013. function buildGeneratedAliasEmail(state) {
  1014. const provider = state.mailProvider || '163';
  1015. const emailPrefix = (state.emailPrefix || '').trim();
  1016. if (!emailPrefix) {
  1017. throw new Error('2925 邮箱前缀未设置,请先在侧边栏填写。');
  1018. }
  1019. if (provider === '2925') {
  1020. return `${emailPrefix}${generateRandomSuffix(6)}@2925.com`;
  1021. }
  1022. throw new Error(`未支持的别名邮箱类型:${provider}`);
  1023. }
  1024. // ============================================================
  1025. // Tab Registry
  1026. // ============================================================
  1027. async function getTabRegistry() {
  1028. const state = await getState();
  1029. return state.tabRegistry || {};
  1030. }
  1031. async function registerTab(source, tabId) {
  1032. const registry = await getTabRegistry();
  1033. registry[source] = { tabId, ready: true };
  1034. await setState({ tabRegistry: registry });
  1035. console.log(LOG_PREFIX, `Tab registered: ${source} -> ${tabId}`);
  1036. }
  1037. async function isTabAlive(source) {
  1038. const registry = await getTabRegistry();
  1039. const entry = registry[source];
  1040. if (!entry) return false;
  1041. try {
  1042. await chrome.tabs.get(entry.tabId);
  1043. return true;
  1044. } catch {
  1045. // Tab no longer exists — clean up registry
  1046. registry[source] = null;
  1047. await setState({ tabRegistry: registry });
  1048. return false;
  1049. }
  1050. }
  1051. async function getTabId(source) {
  1052. const registry = await getTabRegistry();
  1053. return registry[source]?.tabId || null;
  1054. }
  1055. function parseUrlSafely(rawUrl) {
  1056. if (!rawUrl) return null;
  1057. try {
  1058. return new URL(rawUrl);
  1059. } catch {
  1060. return null;
  1061. }
  1062. }
  1063. function normalizeSub2ApiUrl(rawUrl) {
  1064. const input = (rawUrl || '').trim() || DEFAULT_SUB2API_URL;
  1065. const withProtocol = /^https?:\/\//i.test(input) ? input : `https://${input}`;
  1066. const parsed = new URL(withProtocol);
  1067. if (!parsed.pathname || parsed.pathname === '/') {
  1068. parsed.pathname = '/admin/accounts';
  1069. }
  1070. parsed.hash = '';
  1071. return parsed.toString();
  1072. }
  1073. function getPanelMode(state = {}) {
  1074. return state.panelMode === 'sub2api' ? 'sub2api' : 'cpa';
  1075. }
  1076. function getPanelModeLabel(modeOrState) {
  1077. const mode = typeof modeOrState === 'string' ? modeOrState : getPanelMode(modeOrState);
  1078. return mode === 'sub2api' ? 'SUB2API' : 'CPA';
  1079. }
  1080. function isSignupPageHost(hostname = '') {
  1081. return ['auth0.openai.com', 'auth.openai.com', 'accounts.openai.com'].includes(hostname);
  1082. }
  1083. function is163MailHost(hostname = '') {
  1084. return hostname === 'mail.163.com'
  1085. || hostname.endsWith('.mail.163.com')
  1086. || hostname === 'webmail.vip.163.com';
  1087. }
  1088. function isLocalhostOAuthCallbackUrl(rawUrl) {
  1089. const parsed = parseUrlSafely(rawUrl);
  1090. if (!parsed) return false;
  1091. if (!['http:', 'https:'].includes(parsed.protocol)) return false;
  1092. if (!['localhost', '127.0.0.1'].includes(parsed.hostname)) return false;
  1093. if (!['/auth/callback', '/codex/callback'].includes(parsed.pathname)) return false;
  1094. const code = (parsed.searchParams.get('code') || '').trim();
  1095. const state = (parsed.searchParams.get('state') || '').trim();
  1096. return Boolean(code && state);
  1097. }
  1098. function isLocalCpaUrl(rawUrl) {
  1099. const parsed = parseUrlSafely(rawUrl);
  1100. if (!parsed) return false;
  1101. if (!['http:', 'https:'].includes(parsed.protocol)) return false;
  1102. return ['localhost', '127.0.0.1'].includes(parsed.hostname);
  1103. }
  1104. function shouldBypassStep9ForLocalCpa(state) {
  1105. return normalizeLocalCpaStep9Mode(state?.localCpaStep9Mode) === 'bypass'
  1106. && Boolean(state?.localhostUrl)
  1107. && isLocalCpaUrl(state?.vpsUrl);
  1108. }
  1109. function matchesSourceUrlFamily(source, candidateUrl, referenceUrl) {
  1110. const candidate = parseUrlSafely(candidateUrl);
  1111. if (!candidate) return false;
  1112. const reference = parseUrlSafely(referenceUrl);
  1113. switch (source) {
  1114. case 'signup-page':
  1115. return isSignupPageHost(candidate.hostname);
  1116. case 'duck-mail':
  1117. return candidate.hostname === 'duckduckgo.com' && candidate.pathname.startsWith('/email/');
  1118. case 'qq-mail':
  1119. return candidate.hostname === 'mail.qq.com' || candidate.hostname === 'wx.mail.qq.com';
  1120. case 'mail-163':
  1121. return is163MailHost(candidate.hostname);
  1122. case 'inbucket-mail':
  1123. return Boolean(reference)
  1124. && candidate.origin === reference.origin
  1125. && candidate.pathname.startsWith('/m/');
  1126. case 'mail-2925':
  1127. return candidate.hostname === '2925.com' || candidate.hostname === 'www.2925.com';
  1128. case 'vps-panel':
  1129. return Boolean(reference)
  1130. && candidate.origin === reference.origin
  1131. && candidate.pathname === reference.pathname;
  1132. case 'sub2api-panel':
  1133. return Boolean(reference)
  1134. && candidate.origin === reference.origin
  1135. && (
  1136. candidate.pathname.startsWith('/admin/accounts')
  1137. || candidate.pathname.startsWith('/login')
  1138. || candidate.pathname === '/'
  1139. );
  1140. default:
  1141. return false;
  1142. }
  1143. }
  1144. async function rememberSourceLastUrl(source, url) {
  1145. if (!source || !url) return;
  1146. const state = await getState();
  1147. const sourceLastUrls = { ...(state.sourceLastUrls || {}) };
  1148. sourceLastUrls[source] = url;
  1149. await setState({ sourceLastUrls });
  1150. }
  1151. async function closeConflictingTabsForSource(source, currentUrl, options = {}) {
  1152. const { excludeTabIds = [] } = options;
  1153. const excluded = new Set(excludeTabIds.filter(id => Number.isInteger(id)));
  1154. const state = await getState();
  1155. const lastUrl = state.sourceLastUrls?.[source];
  1156. const referenceUrls = [currentUrl, lastUrl].filter(Boolean);
  1157. if (!referenceUrls.length) return;
  1158. const tabs = await chrome.tabs.query({});
  1159. const matchedIds = tabs
  1160. .filter((tab) => Number.isInteger(tab.id) && !excluded.has(tab.id))
  1161. .filter((tab) => referenceUrls.some((refUrl) => matchesSourceUrlFamily(source, tab.url, refUrl)))
  1162. .map(tab => tab.id);
  1163. if (!matchedIds.length) return;
  1164. await chrome.tabs.remove(matchedIds).catch(() => { });
  1165. const registry = await getTabRegistry();
  1166. if (registry[source]?.tabId && matchedIds.includes(registry[source].tabId)) {
  1167. registry[source] = null;
  1168. await setState({ tabRegistry: registry });
  1169. }
  1170. await addLog(`已关闭 ${matchedIds.length} 个旧的${getSourceLabel(source)}标签页。`, 'info');
  1171. }
  1172. function isLocalhostOAuthCallbackTabMatch(callbackUrl, candidateUrl) {
  1173. if (!isLocalhostOAuthCallbackUrl(callbackUrl) || !isLocalhostOAuthCallbackUrl(candidateUrl)) {
  1174. return false;
  1175. }
  1176. const callback = parseUrlSafely(callbackUrl);
  1177. const candidate = parseUrlSafely(candidateUrl);
  1178. if (!callback || !candidate) return false;
  1179. return callback.origin === candidate.origin
  1180. && callback.pathname === candidate.pathname
  1181. && callback.searchParams.get('code') === candidate.searchParams.get('code')
  1182. && callback.searchParams.get('state') === candidate.searchParams.get('state');
  1183. }
  1184. async function closeLocalhostCallbackTabs(callbackUrl, options = {}) {
  1185. if (!isLocalhostOAuthCallbackUrl(callbackUrl)) return 0;
  1186. const { excludeTabIds = [] } = options;
  1187. const excluded = new Set(excludeTabIds.filter(id => Number.isInteger(id)));
  1188. const tabs = await chrome.tabs.query({});
  1189. const matchedIds = tabs
  1190. .filter((tab) => Number.isInteger(tab.id) && !excluded.has(tab.id))
  1191. .filter((tab) => isLocalhostOAuthCallbackTabMatch(callbackUrl, tab.url))
  1192. .map((tab) => tab.id);
  1193. if (!matchedIds.length) return 0;
  1194. await chrome.tabs.remove(matchedIds).catch(() => { });
  1195. const registry = await getTabRegistry();
  1196. if (registry['signup-page']?.tabId && matchedIds.includes(registry['signup-page'].tabId)) {
  1197. registry['signup-page'] = null;
  1198. await setState({ tabRegistry: registry });
  1199. }
  1200. await addLog(`已关闭 ${matchedIds.length} 个匹配当前 OAuth callback 的 localhost 残留标签页。`, 'info');
  1201. return matchedIds.length;
  1202. }
  1203. function buildLocalhostCleanupPrefix(rawUrl) {
  1204. if (!isLocalhostOAuthCallbackUrl(rawUrl)) return '';
  1205. const parsed = parseUrlSafely(rawUrl);
  1206. if (!parsed) return '';
  1207. const segments = parsed.pathname.split('/').filter(Boolean);
  1208. if (!segments.length) {
  1209. return parsed.origin;
  1210. }
  1211. return `${parsed.origin}/${segments[0]}`;
  1212. }
  1213. async function closeTabsByUrlPrefix(prefix, options = {}) {
  1214. if (!prefix) return 0;
  1215. const { excludeTabIds = [] } = options;
  1216. const excluded = new Set(excludeTabIds.filter(id => Number.isInteger(id)));
  1217. const tabs = await chrome.tabs.query({});
  1218. const matchedIds = tabs
  1219. .filter((tab) => Number.isInteger(tab.id) && !excluded.has(tab.id))
  1220. .filter((tab) => typeof tab.url === 'string' && tab.url.startsWith(prefix))
  1221. .map((tab) => tab.id);
  1222. if (!matchedIds.length) return 0;
  1223. await chrome.tabs.remove(matchedIds).catch(() => { });
  1224. await addLog(`已关闭 ${matchedIds.length} 个匹配 ${prefix} 的 localhost 残留标签页。`, 'info');
  1225. return matchedIds.length;
  1226. }
  1227. async function pingContentScriptOnTab(tabId) {
  1228. if (!Number.isInteger(tabId)) return null;
  1229. try {
  1230. return await chrome.tabs.sendMessage(tabId, {
  1231. type: 'PING',
  1232. source: 'background',
  1233. payload: {},
  1234. });
  1235. } catch {
  1236. return null;
  1237. }
  1238. }
  1239. async function waitForTabUrlFamily(source, tabId, referenceUrl, options = {}) {
  1240. const { timeoutMs = 15000, retryDelayMs = 400 } = options;
  1241. const start = Date.now();
  1242. while (Date.now() - start < timeoutMs) {
  1243. try {
  1244. const tab = await chrome.tabs.get(tabId);
  1245. if (matchesSourceUrlFamily(source, tab.url, referenceUrl)) {
  1246. return tab;
  1247. }
  1248. } catch {
  1249. return null;
  1250. }
  1251. await new Promise((resolve) => setTimeout(resolve, retryDelayMs));
  1252. }
  1253. return null;
  1254. }
  1255. async function ensureContentScriptReadyOnTab(source, tabId, options = {}) {
  1256. const {
  1257. inject = null,
  1258. injectSource = null,
  1259. timeoutMs = 30000,
  1260. retryDelayMs = 700,
  1261. logMessage = '',
  1262. } = options;
  1263. const start = Date.now();
  1264. let lastError = null;
  1265. let logged = false;
  1266. let attempt = 0;
  1267. console.log(
  1268. LOG_PREFIX,
  1269. `[ensureContentScriptReadyOnTab] start ${source} tab=${tabId}, timeout=${timeoutMs}ms, inject=${Array.isArray(inject) ? inject.join(',') : 'none'}`
  1270. );
  1271. while (Date.now() - start < timeoutMs) {
  1272. attempt += 1;
  1273. const pong = await pingContentScriptOnTab(tabId);
  1274. if (pong?.ok && (!pong.source || pong.source === source)) {
  1275. console.log(
  1276. LOG_PREFIX,
  1277. `[ensureContentScriptReadyOnTab] ready ${source} tab=${tabId} on attempt ${attempt} after ${Date.now() - start}ms`
  1278. );
  1279. await registerTab(source, tabId);
  1280. return;
  1281. }
  1282. if (!inject || !inject.length) {
  1283. throw new Error(`${getSourceLabel(source)} 内容脚本未就绪,且未提供可用的注入文件。`);
  1284. }
  1285. const registry = await getTabRegistry();
  1286. if (registry[source]) {
  1287. registry[source].ready = false;
  1288. await setState({ tabRegistry: registry });
  1289. }
  1290. try {
  1291. if (injectSource) {
  1292. await chrome.scripting.executeScript({
  1293. target: { tabId },
  1294. func: (injectedSource) => {
  1295. window.__MULTIPAGE_SOURCE = injectedSource;
  1296. },
  1297. args: [injectSource],
  1298. });
  1299. }
  1300. await chrome.scripting.executeScript({
  1301. target: { tabId },
  1302. files: inject,
  1303. });
  1304. } catch (err) {
  1305. lastError = err;
  1306. console.warn(
  1307. LOG_PREFIX,
  1308. `[ensureContentScriptReadyOnTab] inject attempt ${attempt} failed for ${source} tab=${tabId}: ${err?.message || err}`
  1309. );
  1310. }
  1311. const pongAfterInject = await pingContentScriptOnTab(tabId);
  1312. if (pongAfterInject?.ok && (!pongAfterInject.source || pongAfterInject.source === source)) {
  1313. console.log(
  1314. LOG_PREFIX,
  1315. `[ensureContentScriptReadyOnTab] ready after inject ${source} tab=${tabId} on attempt ${attempt} after ${Date.now() - start}ms`
  1316. );
  1317. await registerTab(source, tabId);
  1318. return;
  1319. }
  1320. if (logMessage && !logged) {
  1321. console.warn(
  1322. LOG_PREFIX,
  1323. `[ensureContentScriptReadyOnTab] ${source} tab=${tabId} still not ready after ${Date.now() - start}ms`
  1324. );
  1325. await addLog(logMessage, 'warn');
  1326. logged = true;
  1327. }
  1328. await new Promise((resolve) => setTimeout(resolve, retryDelayMs));
  1329. }
  1330. throw lastError || new Error(`${getSourceLabel(source)} 内容脚本长时间未就绪。`);
  1331. }
  1332. // ============================================================
  1333. // Command Queue (for content scripts not yet ready)
  1334. // ============================================================
  1335. const pendingCommands = new Map(); // source -> { message, resolve, reject, timer }
  1336. function getContentScriptResponseTimeoutMs(message) {
  1337. if (!message || typeof message !== 'object') {
  1338. return 30000;
  1339. }
  1340. if (message.type === 'POLL_EMAIL') {
  1341. const maxAttempts = Math.max(1, Number(message.payload?.maxAttempts) || 1);
  1342. const intervalMs = Math.max(0, Number(message.payload?.intervalMs) || 0);
  1343. return Math.max(45000, maxAttempts * intervalMs + 25000);
  1344. }
  1345. if (message.type === 'FILL_CODE') {
  1346. return Number(message.step) === 7 ? 45000 : 30000;
  1347. }
  1348. if (message.type === 'PREPARE_SIGNUP_VERIFICATION') {
  1349. return 45000;
  1350. }
  1351. return 30000;
  1352. }
  1353. function getMessageDebugLabel(source, message, tabId = null) {
  1354. const parts = [source || 'unknown', message?.type || 'UNKNOWN'];
  1355. if (Number.isInteger(message?.step)) {
  1356. parts.push(`step=${message.step}`);
  1357. }
  1358. if (Number.isInteger(tabId)) {
  1359. parts.push(`tab=${tabId}`);
  1360. }
  1361. return parts.join(' ');
  1362. }
  1363. function summarizeMessageResultForDebug(result) {
  1364. if (result === undefined) return 'undefined';
  1365. if (result === null) return 'null';
  1366. if (typeof result !== 'object') return JSON.stringify(result);
  1367. const summary = {};
  1368. for (const key of ['ok', 'error', 'stopped', 'source', 'step']) {
  1369. if (key in result) summary[key] = result[key];
  1370. }
  1371. if (result.payload && typeof result.payload === 'object') {
  1372. summary.payloadKeys = Object.keys(result.payload);
  1373. }
  1374. return JSON.stringify(summary);
  1375. }
  1376. function sendTabMessageWithTimeout(tabId, source, message, responseTimeoutMs = getContentScriptResponseTimeoutMs(message)) {
  1377. return new Promise((resolve, reject) => {
  1378. let settled = false;
  1379. const startedAt = Date.now();
  1380. const debugLabel = getMessageDebugLabel(source, message, tabId);
  1381. console.log(LOG_PREFIX, `[sendTabMessageWithTimeout] dispatch ${debugLabel}, timeout=${responseTimeoutMs}ms`);
  1382. const timer = setTimeout(() => {
  1383. if (settled) return;
  1384. settled = true;
  1385. const seconds = Math.ceil(responseTimeoutMs / 1000);
  1386. console.warn(LOG_PREFIX, `[sendTabMessageWithTimeout] timeout ${debugLabel} after ${Date.now() - startedAt}ms`);
  1387. reject(new Error(`Content script on ${source} did not respond in ${seconds}s. Try refreshing the tab and retry.`));
  1388. }, responseTimeoutMs);
  1389. chrome.tabs.sendMessage(tabId, message)
  1390. .then((value) => {
  1391. const elapsed = Date.now() - startedAt;
  1392. if (settled) {
  1393. console.warn(
  1394. LOG_PREFIX,
  1395. `[sendTabMessageWithTimeout] late response ignored for ${debugLabel} after ${elapsed}ms: ${summarizeMessageResultForDebug(value)}`
  1396. );
  1397. return;
  1398. }
  1399. settled = true;
  1400. clearTimeout(timer);
  1401. console.log(
  1402. LOG_PREFIX,
  1403. `[sendTabMessageWithTimeout] response ${debugLabel} after ${elapsed}ms: ${summarizeMessageResultForDebug(value)}`
  1404. );
  1405. resolve(value);
  1406. })
  1407. .catch((error) => {
  1408. const elapsed = Date.now() - startedAt;
  1409. const errorMessage = error?.message || String(error);
  1410. if (settled) {
  1411. console.warn(
  1412. LOG_PREFIX,
  1413. `[sendTabMessageWithTimeout] late rejection ignored for ${debugLabel} after ${elapsed}ms: ${errorMessage}`
  1414. );
  1415. return;
  1416. }
  1417. settled = true;
  1418. clearTimeout(timer);
  1419. console.warn(
  1420. LOG_PREFIX,
  1421. `[sendTabMessageWithTimeout] rejection ${debugLabel} after ${elapsed}ms: ${errorMessage}`
  1422. );
  1423. reject(error);
  1424. });
  1425. });
  1426. }
  1427. function queueCommand(source, message, timeout = 15000) {
  1428. return new Promise((resolve, reject) => {
  1429. const timer = setTimeout(() => {
  1430. pendingCommands.delete(source);
  1431. const err = `Content script on ${source} did not respond in ${timeout / 1000}s. Try refreshing the tab and retry.`;
  1432. console.error(LOG_PREFIX, err);
  1433. reject(new Error(err));
  1434. }, timeout);
  1435. pendingCommands.set(source, { message, resolve, reject, timer });
  1436. console.log(LOG_PREFIX, `Command queued for ${source} (waiting for ready)`);
  1437. });
  1438. }
  1439. function flushCommand(source, tabId) {
  1440. const pending = pendingCommands.get(source);
  1441. if (pending) {
  1442. clearTimeout(pending.timer);
  1443. pendingCommands.delete(source);
  1444. sendTabMessageWithTimeout(tabId, source, pending.message).then(pending.resolve).catch(pending.reject);
  1445. console.log(LOG_PREFIX, `Flushed queued command to ${source} (tab ${tabId})`);
  1446. }
  1447. }
  1448. function cancelPendingCommands(reason = STOP_ERROR_MESSAGE) {
  1449. for (const [source, pending] of pendingCommands.entries()) {
  1450. clearTimeout(pending.timer);
  1451. pending.reject(new Error(reason));
  1452. pendingCommands.delete(source);
  1453. console.log(LOG_PREFIX, `Cancelled queued command for ${source}`);
  1454. }
  1455. }
  1456. // ============================================================
  1457. // Reuse or create tab
  1458. // ============================================================
  1459. async function reuseOrCreateTab(source, url, options = {}) {
  1460. const alive = await isTabAlive(source);
  1461. if (alive) {
  1462. const tabId = await getTabId(source);
  1463. await closeConflictingTabsForSource(source, url, { excludeTabIds: [tabId] });
  1464. const currentTab = await chrome.tabs.get(tabId);
  1465. const sameUrl = currentTab.url === url;
  1466. const shouldReloadOnReuse = sameUrl && options.reloadIfSameUrl;
  1467. const registry = await getTabRegistry();
  1468. if (sameUrl) {
  1469. await chrome.tabs.update(tabId, { active: true });
  1470. console.log(LOG_PREFIX, `Reused tab ${source} (${tabId}) on same URL`);
  1471. if (shouldReloadOnReuse) {
  1472. if (registry[source]) registry[source].ready = false;
  1473. await setState({ tabRegistry: registry });
  1474. await chrome.tabs.reload(tabId);
  1475. await new Promise((resolve) => {
  1476. const timer = setTimeout(() => { chrome.tabs.onUpdated.removeListener(listener); resolve(); }, 30000);
  1477. const listener = (tid, info) => {
  1478. if (tid === tabId && info.status === 'complete') {
  1479. chrome.tabs.onUpdated.removeListener(listener);
  1480. clearTimeout(timer);
  1481. resolve();
  1482. }
  1483. };
  1484. chrome.tabs.onUpdated.addListener(listener);
  1485. });
  1486. }
  1487. // For dynamically injected pages like the VPS panel, re-inject immediately.
  1488. if (options.inject) {
  1489. if (registry[source]) registry[source].ready = false;
  1490. await setState({ tabRegistry: registry });
  1491. if (options.injectSource) {
  1492. await chrome.scripting.executeScript({
  1493. target: { tabId },
  1494. func: (injectedSource) => {
  1495. window.__MULTIPAGE_SOURCE = injectedSource;
  1496. },
  1497. args: [options.injectSource],
  1498. });
  1499. }
  1500. await chrome.scripting.executeScript({
  1501. target: { tabId },
  1502. files: options.inject,
  1503. });
  1504. await new Promise(r => setTimeout(r, 500));
  1505. }
  1506. await rememberSourceLastUrl(source, url);
  1507. return tabId;
  1508. }
  1509. // Mark as not ready BEFORE navigating — so READY signal from new page is captured correctly
  1510. if (registry[source]) registry[source].ready = false;
  1511. await setState({ tabRegistry: registry });
  1512. // Navigate existing tab to new URL
  1513. await chrome.tabs.update(tabId, { url, active: true });
  1514. console.log(LOG_PREFIX, `Reused tab ${source} (${tabId}), navigated to ${url.slice(0, 60)}`);
  1515. // Wait for page load complete (with 30s timeout)
  1516. await new Promise((resolve) => {
  1517. const timer = setTimeout(() => { chrome.tabs.onUpdated.removeListener(listener); resolve(); }, 30000);
  1518. const listener = (tid, info) => {
  1519. if (tid === tabId && info.status === 'complete') {
  1520. chrome.tabs.onUpdated.removeListener(listener);
  1521. clearTimeout(timer);
  1522. resolve();
  1523. }
  1524. };
  1525. chrome.tabs.onUpdated.addListener(listener);
  1526. });
  1527. // If dynamic injection needed (VPS panel), re-inject after navigation
  1528. if (options.inject) {
  1529. if (options.injectSource) {
  1530. await chrome.scripting.executeScript({
  1531. target: { tabId },
  1532. func: (injectedSource) => {
  1533. window.__MULTIPAGE_SOURCE = injectedSource;
  1534. },
  1535. args: [options.injectSource],
  1536. });
  1537. }
  1538. await chrome.scripting.executeScript({
  1539. target: { tabId },
  1540. files: options.inject,
  1541. });
  1542. }
  1543. // Wait a bit for content script to inject and send READY
  1544. await new Promise(r => setTimeout(r, 500));
  1545. await rememberSourceLastUrl(source, url);
  1546. return tabId;
  1547. }
  1548. // Create new tab
  1549. await closeConflictingTabsForSource(source, url);
  1550. const tab = await chrome.tabs.create({ url, active: true });
  1551. console.log(LOG_PREFIX, `Created new tab ${source} (${tab.id})`);
  1552. // If dynamic injection needed (VPS panel), inject scripts after load
  1553. if (options.inject) {
  1554. await new Promise((resolve) => {
  1555. const timer = setTimeout(() => { chrome.tabs.onUpdated.removeListener(listener); resolve(); }, 30000);
  1556. const listener = (tabId, info) => {
  1557. if (tabId === tab.id && info.status === 'complete') {
  1558. chrome.tabs.onUpdated.removeListener(listener);
  1559. clearTimeout(timer);
  1560. resolve();
  1561. }
  1562. };
  1563. chrome.tabs.onUpdated.addListener(listener);
  1564. });
  1565. if (options.injectSource) {
  1566. await chrome.scripting.executeScript({
  1567. target: { tabId: tab.id },
  1568. func: (injectedSource) => {
  1569. window.__MULTIPAGE_SOURCE = injectedSource;
  1570. },
  1571. args: [options.injectSource],
  1572. });
  1573. }
  1574. await chrome.scripting.executeScript({
  1575. target: { tabId: tab.id },
  1576. files: options.inject,
  1577. });
  1578. }
  1579. await rememberSourceLastUrl(source, url);
  1580. return tab.id;
  1581. }
  1582. // ============================================================
  1583. // Send command to content script (with readiness check)
  1584. // ============================================================
  1585. async function sendToContentScript(source, message, options = {}) {
  1586. throwIfStopped();
  1587. const { responseTimeoutMs = getContentScriptResponseTimeoutMs(message) } = options;
  1588. const registry = await getTabRegistry();
  1589. const entry = registry[source];
  1590. if (!entry || !entry.ready) {
  1591. throwIfStopped();
  1592. console.log(LOG_PREFIX, `${source} not ready, queuing command`);
  1593. return queueCommand(source, message);
  1594. }
  1595. // Verify tab is still alive
  1596. const alive = await isTabAlive(source);
  1597. throwIfStopped();
  1598. if (!alive) {
  1599. // Tab was closed — queue the command, it will be sent when tab is reopened
  1600. console.log(LOG_PREFIX, `${source} tab was closed, queuing command`);
  1601. return queueCommand(source, message);
  1602. }
  1603. throwIfStopped();
  1604. console.log(LOG_PREFIX, `Sending to ${source} (tab ${entry.tabId}):`, message.type);
  1605. return sendTabMessageWithTimeout(entry.tabId, source, message, responseTimeoutMs);
  1606. }
  1607. async function sendToContentScriptResilient(source, message, options = {}) {
  1608. const { timeoutMs = 30000, retryDelayMs = 600, logMessage = '' } = options;
  1609. const start = Date.now();
  1610. let lastError = null;
  1611. let logged = false;
  1612. let attempt = 0;
  1613. const debugLabel = getMessageDebugLabel(source, message);
  1614. console.log(
  1615. LOG_PREFIX,
  1616. `[sendToContentScriptResilient] start ${debugLabel}, totalTimeout=${timeoutMs}ms, retryDelay=${retryDelayMs}ms`
  1617. );
  1618. while (Date.now() - start < timeoutMs) {
  1619. throwIfStopped();
  1620. attempt += 1;
  1621. try {
  1622. console.log(
  1623. LOG_PREFIX,
  1624. `[sendToContentScriptResilient] attempt ${attempt} -> ${debugLabel}, elapsed=${Date.now() - start}ms`
  1625. );
  1626. const result = await sendToContentScript(source, message);
  1627. console.log(
  1628. LOG_PREFIX,
  1629. `[sendToContentScriptResilient] success ${debugLabel} on attempt ${attempt} after ${Date.now() - start}ms`
  1630. );
  1631. return result;
  1632. } catch (err) {
  1633. const retryable = isRetryableContentScriptTransportError(err);
  1634. console.warn(
  1635. LOG_PREFIX,
  1636. `[sendToContentScriptResilient] attempt ${attempt} failed for ${debugLabel}, retryable=${retryable}, elapsed=${Date.now() - start}ms: ${err?.message || err}`
  1637. );
  1638. if (!retryable) {
  1639. throw err;
  1640. }
  1641. lastError = err;
  1642. if (logMessage && !logged) {
  1643. await addLog(logMessage, 'warn');
  1644. logged = true;
  1645. }
  1646. await new Promise((resolve) => setTimeout(resolve, retryDelayMs));
  1647. }
  1648. }
  1649. throw lastError || new Error(`等待 ${getSourceLabel(source)} 重新就绪超时。`);
  1650. }
  1651. async function sendToMailContentScriptResilient(mail, message, options = {}) {
  1652. const { timeoutMs = 45000, maxRecoveryAttempts = 2 } = options;
  1653. const start = Date.now();
  1654. let lastError = null;
  1655. let recoveries = 0;
  1656. let logged = false;
  1657. while (Date.now() - start < timeoutMs) {
  1658. throwIfStopped();
  1659. try {
  1660. return await sendToContentScript(mail.source, message);
  1661. } catch (err) {
  1662. if (!isRetryableContentScriptTransportError(err)) {
  1663. throw err;
  1664. }
  1665. lastError = err;
  1666. if (!logged) {
  1667. await addLog(`步骤 ${message.step}:${mail.label} 页面通信异常,正在尝试让邮箱页重新就绪...`, 'warn');
  1668. logged = true;
  1669. }
  1670. if (recoveries >= maxRecoveryAttempts) {
  1671. break;
  1672. }
  1673. recoveries += 1;
  1674. await reuseOrCreateTab(mail.source, mail.url, {
  1675. inject: mail.inject,
  1676. injectSource: mail.injectSource,
  1677. reloadIfSameUrl: true,
  1678. });
  1679. await new Promise((resolve) => setTimeout(resolve, 800));
  1680. }
  1681. }
  1682. throw lastError || new Error(`${mail.label} 页面未能重新就绪。`);
  1683. }
  1684. // ============================================================
  1685. // Logging
  1686. // ============================================================
  1687. async function addLog(message, level = 'info') {
  1688. const state = await getState();
  1689. const logs = state.logs || [];
  1690. const entry = { message, level, timestamp: Date.now() };
  1691. logs.push(entry);
  1692. // Keep last 500 logs
  1693. if (logs.length > 500) logs.splice(0, logs.length - 500);
  1694. await setState({ logs });
  1695. // Broadcast to side panel
  1696. chrome.runtime.sendMessage({ type: 'LOG_ENTRY', payload: entry }).catch(() => { });
  1697. }
  1698. function getStep8CallbackUrlFromNavigation(details, signupTabId) {
  1699. if (!Number.isInteger(signupTabId) || !details) return '';
  1700. if (details.tabId !== signupTabId) return '';
  1701. if (details.frameId !== 0) return '';
  1702. return isLocalhostOAuthCallbackUrl(details.url) ? details.url : '';
  1703. }
  1704. function getStep8CallbackUrlFromTabUpdate(tabId, changeInfo, tab, signupTabId) {
  1705. if (!Number.isInteger(signupTabId) || tabId !== signupTabId) return '';
  1706. const candidates = [changeInfo?.url, tab?.url];
  1707. for (const candidate of candidates) {
  1708. if (isLocalhostOAuthCallbackUrl(candidate)) {
  1709. return candidate;
  1710. }
  1711. }
  1712. return '';
  1713. }
  1714. function getSourceLabel(source) {
  1715. const labels = {
  1716. 'sidepanel': '侧边栏',
  1717. 'signup-page': '认证页',
  1718. 'vps-panel': 'CPA 面板',
  1719. 'sub2api-panel': 'SUB2API 后台',
  1720. 'qq-mail': 'QQ 邮箱',
  1721. 'mail-163': '163 邮箱',
  1722. 'mail-2925': '2925 邮箱',
  1723. 'inbucket-mail': 'Inbucket 邮箱',
  1724. 'duck-mail': 'Duck 邮箱',
  1725. 'hotmail-api': 'Hotmail(微软 Graph)',
  1726. };
  1727. return labels[source] || source || '未知来源';
  1728. }
  1729. // ============================================================
  1730. // Step Status Management
  1731. // ============================================================
  1732. async function setStepStatus(step, status) {
  1733. const state = await getState();
  1734. const statuses = { ...state.stepStatuses };
  1735. statuses[step] = status;
  1736. await setState({ stepStatuses: statuses, currentStep: step });
  1737. // Broadcast to side panel
  1738. chrome.runtime.sendMessage({
  1739. type: 'STEP_STATUS_CHANGED',
  1740. payload: { step, status },
  1741. }).catch(() => { });
  1742. }
  1743. function isStopError(error) {
  1744. const message = typeof error === 'string' ? error : error?.message;
  1745. return message === STOP_ERROR_MESSAGE;
  1746. }
  1747. function isRetryableContentScriptTransportError(error) {
  1748. const message = String(typeof error === 'string' ? error : error?.message || '');
  1749. return /back\/forward cache|message channel is closed|Receiving end does not exist|port closed before a response was received|A listener indicated an asynchronous response|did not respond in \d+s/i.test(message);
  1750. }
  1751. function getErrorMessage(error) {
  1752. return String(typeof error === 'string' ? error : error?.message || '');
  1753. }
  1754. function isVerificationMailPollingError(error) {
  1755. const message = getErrorMessage(error);
  1756. return /未在 .*邮箱中找到新的匹配邮件|未在 Hotmail 收件箱中找到新的匹配验证码|邮箱轮询结束,但未获取到验证码|无法获取新的(?:注册|登录)验证码|页面未能重新就绪|页面通信异常|did not respond in \d+s/i.test(message);
  1757. }
  1758. const STEP7_RESTART_FROM_STEP6_ERROR_CODE = 'STEP7_RESTART_FROM_STEP6';
  1759. const STEP7_RESTART_FROM_STEP6_MARKER_PATTERN = /^STEP7_RESTART_FROM_STEP6::([^:]+)::(.*)$/;
  1760. function createStep7RestartFromStep6Error(details = {}) {
  1761. const { reason = 'unknown', url = '' } = details || {};
  1762. const reasonLabel = reason === 'login_timeout_error_page'
  1763. ? '检测到登录页超时报错'
  1764. : '步骤 7 请求回到步骤 6';
  1765. const error = new Error(`步骤 7:${reasonLabel}。${url ? `URL: ${url}` : ''}`.trim());
  1766. error.code = STEP7_RESTART_FROM_STEP6_ERROR_CODE;
  1767. error.restartReason = reason;
  1768. error.restartUrl = url;
  1769. return error;
  1770. }
  1771. function parseStep7RestartFromStep6Marker(message) {
  1772. const normalized = getErrorMessage(message);
  1773. const match = normalized.match(STEP7_RESTART_FROM_STEP6_MARKER_PATTERN);
  1774. if (!match) {
  1775. return null;
  1776. }
  1777. return {
  1778. reason: match[1] || 'unknown',
  1779. url: match[2] || '',
  1780. };
  1781. }
  1782. function getStep7RestartFromStep6Error(result) {
  1783. if (result?.restartFromStep6) {
  1784. return createStep7RestartFromStep6Error(result);
  1785. }
  1786. const parsed = parseStep7RestartFromStep6Marker(result?.error);
  1787. if (!parsed) {
  1788. return null;
  1789. }
  1790. return createStep7RestartFromStep6Error(parsed);
  1791. }
  1792. function isStep7RestartFromStep6Error(error) {
  1793. return error?.code === STEP7_RESTART_FROM_STEP6_ERROR_CODE
  1794. || Boolean(parseStep7RestartFromStep6Marker(error));
  1795. }
  1796. function isStep7RecoverableError(error) {
  1797. return isVerificationMailPollingError(error) || isStep7RestartFromStep6Error(error);
  1798. }
  1799. function isRestartCurrentAttemptError(error) {
  1800. const message = String(typeof error === 'string' ? error : error?.message || '');
  1801. return /当前邮箱已存在,需要重新开始新一轮/.test(message);
  1802. }
  1803. function isStep9RecoverableAuthError(error) {
  1804. const message = String(typeof error === 'string' ? error : error?.message || '');
  1805. return /STEP9_OAUTH_RETRY::/i.test(message)
  1806. || isRecoverableStep9AuthFailure(message);
  1807. }
  1808. function isLegacyStep9RecoverableAuthError(error) {
  1809. const message = String(typeof error === 'string' ? error : error?.message || '');
  1810. return /STEP9_OAUTH_TIMEOUT::|认证失败:\s*Timeout waiting for OAuth callback/i.test(message);
  1811. }
  1812. function isStepDoneStatus(status) {
  1813. return status === 'completed' || status === 'manual_completed' || status === 'skipped';
  1814. }
  1815. function getFirstUnfinishedStep(statuses = {}) {
  1816. for (let step = 1; step <= 9; step++) {
  1817. if (!isStepDoneStatus(statuses[step] || 'pending')) {
  1818. return step;
  1819. }
  1820. }
  1821. return null;
  1822. }
  1823. function hasSavedProgress(statuses = {}) {
  1824. return Object.values({ ...DEFAULT_STATE.stepStatuses, ...statuses }).some((status) => status !== 'pending');
  1825. }
  1826. function getDownstreamStateResets(step) {
  1827. if (step <= 1) {
  1828. return {
  1829. oauthUrl: null,
  1830. sub2apiSessionId: null,
  1831. sub2apiOAuthState: null,
  1832. sub2apiGroupId: null,
  1833. sub2apiDraftName: null,
  1834. flowStartTime: null,
  1835. password: null,
  1836. lastEmailTimestamp: null,
  1837. signupVerificationRequestedAt: null,
  1838. loginVerificationRequestedAt: null,
  1839. lastSignupCode: null,
  1840. lastLoginCode: null,
  1841. localhostUrl: null,
  1842. };
  1843. }
  1844. if (step === 2) {
  1845. return {
  1846. password: null,
  1847. lastEmailTimestamp: null,
  1848. signupVerificationRequestedAt: null,
  1849. loginVerificationRequestedAt: null,
  1850. lastSignupCode: null,
  1851. lastLoginCode: null,
  1852. localhostUrl: null,
  1853. };
  1854. }
  1855. if (step === 3 || step === 4) {
  1856. return {
  1857. lastEmailTimestamp: null,
  1858. signupVerificationRequestedAt: null,
  1859. loginVerificationRequestedAt: null,
  1860. lastSignupCode: null,
  1861. lastLoginCode: null,
  1862. localhostUrl: null,
  1863. };
  1864. }
  1865. if (step === 5 || step === 6 || step === 7) {
  1866. return {
  1867. lastLoginCode: null,
  1868. loginVerificationRequestedAt: null,
  1869. localhostUrl: null,
  1870. };
  1871. }
  1872. if (step === 8) {
  1873. return {
  1874. localhostUrl: null,
  1875. };
  1876. }
  1877. return {};
  1878. }
  1879. async function invalidateDownstreamAfterStepRestart(step, options = {}) {
  1880. const { logLabel = `步骤 ${step} 重新执行` } = options;
  1881. const state = await getState();
  1882. const statuses = { ...(state.stepStatuses || {}) };
  1883. const changedSteps = [];
  1884. for (let downstream = step + 1; downstream <= 9; downstream++) {
  1885. if (statuses[downstream] !== 'pending') {
  1886. statuses[downstream] = 'pending';
  1887. changedSteps.push(downstream);
  1888. }
  1889. }
  1890. if (changedSteps.length) {
  1891. await setState({ stepStatuses: statuses });
  1892. for (const downstream of changedSteps) {
  1893. chrome.runtime.sendMessage({
  1894. type: 'STEP_STATUS_CHANGED',
  1895. payload: { step: downstream, status: 'pending' },
  1896. }).catch(() => { });
  1897. }
  1898. await addLog(`${logLabel},已重置后续步骤状态:${changedSteps.join(', ')}`, 'warn');
  1899. }
  1900. const resets = getDownstreamStateResets(step);
  1901. if (Object.keys(resets).length) {
  1902. await setState(resets);
  1903. broadcastDataUpdate(resets);
  1904. }
  1905. }
  1906. function clearStopRequest() {
  1907. stopRequested = false;
  1908. }
  1909. function getRunningSteps(statuses = {}) {
  1910. return Object.entries({ ...DEFAULT_STATE.stepStatuses, ...statuses })
  1911. .filter(([, status]) => status === 'running')
  1912. .map(([step]) => Number(step))
  1913. .sort((a, b) => a - b);
  1914. }
  1915. function getAutoRunStatusPayload(phase, payload = {}) {
  1916. const currentRun = payload.currentRun ?? autoRunCurrentRun;
  1917. const totalRuns = payload.totalRuns ?? autoRunTotalRuns;
  1918. const attemptRun = payload.attemptRun ?? autoRunAttemptRun;
  1919. const rawScheduledAt = phase === 'scheduled'
  1920. ? (payload.scheduledAt ?? payload.scheduledAutoRunAt ?? null)
  1921. : null;
  1922. const scheduledAt = rawScheduledAt === null ? null : Number(rawScheduledAt);
  1923. const autoRunning = phase === 'scheduled' || phase === 'running' || phase === 'waiting_step' || phase === 'waiting_email' || phase === 'retrying';
  1924. return {
  1925. autoRunning,
  1926. autoRunPhase: phase,
  1927. autoRunCurrentRun: currentRun,
  1928. autoRunTotalRuns: totalRuns,
  1929. autoRunAttemptRun: attemptRun,
  1930. scheduledAutoRunAt: Number.isFinite(scheduledAt) ? scheduledAt : null,
  1931. };
  1932. }
  1933. async function broadcastAutoRunStatus(phase, payload = {}, extraState = {}) {
  1934. const rawScheduledAt = phase === 'scheduled'
  1935. ? (payload.scheduledAt ?? payload.scheduledAutoRunAt ?? null)
  1936. : null;
  1937. const statusPayload = {
  1938. phase,
  1939. currentRun: payload.currentRun ?? autoRunCurrentRun,
  1940. totalRuns: payload.totalRuns ?? autoRunTotalRuns,
  1941. attemptRun: payload.attemptRun ?? autoRunAttemptRun,
  1942. scheduledAt: rawScheduledAt === null ? null : Number(rawScheduledAt),
  1943. };
  1944. await setState({
  1945. ...extraState,
  1946. ...getAutoRunStatusPayload(phase, statusPayload),
  1947. });
  1948. chrome.runtime.sendMessage({
  1949. type: 'AUTO_RUN_STATUS',
  1950. payload: statusPayload,
  1951. }).catch(() => { });
  1952. }
  1953. function isAutoRunLockedState(state) {
  1954. return Boolean(state.autoRunning) && (state.autoRunPhase === 'running' || state.autoRunPhase === 'waiting_step' || state.autoRunPhase === 'retrying');
  1955. }
  1956. function isAutoRunPausedState(state) {
  1957. return Boolean(state.autoRunning) && state.autoRunPhase === 'waiting_email';
  1958. }
  1959. function isAutoRunScheduledState(state) {
  1960. const scheduledAt = state.scheduledAutoRunAt === null ? null : Number(state.scheduledAutoRunAt);
  1961. return Boolean(state.autoRunning)
  1962. && state.autoRunPhase === 'scheduled'
  1963. && Number.isFinite(scheduledAt)
  1964. && Boolean(normalizeScheduledAutoRunPlan(state.scheduledAutoRunPlan));
  1965. }
  1966. function formatAutoRunScheduleTime(timestamp) {
  1967. return new Date(timestamp).toLocaleString('zh-CN', {
  1968. hour12: false,
  1969. month: '2-digit',
  1970. day: '2-digit',
  1971. hour: '2-digit',
  1972. minute: '2-digit',
  1973. second: '2-digit',
  1974. });
  1975. }
  1976. async function setAutoRunDelayEnabledState(enabled) {
  1977. const normalized = Boolean(enabled);
  1978. await setPersistentSettings({ autoRunDelayEnabled: normalized });
  1979. await setState({ autoRunDelayEnabled: normalized });
  1980. broadcastDataUpdate({ autoRunDelayEnabled: normalized });
  1981. }
  1982. async function ensureScheduledAutoRunAlarm(scheduledAt) {
  1983. if (!Number.isFinite(scheduledAt) || scheduledAt <= Date.now()) {
  1984. return false;
  1985. }
  1986. const existingAlarm = await chrome.alarms.get(AUTO_RUN_ALARM_NAME);
  1987. if (!existingAlarm || Math.abs((existingAlarm.scheduledTime || 0) - scheduledAt) > 1000) {
  1988. await chrome.alarms.clear(AUTO_RUN_ALARM_NAME);
  1989. await chrome.alarms.create(AUTO_RUN_ALARM_NAME, { when: scheduledAt });
  1990. }
  1991. return true;
  1992. }
  1993. async function clearScheduledAutoRunAlarm() {
  1994. await chrome.alarms.clear(AUTO_RUN_ALARM_NAME);
  1995. }
  1996. async function scheduleAutoRun(totalRuns, options = {}) {
  1997. const state = await getState();
  1998. if (isAutoRunLockedState(state) || isAutoRunPausedState(state) || autoRunActive) {
  1999. throw new Error('自动运行已在进行中,请先停止后再重新计划。');
  2000. }
  2001. if (isAutoRunScheduledState(state)) {
  2002. throw new Error('已有自动运行倒计时计划,请先取消或立即开始。');
  2003. }
  2004. const delayMinutes = normalizeAutoRunDelayMinutes(options.delayMinutes);
  2005. const plan = normalizeScheduledAutoRunPlan({
  2006. totalRuns,
  2007. autoRunSkipFailures: options.autoRunSkipFailures,
  2008. mode: options.mode,
  2009. });
  2010. const scheduledAt = Date.now() + delayMinutes * 60 * 1000;
  2011. autoRunCurrentRun = 0;
  2012. autoRunTotalRuns = plan.totalRuns;
  2013. autoRunAttemptRun = 0;
  2014. await ensureScheduledAutoRunAlarm(scheduledAt);
  2015. await broadcastAutoRunStatus(
  2016. 'scheduled',
  2017. {
  2018. currentRun: 0,
  2019. totalRuns: plan.totalRuns,
  2020. attemptRun: 0,
  2021. scheduledAt,
  2022. },
  2023. {
  2024. autoRunSkipFailures: plan.autoRunSkipFailures,
  2025. scheduledAutoRunPlan: plan,
  2026. }
  2027. );
  2028. await addLog(
  2029. `自动运行已计划:${delayMinutes} 分钟后启动(${formatAutoRunScheduleTime(scheduledAt)}),目标 ${plan.totalRuns} 轮。`,
  2030. 'info'
  2031. );
  2032. return { ok: true, scheduledAt };
  2033. }
  2034. let scheduledAutoRunLaunching = false;
  2035. async function launchScheduledAutoRun(trigger = 'alarm') {
  2036. if (scheduledAutoRunLaunching) {
  2037. return false;
  2038. }
  2039. scheduledAutoRunLaunching = true;
  2040. try {
  2041. const state = await getState();
  2042. if (!isAutoRunScheduledState(state)) {
  2043. return false;
  2044. }
  2045. if (autoRunActive) {
  2046. return false;
  2047. }
  2048. const plan = normalizeScheduledAutoRunPlan(state.scheduledAutoRunPlan);
  2049. if (!plan) {
  2050. await clearScheduledAutoRunAlarm();
  2051. await broadcastAutoRunStatus('idle', {
  2052. currentRun: 0,
  2053. totalRuns: 1,
  2054. attemptRun: 0,
  2055. }, {
  2056. scheduledAutoRunPlan: null,
  2057. });
  2058. return false;
  2059. }
  2060. await clearScheduledAutoRunAlarm();
  2061. if (trigger !== 'manual' && state.autoRunDelayEnabled) {
  2062. await setAutoRunDelayEnabledState(false);
  2063. }
  2064. await broadcastAutoRunStatus(
  2065. 'running',
  2066. {
  2067. currentRun: 0,
  2068. totalRuns: plan.totalRuns,
  2069. attemptRun: 0,
  2070. },
  2071. {
  2072. autoRunSkipFailures: plan.autoRunSkipFailures,
  2073. scheduledAutoRunPlan: null,
  2074. }
  2075. );
  2076. clearStopRequest();
  2077. await addLog(
  2078. trigger === 'manual'
  2079. ? '已手动跳过倒计时,自动运行立即开始。'
  2080. : '倒计时结束,自动运行开始执行。',
  2081. 'info'
  2082. );
  2083. autoRunLoop(plan.totalRuns, {
  2084. autoRunSkipFailures: plan.autoRunSkipFailures,
  2085. mode: plan.mode,
  2086. });
  2087. return true;
  2088. } finally {
  2089. scheduledAutoRunLaunching = false;
  2090. }
  2091. }
  2092. async function cancelScheduledAutoRun(options = {}) {
  2093. const state = await getState();
  2094. if (!isAutoRunScheduledState(state)) {
  2095. return false;
  2096. }
  2097. const plan = normalizeScheduledAutoRunPlan(state.scheduledAutoRunPlan);
  2098. await clearScheduledAutoRunAlarm();
  2099. autoRunCurrentRun = 0;
  2100. autoRunTotalRuns = plan?.totalRuns || 1;
  2101. autoRunAttemptRun = 0;
  2102. await broadcastAutoRunStatus(
  2103. 'idle',
  2104. {
  2105. currentRun: 0,
  2106. totalRuns: plan?.totalRuns || 1,
  2107. attemptRun: 0,
  2108. },
  2109. {
  2110. scheduledAutoRunPlan: null,
  2111. }
  2112. );
  2113. if (options.logMessage !== false) {
  2114. await addLog(options.logMessage || '已取消自动运行倒计时计划。', 'warn');
  2115. }
  2116. return true;
  2117. }
  2118. async function restoreScheduledAutoRunIfNeeded() {
  2119. const state = await getState();
  2120. if (state.autoRunPhase !== 'scheduled') {
  2121. return;
  2122. }
  2123. const plan = normalizeScheduledAutoRunPlan(state.scheduledAutoRunPlan);
  2124. const scheduledAt = state.scheduledAutoRunAt === null ? null : Number(state.scheduledAutoRunAt);
  2125. if (!plan || !Number.isFinite(scheduledAt)) {
  2126. await clearScheduledAutoRunAlarm();
  2127. await broadcastAutoRunStatus('idle', {
  2128. currentRun: 0,
  2129. totalRuns: 1,
  2130. attemptRun: 0,
  2131. }, {
  2132. scheduledAutoRunPlan: null,
  2133. });
  2134. return;
  2135. }
  2136. if (scheduledAt <= Date.now()) {
  2137. await launchScheduledAutoRun('restore');
  2138. return;
  2139. }
  2140. await ensureScheduledAutoRunAlarm(scheduledAt);
  2141. }
  2142. async function ensureManualInteractionAllowed(actionLabel) {
  2143. const state = await getState();
  2144. if (isAutoRunLockedState(state)) {
  2145. throw new Error(`自动流程运行中,请先停止后再${actionLabel}。`);
  2146. }
  2147. if (isAutoRunPausedState(state)) {
  2148. throw new Error(`自动流程当前已暂停。请点击“继续”,或先确认接管自动流程后再${actionLabel}。`);
  2149. }
  2150. if (isAutoRunScheduledState(state)) {
  2151. throw new Error(`自动流程已计划启动。请先取消计划,或立即开始后再${actionLabel}。`);
  2152. }
  2153. return state;
  2154. }
  2155. async function skipStep(step) {
  2156. const state = await ensureManualInteractionAllowed('跳过步骤');
  2157. if (!Number.isInteger(step) || step < 1 || step > 9) {
  2158. throw new Error(`无效步骤:${step}`);
  2159. }
  2160. const statuses = { ...(state.stepStatuses || {}) };
  2161. const currentStatus = statuses[step];
  2162. if (currentStatus === 'running') {
  2163. throw new Error(`步骤 ${step} 正在运行中,不能跳过。`);
  2164. }
  2165. if (isStepDoneStatus(currentStatus)) {
  2166. throw new Error(`步骤 ${step} 已完成,无需再跳过。`);
  2167. }
  2168. if (step > 1) {
  2169. const prevStatus = statuses[step - 1];
  2170. if (!isStepDoneStatus(prevStatus)) {
  2171. throw new Error(`请先完成步骤 ${step - 1},再跳过步骤 ${step}。`);
  2172. }
  2173. }
  2174. await setStepStatus(step, 'skipped');
  2175. await addLog(`步骤 ${step} 已跳过`, 'warn');
  2176. if (step === 1) {
  2177. const latestState = await getState();
  2178. const step2Status = latestState.stepStatuses?.[2];
  2179. if (!isStepDoneStatus(step2Status) && step2Status !== 'running') {
  2180. await setStepStatus(2, 'skipped');
  2181. await addLog('步骤 1 已跳过,步骤 2 也已同时跳过。', 'warn');
  2182. }
  2183. }
  2184. return { ok: true, step, status: 'skipped' };
  2185. }
  2186. function throwIfStopped() {
  2187. if (stopRequested) {
  2188. throw new Error(STOP_ERROR_MESSAGE);
  2189. }
  2190. }
  2191. async function sleepWithStop(ms) {
  2192. const start = Date.now();
  2193. while (Date.now() - start < ms) {
  2194. throwIfStopped();
  2195. await new Promise(r => setTimeout(r, Math.min(100, ms - (Date.now() - start))));
  2196. }
  2197. }
  2198. async function humanStepDelay(min = HUMAN_STEP_DELAY_MIN, max = HUMAN_STEP_DELAY_MAX) {
  2199. const duration = Math.floor(Math.random() * (max - min + 1)) + min;
  2200. await sleepWithStop(duration);
  2201. }
  2202. async function clickWithDebugger(tabId, rect) {
  2203. throwIfStopped();
  2204. if (!tabId) {
  2205. throw new Error('未找到用于调试点击的认证页面标签页。');
  2206. }
  2207. if (!rect || !Number.isFinite(rect.centerX) || !Number.isFinite(rect.centerY)) {
  2208. throw new Error('步骤 8 的调试器兜底点击需要有效的按钮坐标。');
  2209. }
  2210. const target = { tabId };
  2211. try {
  2212. await chrome.debugger.attach(target, '1.3');
  2213. } catch (err) {
  2214. throw new Error(
  2215. `步骤 8 的调试器兜底点击附加失败:${err.message}。` +
  2216. '如果认证页标签已打开 DevTools,请先关闭后重试。'
  2217. );
  2218. }
  2219. try {
  2220. throwIfStopped();
  2221. const x = Math.round(rect.centerX);
  2222. const y = Math.round(rect.centerY);
  2223. await chrome.debugger.sendCommand(target, 'Page.bringToFront');
  2224. throwIfStopped();
  2225. await chrome.debugger.sendCommand(target, 'Input.dispatchMouseEvent', {
  2226. type: 'mouseMoved',
  2227. x,
  2228. y,
  2229. button: 'none',
  2230. buttons: 0,
  2231. clickCount: 0,
  2232. });
  2233. throwIfStopped();
  2234. await chrome.debugger.sendCommand(target, 'Input.dispatchMouseEvent', {
  2235. type: 'mousePressed',
  2236. x,
  2237. y,
  2238. button: 'left',
  2239. buttons: 1,
  2240. clickCount: 1,
  2241. });
  2242. throwIfStopped();
  2243. await chrome.debugger.sendCommand(target, 'Input.dispatchMouseEvent', {
  2244. type: 'mouseReleased',
  2245. x,
  2246. y,
  2247. button: 'left',
  2248. buttons: 0,
  2249. clickCount: 1,
  2250. });
  2251. } finally {
  2252. await chrome.debugger.detach(target).catch(() => { });
  2253. }
  2254. }
  2255. async function broadcastStopToContentScripts() {
  2256. const registry = await getTabRegistry();
  2257. for (const entry of Object.values(registry)) {
  2258. if (!entry?.tabId) continue;
  2259. try {
  2260. await chrome.tabs.sendMessage(entry.tabId, {
  2261. type: 'STOP_FLOW',
  2262. source: 'background',
  2263. payload: {},
  2264. });
  2265. } catch { }
  2266. }
  2267. }
  2268. let stopRequested = false;
  2269. // ============================================================
  2270. // Message Handler (central router)
  2271. // ============================================================
  2272. chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
  2273. console.log(LOG_PREFIX, `Received: ${message.type} from ${message.source || 'sidepanel'}`, message);
  2274. handleMessage(message, sender).then(response => {
  2275. sendResponse(response);
  2276. }).catch(err => {
  2277. console.error(LOG_PREFIX, 'Handler error:', err);
  2278. sendResponse({ error: err.message });
  2279. });
  2280. return true; // async response
  2281. });
  2282. async function handleMessage(message, sender) {
  2283. switch (message.type) {
  2284. case 'CONTENT_SCRIPT_READY': {
  2285. const tabId = sender.tab?.id;
  2286. if (tabId && message.source) {
  2287. await registerTab(message.source, tabId);
  2288. flushCommand(message.source, tabId);
  2289. await addLog(`内容脚本已就绪:${getSourceLabel(message.source)}(标签页 ${tabId})`);
  2290. }
  2291. return { ok: true };
  2292. }
  2293. case 'LOG': {
  2294. const { message: msg, level } = message.payload;
  2295. await addLog(`[${getSourceLabel(message.source)}] ${msg}`, level);
  2296. return { ok: true };
  2297. }
  2298. case 'STEP_COMPLETE': {
  2299. if (stopRequested) {
  2300. await setStepStatus(message.step, 'stopped');
  2301. notifyStepError(message.step, STOP_ERROR_MESSAGE);
  2302. return { ok: true };
  2303. }
  2304. await setStepStatus(message.step, 'completed');
  2305. await addLog(`步骤 ${message.step} 已完成`, 'ok');
  2306. await handleStepData(message.step, message.payload);
  2307. notifyStepComplete(message.step, message.payload);
  2308. return { ok: true };
  2309. }
  2310. case 'STEP_ERROR': {
  2311. if (isStopError(message.error)) {
  2312. await setStepStatus(message.step, 'stopped');
  2313. await addLog(`步骤 ${message.step} 已被用户停止`, 'warn');
  2314. notifyStepError(message.step, message.error);
  2315. } else {
  2316. await setStepStatus(message.step, 'failed');
  2317. await addLog(`步骤 ${message.step} 失败:${message.error}`, 'error');
  2318. notifyStepError(message.step, message.error);
  2319. }
  2320. return { ok: true };
  2321. }
  2322. case 'GET_STATE': {
  2323. return await getState();
  2324. }
  2325. case 'RESET': {
  2326. clearStopRequest();
  2327. await clearScheduledAutoRunAlarm();
  2328. await resetState();
  2329. await addLog('流程已重置', 'info');
  2330. return { ok: true };
  2331. }
  2332. case 'EXECUTE_STEP': {
  2333. clearStopRequest();
  2334. if (message.source === 'sidepanel') {
  2335. await ensureManualInteractionAllowed('手动执行步骤');
  2336. }
  2337. const step = message.payload.step;
  2338. if (message.source === 'sidepanel') {
  2339. await invalidateDownstreamAfterStepRestart(step, { logLabel: `步骤 ${step} 重新执行` });
  2340. }
  2341. // Save email if provided (from side panel step 3)
  2342. if (message.payload.email) {
  2343. await setEmailState(message.payload.email);
  2344. }
  2345. if (message.payload.emailPrefix !== undefined) {
  2346. await setPersistentSettings({ emailPrefix: message.payload.emailPrefix });
  2347. await setState({ emailPrefix: message.payload.emailPrefix });
  2348. }
  2349. await executeStep(step);
  2350. return { ok: true };
  2351. }
  2352. case 'AUTO_RUN': {
  2353. clearStopRequest();
  2354. const state = await getState();
  2355. if (isAutoRunScheduledState(state)) {
  2356. throw new Error('已有自动运行倒计时计划,请先取消或立即开始。');
  2357. }
  2358. const totalRuns = normalizeRunCount(message.payload?.totalRuns || 1);
  2359. const autoRunSkipFailures = Boolean(message.payload?.autoRunSkipFailures);
  2360. const mode = message.payload?.mode === 'continue' ? 'continue' : 'restart';
  2361. await setState({ autoRunSkipFailures });
  2362. autoRunLoop(totalRuns, { autoRunSkipFailures, mode }); // fire-and-forget
  2363. return { ok: true };
  2364. }
  2365. case 'SCHEDULE_AUTO_RUN': {
  2366. clearStopRequest();
  2367. const totalRuns = normalizeRunCount(message.payload?.totalRuns || 1);
  2368. return await scheduleAutoRun(totalRuns, {
  2369. delayMinutes: message.payload?.delayMinutes,
  2370. autoRunSkipFailures: Boolean(message.payload?.autoRunSkipFailures),
  2371. mode: message.payload?.mode,
  2372. });
  2373. }
  2374. case 'START_SCHEDULED_AUTO_RUN_NOW': {
  2375. clearStopRequest();
  2376. const started = await launchScheduledAutoRun('manual');
  2377. if (!started) {
  2378. throw new Error('当前没有可立即开始的倒计时计划。');
  2379. }
  2380. return { ok: true };
  2381. }
  2382. case 'CANCEL_SCHEDULED_AUTO_RUN': {
  2383. const cancelled = await cancelScheduledAutoRun();
  2384. if (!cancelled) {
  2385. throw new Error('当前没有可取消的倒计时计划。');
  2386. }
  2387. return { ok: true };
  2388. }
  2389. case 'RESUME_AUTO_RUN': {
  2390. clearStopRequest();
  2391. if (message.payload.email) {
  2392. await setEmailState(message.payload.email);
  2393. }
  2394. resumeAutoRun(); // fire-and-forget
  2395. return { ok: true };
  2396. }
  2397. case 'TAKEOVER_AUTO_RUN': {
  2398. await requestStop({ logMessage: '已确认手动接管,正在停止自动流程并切换为手动控制...' });
  2399. await addLog('自动流程已切换为手动控制。', 'warn');
  2400. return { ok: true };
  2401. }
  2402. case 'SKIP_STEP': {
  2403. const step = Number(message.payload?.step);
  2404. return await skipStep(step);
  2405. }
  2406. case 'SAVE_SETTING': {
  2407. const updates = buildPersistentSettingsPayload(message.payload || {});
  2408. await setPersistentSettings(updates);
  2409. await setState(updates);
  2410. return { ok: true };
  2411. }
  2412. case 'EXPORT_SETTINGS': {
  2413. return { ok: true, ...(await exportSettingsBundle()) };
  2414. }
  2415. case 'IMPORT_SETTINGS': {
  2416. const state = await importSettingsBundle(message.payload?.config || null);
  2417. return { ok: true, state };
  2418. }
  2419. case 'UPSERT_HOTMAIL_ACCOUNT': {
  2420. const account = await upsertHotmailAccount(message.payload || {});
  2421. return { ok: true, account };
  2422. }
  2423. case 'DELETE_HOTMAIL_ACCOUNT': {
  2424. await deleteHotmailAccount(String(message.payload?.accountId || ''));
  2425. return { ok: true };
  2426. }
  2427. case 'DELETE_HOTMAIL_ACCOUNTS': {
  2428. const result = await deleteHotmailAccounts(String(message.payload?.mode || 'all'));
  2429. return { ok: true, ...result };
  2430. }
  2431. case 'SELECT_HOTMAIL_ACCOUNT': {
  2432. const account = await setCurrentHotmailAccount(String(message.payload?.accountId || ''), {
  2433. markUsed: false,
  2434. syncEmail: true,
  2435. });
  2436. return { ok: true, account };
  2437. }
  2438. case 'PATCH_HOTMAIL_ACCOUNT': {
  2439. const account = await patchHotmailAccount(
  2440. String(message.payload?.accountId || ''),
  2441. message.payload?.updates || {}
  2442. );
  2443. return { ok: true, account };
  2444. }
  2445. case 'VERIFY_HOTMAIL_ACCOUNT':
  2446. case 'AUTHORIZE_HOTMAIL_ACCOUNT': {
  2447. const accountId = String(message.payload?.accountId || '');
  2448. try {
  2449. const result = await verifyHotmailAccount(accountId);
  2450. await setCurrentHotmailAccount(result.account.id, { markUsed: false, syncEmail: true });
  2451. await addLog(`Hotmail 账号 ${result.account.email} 校验通过,可直接用于收信。`, 'ok');
  2452. return { ok: true, account: result.account, messageCount: result.messageCount };
  2453. } catch (err) {
  2454. const state = await getState();
  2455. const accounts = normalizeHotmailAccounts(state.hotmailAccounts);
  2456. const target = findHotmailAccount(accounts, accountId);
  2457. if (target) {
  2458. target.status = 'error';
  2459. target.lastError = err.message;
  2460. await syncHotmailAccounts(accounts.map((item) => (item.id === target.id ? target : item)));
  2461. }
  2462. throw err;
  2463. }
  2464. }
  2465. case 'TEST_HOTMAIL_ACCOUNT': {
  2466. const result = await testHotmailAccountMailAccess(String(message.payload?.accountId || ''));
  2467. return { ok: true, ...result };
  2468. }
  2469. // Side panel data updates
  2470. case 'SET_EMAIL_STATE': {
  2471. const state = await getState();
  2472. if (isAutoRunLockedState(state)) {
  2473. throw new Error('自动流程运行中,当前不能手动修改邮箱。');
  2474. }
  2475. const email = String(message.payload?.email || '').trim() || null;
  2476. await setEmailStateSilently(email);
  2477. return { ok: true, email };
  2478. }
  2479. case 'SAVE_EMAIL': {
  2480. const state = await getState();
  2481. if (isAutoRunLockedState(state)) {
  2482. throw new Error('自动流程运行中,当前不能手动修改邮箱。');
  2483. }
  2484. await setEmailState(message.payload.email);
  2485. await resumeAutoRun();
  2486. return { ok: true, email: message.payload.email };
  2487. }
  2488. case 'FETCH_GENERATED_EMAIL': {
  2489. clearStopRequest();
  2490. const state = await getState();
  2491. if (isAutoRunLockedState(state)) {
  2492. throw new Error('自动流程运行中,当前不能手动获取邮箱。');
  2493. }
  2494. const email = await fetchGeneratedEmail(state, message.payload || {});
  2495. await resumeAutoRun();
  2496. return { ok: true, email };
  2497. }
  2498. case 'FETCH_DUCK_EMAIL': {
  2499. clearStopRequest();
  2500. const state = await getState();
  2501. if (isAutoRunLockedState(state)) {
  2502. throw new Error('自动流程运行中,当前不能手动获取邮箱。');
  2503. }
  2504. const email = await fetchGeneratedEmail(state, { ...(message.payload || {}), generator: 'duck' });
  2505. await resumeAutoRun();
  2506. return { ok: true, email };
  2507. }
  2508. case 'STOP_FLOW': {
  2509. await requestStop();
  2510. return { ok: true };
  2511. }
  2512. default:
  2513. console.warn(LOG_PREFIX, `Unknown message type: ${message.type}`);
  2514. return { error: `Unknown message type: ${message.type}` };
  2515. }
  2516. }
  2517. // ============================================================
  2518. // Step Data Handlers
  2519. // ============================================================
  2520. async function handleStepData(step, payload) {
  2521. switch (step) {
  2522. case 1: {
  2523. const updates = {};
  2524. if (payload.oauthUrl) {
  2525. updates.oauthUrl = payload.oauthUrl;
  2526. broadcastDataUpdate({ oauthUrl: payload.oauthUrl });
  2527. }
  2528. if (payload.sub2apiSessionId !== undefined) updates.sub2apiSessionId = payload.sub2apiSessionId || null;
  2529. if (payload.sub2apiOAuthState !== undefined) updates.sub2apiOAuthState = payload.sub2apiOAuthState || null;
  2530. if (payload.sub2apiGroupId !== undefined) updates.sub2apiGroupId = payload.sub2apiGroupId || null;
  2531. if (payload.sub2apiDraftName !== undefined) updates.sub2apiDraftName = payload.sub2apiDraftName || null;
  2532. if (Object.keys(updates).length) {
  2533. await setState(updates);
  2534. }
  2535. break;
  2536. }
  2537. case 3:
  2538. if (payload.email) await setEmailState(payload.email);
  2539. if (payload.signupVerificationRequestedAt) {
  2540. await setState({ signupVerificationRequestedAt: payload.signupVerificationRequestedAt });
  2541. }
  2542. if (payload.loginVerificationRequestedAt) {
  2543. await setState({ loginVerificationRequestedAt: payload.loginVerificationRequestedAt });
  2544. }
  2545. break;
  2546. case 6:
  2547. if (payload.loginVerificationRequestedAt) {
  2548. await setState({ loginVerificationRequestedAt: payload.loginVerificationRequestedAt });
  2549. }
  2550. break;
  2551. case 4:
  2552. await setState({
  2553. lastEmailTimestamp: payload.emailTimestamp || null,
  2554. signupVerificationRequestedAt: null,
  2555. });
  2556. break;
  2557. case 7:
  2558. await setState({
  2559. lastEmailTimestamp: payload.emailTimestamp || null,
  2560. loginVerificationRequestedAt: null,
  2561. });
  2562. break;
  2563. case 8:
  2564. if (payload.localhostUrl) {
  2565. if (!isLocalhostOAuthCallbackUrl(payload.localhostUrl)) {
  2566. throw new Error('步骤 8 返回了无效的 localhost OAuth 回调地址。');
  2567. }
  2568. await setState({ localhostUrl: payload.localhostUrl });
  2569. broadcastDataUpdate({ localhostUrl: payload.localhostUrl });
  2570. }
  2571. break;
  2572. case 9: {
  2573. if (payload.localhostUrl) {
  2574. await closeLocalhostCallbackTabs(payload.localhostUrl);
  2575. }
  2576. const latestState = await getState();
  2577. if (latestState.currentHotmailAccountId && isHotmailProvider(latestState)) {
  2578. await patchHotmailAccount(latestState.currentHotmailAccountId, {
  2579. used: true,
  2580. lastUsedAt: Date.now(),
  2581. });
  2582. await addLog('当前 Hotmail 账号已自动标记为已用。', 'ok');
  2583. }
  2584. const localhostPrefix = buildLocalhostCleanupPrefix(payload.localhostUrl);
  2585. if (localhostPrefix) {
  2586. await closeTabsByUrlPrefix(localhostPrefix);
  2587. }
  2588. break;
  2589. }
  2590. }
  2591. }
  2592. // ============================================================
  2593. // Step Completion Waiting
  2594. // ============================================================
  2595. // Map of step -> { resolve, reject } for waiting on step completion
  2596. const stepWaiters = new Map();
  2597. let resumeWaiter = null;
  2598. const AUTO_RUN_SIGNAL_COMPLETION_TIMEOUT_MS = 120000;
  2599. const AUTO_RUN_BACKGROUND_COMPLETED_STEPS = new Set([4, 7, 8]);
  2600. function waitForStepComplete(step, timeoutMs = 120000) {
  2601. return new Promise((resolve, reject) => {
  2602. throwIfStopped();
  2603. if (stepWaiters.has(step)) {
  2604. console.warn(LOG_PREFIX, `[waitForStepComplete] replacing existing waiter for step ${step}`);
  2605. }
  2606. console.log(LOG_PREFIX, `[waitForStepComplete] register step ${step}, timeout=${timeoutMs}ms`);
  2607. const timer = setTimeout(() => {
  2608. stepWaiters.delete(step);
  2609. console.warn(LOG_PREFIX, `[waitForStepComplete] timeout for step ${step} after ${timeoutMs}ms`);
  2610. reject(new Error(`步骤 ${step} 等待超时(>${timeoutMs / 1000} 秒)`));
  2611. }, timeoutMs);
  2612. stepWaiters.set(step, {
  2613. resolve: (data) => { clearTimeout(timer); stepWaiters.delete(step); resolve(data); },
  2614. reject: (err) => { clearTimeout(timer); stepWaiters.delete(step); reject(err); },
  2615. });
  2616. });
  2617. }
  2618. function notifyStepComplete(step, payload) {
  2619. const waiter = stepWaiters.get(step);
  2620. console.log(LOG_PREFIX, `[notifyStepComplete] step ${step}, hasWaiter=${Boolean(waiter)}`);
  2621. if (waiter) waiter.resolve(payload);
  2622. }
  2623. function notifyStepError(step, error) {
  2624. const waiter = stepWaiters.get(step);
  2625. console.warn(LOG_PREFIX, `[notifyStepError] step ${step}, hasWaiter=${Boolean(waiter)}, error=${error}`);
  2626. if (waiter) waiter.reject(new Error(error));
  2627. }
  2628. async function completeStepFromBackground(step, payload = {}) {
  2629. if (stopRequested) {
  2630. await setStepStatus(step, 'stopped');
  2631. notifyStepError(step, STOP_ERROR_MESSAGE);
  2632. return;
  2633. }
  2634. await setStepStatus(step, 'completed');
  2635. await addLog(`步骤 ${step} 已完成`, 'ok');
  2636. await handleStepData(step, payload);
  2637. notifyStepComplete(step, payload);
  2638. }
  2639. async function waitForRunningStepsToFinish(payload = {}) {
  2640. let currentState = await getState();
  2641. let runningSteps = getRunningSteps(currentState.stepStatuses);
  2642. if (!runningSteps.length) {
  2643. return currentState;
  2644. }
  2645. await addLog(`自动继续:检测到步骤 ${runningSteps.join(', ')} 正在运行,等待完成后再继续自动流程...`, 'info');
  2646. await broadcastAutoRunStatus('waiting_step', payload);
  2647. while (runningSteps.length) {
  2648. await sleepWithStop(250);
  2649. currentState = await getState();
  2650. runningSteps = getRunningSteps(currentState.stepStatuses);
  2651. }
  2652. await addLog('自动继续:当前运行步骤已结束,准备按最新进度继续自动流程...', 'info');
  2653. return currentState;
  2654. }
  2655. async function markRunningStepsStopped() {
  2656. const state = await getState();
  2657. const runningSteps = getRunningSteps(state.stepStatuses);
  2658. for (const step of runningSteps) {
  2659. await setStepStatus(step, 'stopped');
  2660. }
  2661. }
  2662. async function requestStop(options = {}) {
  2663. const { logMessage = '已收到停止请求,正在取消当前操作...' } = options;
  2664. const state = await getState();
  2665. if (isAutoRunScheduledState(state) && !autoRunActive) {
  2666. await cancelScheduledAutoRun({
  2667. logMessage: options.logMessage === false
  2668. ? false
  2669. : (options.logMessage || '已取消自动运行倒计时计划。'),
  2670. });
  2671. return;
  2672. }
  2673. if (stopRequested) return;
  2674. stopRequested = true;
  2675. cancelPendingCommands();
  2676. cleanupStep8NavigationListeners();
  2677. rejectPendingStep8(new Error(STOP_ERROR_MESSAGE));
  2678. await addLog(logMessage, 'warn');
  2679. await broadcastStopToContentScripts();
  2680. for (const waiter of stepWaiters.values()) {
  2681. waiter.reject(new Error(STOP_ERROR_MESSAGE));
  2682. }
  2683. stepWaiters.clear();
  2684. if (resumeWaiter) {
  2685. resumeWaiter.reject(new Error(STOP_ERROR_MESSAGE));
  2686. resumeWaiter = null;
  2687. }
  2688. await markRunningStepsStopped();
  2689. autoRunActive = false;
  2690. await broadcastAutoRunStatus('stopped', {
  2691. currentRun: autoRunCurrentRun,
  2692. totalRuns: autoRunTotalRuns,
  2693. attemptRun: autoRunAttemptRun,
  2694. });
  2695. }
  2696. // ============================================================
  2697. // Step Execution
  2698. // ============================================================
  2699. async function executeStep(step) {
  2700. console.log(LOG_PREFIX, `Executing step ${step}`);
  2701. throwIfStopped();
  2702. await setStepStatus(step, 'running');
  2703. await addLog(`步骤 ${step} 开始执行`);
  2704. await humanStepDelay();
  2705. const state = await getState();
  2706. // Set flow start time on first step
  2707. if (step === 1 && !state.flowStartTime) {
  2708. await setState({ flowStartTime: Date.now() });
  2709. }
  2710. try {
  2711. switch (step) {
  2712. case 1: await executeStep1(state); break;
  2713. case 2: await executeStep2(state); break;
  2714. case 3: await executeStep3(state); break;
  2715. case 4: await executeStep4(state); break;
  2716. case 5: await executeStep5(state); break;
  2717. case 6: await executeStep6(state); break;
  2718. case 7: await executeStep7(state); break;
  2719. case 8: await executeStep8(state); break;
  2720. case 9: await executeStep9(state); break;
  2721. default:
  2722. throw new Error(`未知步骤:${step}`);
  2723. }
  2724. } catch (err) {
  2725. if (isStopError(err)) {
  2726. await setStepStatus(step, 'stopped');
  2727. await addLog(`步骤 ${step} 已被用户停止`, 'warn');
  2728. throw err;
  2729. }
  2730. await setStepStatus(step, 'failed');
  2731. await addLog(`步骤 ${step} 失败:${err.message}`, 'error');
  2732. throw err;
  2733. }
  2734. }
  2735. /**
  2736. * Execute a step and wait for it to complete before returning.
  2737. * @param {number} step
  2738. * @param {number} delayAfter - ms to wait after completion (for page transitions)
  2739. */
  2740. async function executeStepAndWait(step, delayAfter = 2000) {
  2741. throwIfStopped();
  2742. const delaySeconds = normalizeAutoStepDelaySeconds((await getState()).autoStepDelaySeconds, null);
  2743. if (delaySeconds > 0) {
  2744. await addLog(
  2745. `自动运行:步骤 ${step} 执行前额外等待 ${delaySeconds} 秒,避免节奏过快。`,
  2746. 'info'
  2747. );
  2748. await sleepWithStop(delaySeconds * 1000);
  2749. }
  2750. if (AUTO_RUN_BACKGROUND_COMPLETED_STEPS.has(step)) {
  2751. await addLog(`自动运行:步骤 ${step} 由后台流程负责收尾,执行函数返回后将直接进入下一步。`, 'info');
  2752. await executeStep(step);
  2753. const latestState = await getState();
  2754. await addLog(`自动运行:步骤 ${step} 已执行返回,当前状态为 ${latestState.stepStatuses?.[step] || 'pending'},准备继续后续步骤。`, 'info');
  2755. } else {
  2756. await addLog(`自动运行:步骤 ${step} 已发起,正在等待完成信号(超时 ${AUTO_RUN_SIGNAL_COMPLETION_TIMEOUT_MS / 1000} 秒)。`, 'info');
  2757. const completionResultPromise = waitForStepComplete(step, AUTO_RUN_SIGNAL_COMPLETION_TIMEOUT_MS).then(
  2758. payload => ({ ok: true, payload }),
  2759. error => ({ ok: false, error }),
  2760. );
  2761. try {
  2762. await executeStep(step);
  2763. } catch (err) {
  2764. notifyStepError(step, getErrorMessage(err));
  2765. await completionResultPromise;
  2766. throw err;
  2767. }
  2768. const completionResult = await completionResultPromise;
  2769. if (!completionResult.ok) {
  2770. throw completionResult.error;
  2771. }
  2772. await addLog(`自动运行:步骤 ${step} 已收到完成信号,准备继续后续步骤。`, 'info');
  2773. }
  2774. // Extra delay for page transitions / DOM updates
  2775. if (delayAfter > 0) {
  2776. await sleepWithStop(delayAfter + Math.floor(Math.random() * 1200));
  2777. }
  2778. }
  2779. function getEmailGeneratorLabel(generator) {
  2780. return generator === 'cloudflare' ? 'Cloudflare 邮箱' : 'Duck 邮箱';
  2781. }
  2782. function generateCloudflareAliasLocalPart() {
  2783. const letters = 'abcdefghijklmnopqrstuvwxyz';
  2784. const digits = '0123456789';
  2785. const chars = [];
  2786. for (let i = 0; i < 6; i++) {
  2787. chars.push(letters[Math.floor(Math.random() * letters.length)]);
  2788. }
  2789. for (let i = 0; i < 4; i++) {
  2790. chars.push(digits[Math.floor(Math.random() * digits.length)]);
  2791. }
  2792. for (let i = chars.length - 1; i > 0; i--) {
  2793. const j = Math.floor(Math.random() * (i + 1));
  2794. [chars[i], chars[j]] = [chars[j], chars[i]];
  2795. }
  2796. return chars.join('');
  2797. }
  2798. async function fetchCloudflareEmail(state, options = {}) {
  2799. throwIfStopped();
  2800. const latestState = state || await getState();
  2801. const domain = normalizeCloudflareDomain(latestState.cloudflareDomain);
  2802. if (!domain) {
  2803. throw new Error('Cloudflare 域名为空或格式无效。');
  2804. }
  2805. const localPart = String(options.localPart || '').trim().toLowerCase() || generateCloudflareAliasLocalPart();
  2806. const aliasEmail = `${localPart}@${domain}`;
  2807. await setEmailState(aliasEmail);
  2808. await addLog(`Cloudflare 邮箱:已生成 ${aliasEmail}`, 'ok');
  2809. return aliasEmail;
  2810. }
  2811. async function fetchDuckEmail(options = {}) {
  2812. throwIfStopped();
  2813. const { generateNew = true } = options;
  2814. await addLog(`Duck 邮箱:正在打开自动填充设置(${generateNew ? '生成新地址' : '复用当前地址'})...`);
  2815. await reuseOrCreateTab('duck-mail', DUCK_AUTOFILL_URL);
  2816. const result = await sendToContentScript('duck-mail', {
  2817. type: 'FETCH_DUCK_EMAIL',
  2818. source: 'background',
  2819. payload: { generateNew },
  2820. });
  2821. if (result?.error) {
  2822. throw new Error(result.error);
  2823. }
  2824. if (!result?.email) {
  2825. throw new Error('未返回 Duck 邮箱地址。');
  2826. }
  2827. await setEmailState(result.email);
  2828. await addLog(`Duck 邮箱:${result.generated ? '已生成' : '已读取'} ${result.email}`, 'ok');
  2829. return result.email;
  2830. }
  2831. async function fetchGeneratedEmail(state, options = {}) {
  2832. const currentState = state || await getState();
  2833. const generator = normalizeEmailGenerator(options.generator ?? currentState.emailGenerator);
  2834. if (generator === 'cloudflare') {
  2835. return fetchCloudflareEmail(currentState, options);
  2836. }
  2837. return fetchDuckEmail(options);
  2838. }
  2839. // ============================================================
  2840. // Auto Run Flow
  2841. // ============================================================
  2842. let autoRunActive = false;
  2843. let autoRunCurrentRun = 0;
  2844. let autoRunTotalRuns = 1;
  2845. let autoRunAttemptRun = 0;
  2846. const EMAIL_FETCH_MAX_ATTEMPTS = 5;
  2847. const VERIFICATION_POLL_MAX_ROUNDS = 5;
  2848. const AUTO_STEP_DELAYS = {
  2849. 1: 2000,
  2850. 2: 2000,
  2851. 3: 3000,
  2852. 4: 2000,
  2853. 5: 3000,
  2854. 6: 3000,
  2855. 7: 2000,
  2856. 8: 2000,
  2857. 9: 1000,
  2858. };
  2859. async function resumeAutoRunIfWaitingForEmail(options = {}) {
  2860. const { silent = false } = options;
  2861. const state = await getState();
  2862. if (!state.email || !isAutoRunPausedState(state)) {
  2863. return false;
  2864. }
  2865. if (resumeWaiter) {
  2866. if (!silent) {
  2867. await addLog('邮箱已就绪,自动继续后续步骤...', 'info');
  2868. }
  2869. resumeWaiter.resolve();
  2870. resumeWaiter = null;
  2871. return true;
  2872. }
  2873. return false;
  2874. }
  2875. async function ensureAutoEmailReady(targetRun, totalRuns, attemptRuns) {
  2876. const currentState = await getState();
  2877. if (isHotmailProvider(currentState)) {
  2878. const account = await ensureHotmailAccountForFlow({
  2879. allowAllocate: true,
  2880. markUsed: true,
  2881. preferredAccountId: null,
  2882. });
  2883. await addLog(`=== 目标 ${targetRun}/${totalRuns} 轮:已分配 Hotmail 账号 ${account.email}(第 ${attemptRuns} 次尝试)===`, 'ok');
  2884. return account.email;
  2885. }
  2886. if (isGeneratedAliasProvider(currentState.mailProvider)) {
  2887. if (!currentState.emailPrefix) {
  2888. throw new Error('2925 邮箱前缀未设置,请先在侧边栏填写。');
  2889. }
  2890. await addLog(`=== 目标 ${targetRun}/${totalRuns} 轮:2925 模式已启用,将在步骤 3 自动生成邮箱(第 ${attemptRuns} 次尝试)===`, 'info');
  2891. return null;
  2892. }
  2893. if (currentState.email) {
  2894. return currentState.email;
  2895. }
  2896. const generator = normalizeEmailGenerator(currentState.emailGenerator);
  2897. const generatorLabel = getEmailGeneratorLabel(generator);
  2898. let lastError = null;
  2899. for (let attempt = 1; attempt <= EMAIL_FETCH_MAX_ATTEMPTS; attempt++) {
  2900. try {
  2901. if (attempt > 1) {
  2902. await addLog(`${generatorLabel}:正在进行第 ${attempt}/${EMAIL_FETCH_MAX_ATTEMPTS} 次自动获取重试...`, 'warn');
  2903. }
  2904. const generatedEmail = await fetchGeneratedEmail(currentState, { generateNew: true, generator });
  2905. await addLog(
  2906. `=== 目标 ${targetRun}/${totalRuns} 轮:${generatorLabel}已就绪:${generatedEmail}(第 ${attemptRuns} 次尝试,第 ${attempt}/${EMAIL_FETCH_MAX_ATTEMPTS} 次获取)===`,
  2907. 'ok'
  2908. );
  2909. return generatedEmail;
  2910. } catch (err) {
  2911. lastError = err;
  2912. await addLog(`${generatorLabel}自动获取失败(${attempt}/${EMAIL_FETCH_MAX_ATTEMPTS}):${err.message}`, 'warn');
  2913. if (generator === 'cloudflare' && /域名/.test(String(err.message || ''))) {
  2914. break;
  2915. }
  2916. }
  2917. }
  2918. await addLog(`${generatorLabel}自动获取已连续失败 ${EMAIL_FETCH_MAX_ATTEMPTS} 次:${lastError?.message || '未知错误'}`, 'error');
  2919. await addLog(`=== 目标 ${targetRun}/${totalRuns} 轮已暂停:请先自动获取邮箱或手动粘贴邮箱,然后继续 ===`, 'warn');
  2920. await broadcastAutoRunStatus('waiting_email', {
  2921. currentRun: targetRun,
  2922. totalRuns,
  2923. attemptRun: attemptRuns,
  2924. });
  2925. await waitForResume();
  2926. const resumedState = await getState();
  2927. if (!resumedState.email) {
  2928. throw new Error('无法继续:当前没有邮箱地址。');
  2929. }
  2930. return resumedState.email;
  2931. }
  2932. async function runAutoSequenceFromStep(startStep, context = {}) {
  2933. const { targetRun, totalRuns, attemptRuns, continued = false } = context;
  2934. const maxStep9RestartAttempts = 5;
  2935. let step9RestartAttempts = 0;
  2936. if (continued) {
  2937. await addLog(`=== 目标 ${targetRun}/${totalRuns} 轮:继续当前进度,从步骤 ${startStep} 开始(第 ${attemptRuns} 次尝试)===`, 'info');
  2938. } else {
  2939. await addLog(`=== 目标 ${targetRun}/${totalRuns} 轮:第 ${attemptRuns} 次尝试,阶段 1,获取 OAuth 链接并打开注册页 ===`, 'info');
  2940. }
  2941. if (startStep <= 2) {
  2942. for (const step of [1, 2]) {
  2943. if (step < startStep) continue;
  2944. await executeStepAndWait(step, AUTO_STEP_DELAYS[step]);
  2945. }
  2946. }
  2947. if (startStep <= 3) {
  2948. await ensureAutoEmailReady(targetRun, totalRuns, attemptRuns);
  2949. await addLog(`=== 目标 ${targetRun}/${totalRuns} 轮:阶段 2,注册、验证、登录并完成授权(第 ${attemptRuns} 次尝试)===`, 'info');
  2950. await broadcastAutoRunStatus('running', {
  2951. currentRun: targetRun,
  2952. totalRuns,
  2953. attemptRun: attemptRuns,
  2954. });
  2955. await executeStepAndWait(3, AUTO_STEP_DELAYS[3]);
  2956. } else {
  2957. await addLog(`=== 目标 ${targetRun}/${totalRuns} 轮:继续执行剩余流程(第 ${attemptRuns} 次尝试)===`, 'info');
  2958. }
  2959. const signupTabId = await getTabId('signup-page');
  2960. if (signupTabId) {
  2961. await chrome.tabs.update(signupTabId, { active: true });
  2962. }
  2963. let step = Math.max(startStep, 4);
  2964. while (step <= 9) {
  2965. try {
  2966. await executeStepAndWait(step, AUTO_STEP_DELAYS[step]);
  2967. step += 1;
  2968. } catch (err) {
  2969. const latestState = await getState();
  2970. const currentMail = getMailConfig(latestState);
  2971. const shouldRetryStep9 = step === 9
  2972. && (
  2973. isLegacyStep9RecoverableAuthError(err)
  2974. || (currentMail.provider === HOTMAIL_PROVIDER && isStep9RecoverableAuthError(err))
  2975. )
  2976. && step9RestartAttempts < maxStep9RestartAttempts;
  2977. if (shouldRetryStep9) {
  2978. step9RestartAttempts += 1;
  2979. await addLog(
  2980. `步骤 9:检测到 CPA 认证失败,正在回到步骤 6 重新开始授权流程(${step9RestartAttempts}/${maxStep9RestartAttempts})...`,
  2981. 'warn'
  2982. );
  2983. await invalidateDownstreamAfterStepRestart(6, {
  2984. logLabel: `步骤 9 认证失败后准备回到步骤 6 重试(${step9RestartAttempts}/${maxStep9RestartAttempts})`,
  2985. });
  2986. step = 6;
  2987. continue;
  2988. }
  2989. throw err;
  2990. }
  2991. }
  2992. }
  2993. // Outer loop: keep retrying until the target number of successful runs is reached.
  2994. async function autoRunLoop(totalRuns, options = {}) {
  2995. if (autoRunActive) {
  2996. await addLog('自动运行已在进行中', 'warn');
  2997. return;
  2998. }
  2999. clearStopRequest();
  3000. autoRunActive = true;
  3001. autoRunTotalRuns = totalRuns;
  3002. autoRunCurrentRun = 0;
  3003. autoRunAttemptRun = 0;
  3004. const autoRunSkipFailures = Boolean(options.autoRunSkipFailures);
  3005. const initialMode = options.mode === 'continue' ? 'continue' : 'restart';
  3006. const resumeCurrentRun = Number.isInteger(options.resumeCurrentRun) ? options.resumeCurrentRun : 0;
  3007. const resumeSuccessfulRuns = Number.isInteger(options.resumeSuccessfulRuns) ? options.resumeSuccessfulRuns : 0;
  3008. const resumeAttemptRunsProcessed = Number.isInteger(options.resumeAttemptRunsProcessed) ? options.resumeAttemptRunsProcessed : 0;
  3009. let maxAttempts = autoRunSkipFailures ? Math.max(totalRuns * 10, totalRuns + 20) : totalRuns;
  3010. const forcedRetryCap = Math.max(totalRuns * 10, totalRuns + 20);
  3011. let successfulRuns = Math.max(0, resumeSuccessfulRuns);
  3012. let attemptRuns = Math.max(0, resumeAttemptRunsProcessed);
  3013. let forceFreshTabsNextRun = false;
  3014. let continueCurrentOnFirstAttempt = initialMode === 'continue';
  3015. const initialState = await getState();
  3016. const initialPhase = continueCurrentOnFirstAttempt && getRunningSteps(initialState.stepStatuses).length
  3017. ? 'waiting_step'
  3018. : 'running';
  3019. await setState({
  3020. autoRunSkipFailures,
  3021. ...getAutoRunStatusPayload(initialPhase, {
  3022. currentRun: resumeCurrentRun,
  3023. totalRuns,
  3024. attemptRun: resumeAttemptRunsProcessed,
  3025. }),
  3026. });
  3027. while (successfulRuns < totalRuns && attemptRuns < maxAttempts) {
  3028. attemptRuns += 1;
  3029. const targetRun = successfulRuns + 1;
  3030. autoRunCurrentRun = targetRun;
  3031. autoRunAttemptRun = attemptRuns;
  3032. let startStep = 1;
  3033. let useExistingProgress = false;
  3034. if (continueCurrentOnFirstAttempt) {
  3035. let currentState = await getState();
  3036. if (getRunningSteps(currentState.stepStatuses).length) {
  3037. currentState = await waitForRunningStepsToFinish({
  3038. currentRun: targetRun,
  3039. totalRuns,
  3040. attemptRun: attemptRuns,
  3041. });
  3042. }
  3043. const resumeStep = getFirstUnfinishedStep(currentState.stepStatuses);
  3044. if (resumeStep && hasSavedProgress(currentState.stepStatuses)) {
  3045. startStep = resumeStep;
  3046. useExistingProgress = true;
  3047. } else if (hasSavedProgress(currentState.stepStatuses)) {
  3048. await addLog('当前流程已全部处理,将按“重新开始”新开一轮自动运行。', 'info');
  3049. }
  3050. continueCurrentOnFirstAttempt = false;
  3051. }
  3052. if (!useExistingProgress) {
  3053. // Reset everything at the start of each fresh attempt (keep user settings).
  3054. const prevState = await getState();
  3055. const keepSettings = {
  3056. vpsUrl: prevState.vpsUrl,
  3057. vpsPassword: prevState.vpsPassword,
  3058. customPassword: prevState.customPassword,
  3059. autoRunSkipFailures: prevState.autoRunSkipFailures,
  3060. autoRunFallbackThreadIntervalMinutes: prevState.autoRunFallbackThreadIntervalMinutes,
  3061. autoRunDelayEnabled: prevState.autoRunDelayEnabled,
  3062. autoRunDelayMinutes: prevState.autoRunDelayMinutes,
  3063. autoStepDelaySeconds: prevState.autoStepDelaySeconds,
  3064. mailProvider: prevState.mailProvider,
  3065. emailGenerator: prevState.emailGenerator,
  3066. emailPrefix: prevState.emailPrefix,
  3067. inbucketHost: prevState.inbucketHost,
  3068. inbucketMailbox: prevState.inbucketMailbox,
  3069. cloudflareDomain: prevState.cloudflareDomain,
  3070. cloudflareDomains: prevState.cloudflareDomains,
  3071. ...getAutoRunStatusPayload('running', { currentRun: targetRun, totalRuns, attemptRun: attemptRuns }),
  3072. ...(forceFreshTabsNextRun ? { tabRegistry: {} } : {}),
  3073. };
  3074. await resetState();
  3075. await setState(keepSettings);
  3076. chrome.runtime.sendMessage({ type: 'AUTO_RUN_RESET' }).catch(() => { });
  3077. await sleepWithStop(500);
  3078. } else {
  3079. await setState({
  3080. autoRunSkipFailures,
  3081. ...getAutoRunStatusPayload('running', { currentRun: targetRun, totalRuns, attemptRun: attemptRuns }),
  3082. });
  3083. }
  3084. if (forceFreshTabsNextRun) {
  3085. await addLog(`兜底模式:上一轮已放弃,当前开始第 ${attemptRuns} 次尝试,将使用新线程继续补足第 ${targetRun}/${totalRuns} 轮。`, 'warn');
  3086. forceFreshTabsNextRun = false;
  3087. }
  3088. try {
  3089. throwIfStopped();
  3090. await broadcastAutoRunStatus('running', {
  3091. currentRun: targetRun,
  3092. totalRuns,
  3093. attemptRun: attemptRuns,
  3094. });
  3095. await runAutoSequenceFromStep(startStep, {
  3096. targetRun,
  3097. totalRuns,
  3098. attemptRuns,
  3099. continued: useExistingProgress,
  3100. });
  3101. successfulRuns += 1;
  3102. autoRunCurrentRun = successfulRuns;
  3103. await addLog(`=== 目标 ${successfulRuns}/${totalRuns} 轮已完成(第 ${attemptRuns} 次尝试成功)===`, 'ok');
  3104. const fallbackThreadIntervalMinutes = normalizeAutoRunFallbackThreadIntervalMinutes(
  3105. (await getState()).autoRunFallbackThreadIntervalMinutes
  3106. );
  3107. if (autoRunSkipFailures && totalRuns > 1 && successfulRuns < totalRuns && fallbackThreadIntervalMinutes > 0) {
  3108. await addLog(
  3109. `兜底模式:第 ${successfulRuns}/${totalRuns} 轮已完成,等待 ${fallbackThreadIntervalMinutes} 分钟后再启动下一轮新线程。`,
  3110. 'info'
  3111. );
  3112. await sleepWithStop(fallbackThreadIntervalMinutes * 60 * 1000);
  3113. }
  3114. continue;
  3115. } catch (err) {
  3116. if (isStopError(err)) {
  3117. await addLog(`目标 ${targetRun}/${totalRuns} 轮已被用户停止`, 'warn');
  3118. await broadcastAutoRunStatus('stopped', {
  3119. currentRun: targetRun,
  3120. totalRuns,
  3121. attemptRun: attemptRuns,
  3122. });
  3123. break;
  3124. }
  3125. if (isRestartCurrentAttemptError(err)) {
  3126. await addLog(`目标 ${targetRun}/${totalRuns} 轮检测到当前邮箱已存在,当前线程已放弃,将重新开始新一轮。`, 'warn');
  3127. cancelPendingCommands('当前线程因邮箱已存在而放弃。');
  3128. await broadcastStopToContentScripts();
  3129. await broadcastAutoRunStatus('retrying', {
  3130. currentRun: targetRun,
  3131. totalRuns,
  3132. attemptRun: attemptRuns,
  3133. });
  3134. forceFreshTabsNextRun = true;
  3135. maxAttempts = Math.max(maxAttempts, Math.min(forcedRetryCap, attemptRuns + 1));
  3136. continue;
  3137. }
  3138. if (!autoRunSkipFailures) {
  3139. await addLog(`目标 ${targetRun}/${totalRuns} 轮失败:${err.message}`, 'error');
  3140. await broadcastAutoRunStatus('stopped', {
  3141. currentRun: targetRun,
  3142. totalRuns,
  3143. attemptRun: attemptRuns,
  3144. });
  3145. break;
  3146. }
  3147. await addLog(`目标 ${targetRun}/${totalRuns} 轮的第 ${attemptRuns} 次尝试失败:${err.message}`, 'error');
  3148. await addLog('兜底开关已开启:将放弃当前线程,重新开一轮继续补足目标次数。', 'warn');
  3149. cancelPendingCommands('当前尝试已放弃。');
  3150. await broadcastStopToContentScripts();
  3151. await broadcastAutoRunStatus('retrying', {
  3152. currentRun: targetRun,
  3153. totalRuns,
  3154. attemptRun: attemptRuns,
  3155. });
  3156. forceFreshTabsNextRun = true;
  3157. }
  3158. }
  3159. if (!stopRequested && autoRunSkipFailures && successfulRuns < totalRuns && attemptRuns >= maxAttempts) {
  3160. await addLog(`已达到安全重试上限(${attemptRuns} 次尝试),当前仅完成 ${successfulRuns}/${totalRuns} 轮。`, 'error');
  3161. await broadcastAutoRunStatus('stopped', {
  3162. currentRun: successfulRuns,
  3163. totalRuns: autoRunTotalRuns,
  3164. attemptRun: attemptRuns,
  3165. });
  3166. } else if (stopRequested) {
  3167. await addLog(`=== 已停止,完成 ${successfulRuns}/${autoRunTotalRuns} 轮,共尝试 ${attemptRuns} 次 ===`, 'warn');
  3168. await broadcastAutoRunStatus('stopped', {
  3169. currentRun: successfulRuns,
  3170. totalRuns: autoRunTotalRuns,
  3171. attemptRun: attemptRuns,
  3172. });
  3173. } else if (successfulRuns >= autoRunTotalRuns) {
  3174. await addLog(`=== 全部 ${autoRunTotalRuns} 轮均已成功完成,共尝试 ${attemptRuns} 次 ===`, 'ok');
  3175. await broadcastAutoRunStatus('complete', {
  3176. currentRun: successfulRuns,
  3177. totalRuns: autoRunTotalRuns,
  3178. attemptRun: attemptRuns,
  3179. });
  3180. } else {
  3181. await addLog(`=== 已停止,完成 ${successfulRuns}/${autoRunTotalRuns} 轮,共尝试 ${attemptRuns} 次 ===`, 'warn');
  3182. await broadcastAutoRunStatus('stopped', {
  3183. currentRun: successfulRuns,
  3184. totalRuns: autoRunTotalRuns,
  3185. attemptRun: attemptRuns,
  3186. });
  3187. }
  3188. autoRunActive = false;
  3189. autoRunAttemptRun = attemptRuns;
  3190. await setState(getAutoRunStatusPayload(stopRequested ? 'stopped' : (successfulRuns >= autoRunTotalRuns ? 'complete' : 'stopped'), {
  3191. currentRun: successfulRuns,
  3192. totalRuns: autoRunTotalRuns,
  3193. attemptRun: attemptRuns,
  3194. }));
  3195. clearStopRequest();
  3196. }
  3197. async function waitForResume() {
  3198. throwIfStopped();
  3199. const state = await getState();
  3200. if (state.email) {
  3201. await addLog('邮箱已就绪,自动继续后续步骤...', 'info');
  3202. return;
  3203. }
  3204. return new Promise((resolve, reject) => {
  3205. resumeWaiter = { resolve, reject };
  3206. });
  3207. }
  3208. async function resumeAutoRun() {
  3209. throwIfStopped();
  3210. const state = await getState();
  3211. if (!state.email) {
  3212. await addLog('无法继续:当前没有邮箱地址,请先在侧边栏填写邮箱。', 'error');
  3213. return false;
  3214. }
  3215. const resumedInMemory = await resumeAutoRunIfWaitingForEmail({ silent: true });
  3216. if (resumedInMemory) {
  3217. return true;
  3218. }
  3219. if (!isAutoRunPausedState(state)) {
  3220. return false;
  3221. }
  3222. if (autoRunActive) {
  3223. return false;
  3224. }
  3225. const totalRuns = state.autoRunTotalRuns || 1;
  3226. const currentRun = state.autoRunCurrentRun || 1;
  3227. const attemptRun = state.autoRunAttemptRun || 1;
  3228. const successfulRuns = Math.max(0, currentRun - 1);
  3229. await addLog('检测到自动流程暂停上下文已丢失,正在从当前进度恢复自动运行...', 'warn');
  3230. autoRunLoop(totalRuns, {
  3231. autoRunSkipFailures: Boolean(state.autoRunSkipFailures),
  3232. mode: 'continue',
  3233. resumeCurrentRun: currentRun,
  3234. resumeSuccessfulRuns: successfulRuns,
  3235. resumeAttemptRunsProcessed: Math.max(0, attemptRun - 1),
  3236. });
  3237. return true;
  3238. }
  3239. // ============================================================
  3240. // Step 1: Get OAuth Link
  3241. // ============================================================
  3242. async function executeStep1(state) {
  3243. if (getPanelMode(state) === 'sub2api') {
  3244. return executeSub2ApiStep1(state);
  3245. }
  3246. return executeCpaStep1(state);
  3247. }
  3248. async function executeCpaStep1(state) {
  3249. if (!state.vpsUrl) {
  3250. throw new Error('尚未配置 CPA 地址,请先在侧边栏填写。');
  3251. }
  3252. await addLog('步骤 1:正在打开 CPA 面板...');
  3253. const injectFiles = ['content/activation-utils.js', 'content/utils.js', 'content/vps-panel.js'];
  3254. await closeConflictingTabsForSource('vps-panel', state.vpsUrl);
  3255. const tab = await chrome.tabs.create({ url: state.vpsUrl, active: true });
  3256. const tabId = tab.id;
  3257. await rememberSourceLastUrl('vps-panel', state.vpsUrl);
  3258. await addLog('步骤 1:CPA 面板已打开,正在等待页面进入目标地址...');
  3259. const matchedTab = await waitForTabUrlFamily('vps-panel', tabId, state.vpsUrl, {
  3260. timeoutMs: 15000,
  3261. retryDelayMs: 400,
  3262. });
  3263. if (!matchedTab) {
  3264. await addLog('步骤 1:CPA 页面尚未完全进入目标地址,继续尝试连接内容脚本...', 'warn');
  3265. }
  3266. await ensureContentScriptReadyOnTab('vps-panel', tabId, {
  3267. inject: injectFiles,
  3268. timeoutMs: 45000,
  3269. retryDelayMs: 900,
  3270. logMessage: '步骤 1:CPA 面板仍在加载,正在重试连接内容脚本...',
  3271. });
  3272. const result = await sendToContentScriptResilient('vps-panel', {
  3273. type: 'EXECUTE_STEP',
  3274. step: 1,
  3275. source: 'background',
  3276. payload: { vpsPassword: state.vpsPassword },
  3277. }, {
  3278. timeoutMs: 30000,
  3279. retryDelayMs: 700,
  3280. logMessage: '步骤 1:CPA 面板通信未就绪,正在等待页面恢复...',
  3281. });
  3282. if (result?.error) {
  3283. throw new Error(result.error);
  3284. }
  3285. }
  3286. async function executeSub2ApiStep1(state) {
  3287. const sub2apiUrl = normalizeSub2ApiUrl(state.sub2apiUrl);
  3288. const groupName = (state.sub2apiGroupName || DEFAULT_SUB2API_GROUP_NAME).trim() || DEFAULT_SUB2API_GROUP_NAME;
  3289. if (!state.sub2apiEmail) {
  3290. throw new Error('尚未配置 SUB2API 登录邮箱,请先在侧边栏填写。');
  3291. }
  3292. if (!state.sub2apiPassword) {
  3293. throw new Error('尚未配置 SUB2API 登录密码,请先在侧边栏填写。');
  3294. }
  3295. await addLog('步骤 1:正在打开 SUB2API 后台...');
  3296. const injectFiles = ['content/utils.js', 'content/sub2api-panel.js'];
  3297. await closeConflictingTabsForSource('sub2api-panel', sub2apiUrl);
  3298. const tab = await chrome.tabs.create({ url: sub2apiUrl, active: true });
  3299. const tabId = tab.id;
  3300. await rememberSourceLastUrl('sub2api-panel', sub2apiUrl);
  3301. await addLog('步骤 1:SUB2API 页面已打开,正在等待页面进入目标地址...');
  3302. const matchedTab = await waitForTabUrlFamily('sub2api-panel', tabId, sub2apiUrl, {
  3303. timeoutMs: 15000,
  3304. retryDelayMs: 400,
  3305. });
  3306. if (!matchedTab) {
  3307. await addLog('步骤 1:SUB2API 页面尚未稳定,继续尝试连接内容脚本...', 'warn');
  3308. }
  3309. await ensureContentScriptReadyOnTab('sub2api-panel', tabId, {
  3310. inject: injectFiles,
  3311. injectSource: 'sub2api-panel',
  3312. timeoutMs: 45000,
  3313. retryDelayMs: 900,
  3314. logMessage: '步骤 1:SUB2API 页面仍在加载,正在重试连接内容脚本...',
  3315. });
  3316. const result = await sendToContentScript('sub2api-panel', {
  3317. type: 'EXECUTE_STEP',
  3318. step: 1,
  3319. source: 'background',
  3320. payload: {
  3321. sub2apiUrl,
  3322. sub2apiEmail: state.sub2apiEmail,
  3323. sub2apiPassword: state.sub2apiPassword,
  3324. sub2apiGroupName: groupName,
  3325. },
  3326. }, {
  3327. responseTimeoutMs: SUB2API_STEP1_RESPONSE_TIMEOUT_MS,
  3328. });
  3329. if (result?.error) {
  3330. throw new Error(result.error);
  3331. }
  3332. }
  3333. // ============================================================
  3334. // Step 2: Open Signup Page (Background opens tab, signup-page.js clicks Register)
  3335. // ============================================================
  3336. async function executeStep2(state) {
  3337. if (!state.oauthUrl) {
  3338. throw new Error('缺少 OAuth 链接,请先完成步骤 1。');
  3339. }
  3340. await addLog('步骤 2:正在打开认证链接...');
  3341. await reuseOrCreateTab('signup-page', state.oauthUrl);
  3342. await sendToContentScript('signup-page', {
  3343. type: 'EXECUTE_STEP',
  3344. step: 2,
  3345. source: 'background',
  3346. payload: {},
  3347. });
  3348. }
  3349. // ============================================================
  3350. // Step 3: Fill Email & Password (via signup-page.js)
  3351. // ============================================================
  3352. async function executeStep3(state) {
  3353. let resolvedEmail = state.email;
  3354. if (isHotmailProvider(state)) {
  3355. const account = await ensureHotmailAccountForFlow({
  3356. allowAllocate: true,
  3357. markUsed: true,
  3358. preferredAccountId: state.currentHotmailAccountId || null,
  3359. });
  3360. resolvedEmail = account.email;
  3361. } else if (isGeneratedAliasProvider(state.mailProvider)) {
  3362. resolvedEmail = buildGeneratedAliasEmail(state);
  3363. }
  3364. if (!resolvedEmail) {
  3365. throw new Error('缺少邮箱地址,请先在侧边栏粘贴邮箱。');
  3366. }
  3367. const password = state.customPassword || generatePassword();
  3368. if (resolvedEmail !== state.email) {
  3369. await setEmailState(resolvedEmail);
  3370. }
  3371. await setPasswordState(password);
  3372. // Save account record
  3373. const accounts = state.accounts || [];
  3374. accounts.push({ email: resolvedEmail, password, createdAt: new Date().toISOString() });
  3375. await setState({ accounts });
  3376. await addLog(
  3377. `步骤 3:正在填写邮箱 ${resolvedEmail},密码为${state.customPassword ? '自定义' : '自动生成'}(${password.length} 位)`
  3378. );
  3379. await sendToContentScript('signup-page', {
  3380. type: 'EXECUTE_STEP',
  3381. step: 3,
  3382. source: 'background',
  3383. payload: { email: resolvedEmail, password },
  3384. });
  3385. }
  3386. // ============================================================
  3387. // Step 4: Get Signup Verification Code (qq-mail.js polls, then fills in signup-page.js)
  3388. // ============================================================
  3389. function getMailConfig(state) {
  3390. const provider = state.mailProvider || 'qq';
  3391. if (provider === HOTMAIL_PROVIDER) {
  3392. return { provider: HOTMAIL_PROVIDER, label: 'Hotmail(微软 Graph)' };
  3393. }
  3394. if (provider === '163') {
  3395. return { source: 'mail-163', url: 'https://mail.163.com/js6/main.jsp?df=mail163_letter#module=mbox.ListModule%7C%7B%22fid%22%3A1%2C%22order%22%3A%22date%22%2C%22desc%22%3Atrue%7D', label: '163 邮箱' };
  3396. }
  3397. if (provider === '163-vip') {
  3398. return { source: 'mail-163', url: 'https://webmail.vip.163.com/js6/main.jsp?df=mail163_letter#module=mbox.ListModule%7C%7B%22fid%22%3A1%2C%22order%22%3A%22date%22%2C%22desc%22%3Atrue%7D', label: '163 VIP 邮箱' };
  3399. }
  3400. if (provider === 'inbucket') {
  3401. const host = normalizeInbucketOrigin(state.inbucketHost);
  3402. const mailbox = (state.inbucketMailbox || '').trim();
  3403. if (!host) {
  3404. return { error: 'Inbucket 主机地址为空或无效。' };
  3405. }
  3406. if (!mailbox) {
  3407. return { error: 'Inbucket 邮箱名称为空。' };
  3408. }
  3409. return {
  3410. source: 'inbucket-mail',
  3411. url: `${host}/m/${encodeURIComponent(mailbox)}/`,
  3412. label: `Inbucket 邮箱(${mailbox})`,
  3413. navigateOnReuse: true,
  3414. inject: ['content/activation-utils.js', 'content/utils.js', 'content/inbucket-mail.js'],
  3415. injectSource: 'inbucket-mail',
  3416. };
  3417. }
  3418. if (provider === '2925') {
  3419. return {
  3420. source: 'mail-2925',
  3421. url: 'https://2925.com/#/mailList',
  3422. label: '2925 邮箱',
  3423. inject: ['content/utils.js', 'content/mail-2925.js'],
  3424. injectSource: 'mail-2925',
  3425. };
  3426. }
  3427. return { source: 'qq-mail', url: 'https://wx.mail.qq.com/', label: 'QQ 邮箱' };
  3428. }
  3429. function normalizeInbucketOrigin(rawValue) {
  3430. const value = (rawValue || '').trim();
  3431. if (!value) return '';
  3432. const candidate = /^[a-zA-Z][a-zA-Z\d+\-.]*:\/\//.test(value) ? value : `https://${value}`;
  3433. try {
  3434. const parsed = new URL(candidate);
  3435. return parsed.origin;
  3436. } catch {
  3437. return '';
  3438. }
  3439. }
  3440. function getVerificationCodeStateKey(step) {
  3441. return step === 4 ? 'lastSignupCode' : 'lastLoginCode';
  3442. }
  3443. function getVerificationCodeLabel(step) {
  3444. return step === 4 ? '注册' : '登录';
  3445. }
  3446. function getVerificationPollPayload(step, state, overrides = {}) {
  3447. if (step === 4) {
  3448. return {
  3449. filterAfterTimestamp: getHotmailVerificationRequestTimestamp(4, state),
  3450. senderFilters: ['openai', 'noreply', 'verify', 'auth', 'duckduckgo', 'forward'],
  3451. subjectFilters: ['verify', 'verification', 'code', '楠岃瘉', 'confirm'],
  3452. targetEmail: state.email,
  3453. maxAttempts: 5,
  3454. intervalMs: 3000,
  3455. ...overrides,
  3456. };
  3457. }
  3458. return {
  3459. filterAfterTimestamp: getHotmailVerificationRequestTimestamp(7, state),
  3460. senderFilters: ['openai', 'noreply', 'verify', 'auth', 'chatgpt', 'duckduckgo', 'forward'],
  3461. subjectFilters: ['verify', 'verification', 'code', '楠岃瘉', 'confirm', 'login'],
  3462. targetEmail: state.email,
  3463. maxAttempts: 5,
  3464. intervalMs: 3000,
  3465. ...overrides,
  3466. };
  3467. }
  3468. async function requestVerificationCodeResend(step) {
  3469. throwIfStopped();
  3470. const signupTabId = await getTabId('signup-page');
  3471. if (!signupTabId) {
  3472. throw new Error('认证页面标签页已关闭,无法重新请求验证码。');
  3473. }
  3474. throwIfStopped();
  3475. await chrome.tabs.update(signupTabId, { active: true });
  3476. throwIfStopped();
  3477. await addLog(`步骤 ${step}:正在请求新的${getVerificationCodeLabel(step)}验证码...`, 'warn');
  3478. throwIfStopped();
  3479. const result = await sendToContentScript('signup-page', {
  3480. type: 'RESEND_VERIFICATION_CODE',
  3481. step,
  3482. source: 'background',
  3483. payload: {},
  3484. });
  3485. if (step === 7) {
  3486. const restartError = getStep7RestartFromStep6Error(result);
  3487. if (restartError) {
  3488. throw restartError;
  3489. }
  3490. }
  3491. if (result && result.error) {
  3492. throw new Error(result.error);
  3493. }
  3494. return Date.now();
  3495. }
  3496. async function pollFreshVerificationCode(step, state, mail, pollOverrides = {}) {
  3497. if (mail.provider === HOTMAIL_PROVIDER) {
  3498. const hotmailPollConfig = getHotmailVerificationPollConfig(step);
  3499. return pollHotmailVerificationCode(step, state, {
  3500. ...getVerificationPollPayload(step, state),
  3501. ...hotmailPollConfig,
  3502. ...pollOverrides,
  3503. });
  3504. }
  3505. const stateKey = getVerificationCodeStateKey(step);
  3506. const rejectedCodes = new Set();
  3507. if (state[stateKey]) {
  3508. rejectedCodes.add(state[stateKey]);
  3509. }
  3510. for (const code of (pollOverrides.excludeCodes || [])) {
  3511. if (code) rejectedCodes.add(code);
  3512. }
  3513. let lastError = null;
  3514. const filterAfterTimestamp = pollOverrides.filterAfterTimestamp ?? getVerificationPollPayload(step, state).filterAfterTimestamp;
  3515. const maxRounds = pollOverrides.maxRounds || VERIFICATION_POLL_MAX_ROUNDS;
  3516. for (let round = 1; round <= maxRounds; round++) {
  3517. throwIfStopped();
  3518. if (round > 1) {
  3519. await requestVerificationCodeResend(step);
  3520. }
  3521. const payload = getVerificationPollPayload(step, state, {
  3522. ...pollOverrides,
  3523. filterAfterTimestamp,
  3524. excludeCodes: [...rejectedCodes],
  3525. });
  3526. try {
  3527. const result = await sendToMailContentScriptResilient(
  3528. mail,
  3529. {
  3530. type: 'POLL_EMAIL',
  3531. step,
  3532. source: 'background',
  3533. payload,
  3534. },
  3535. {
  3536. timeoutMs: 45000,
  3537. maxRecoveryAttempts: 2,
  3538. }
  3539. );
  3540. if (result && result.error) {
  3541. throw new Error(result.error);
  3542. }
  3543. if (!result || !result.code) {
  3544. throw new Error(`步骤 ${step}:邮箱轮询结束,但未获取到验证码。`);
  3545. }
  3546. if (rejectedCodes.has(result.code)) {
  3547. throw new Error(`步骤 ${step}:再次收到了相同的${getVerificationCodeLabel(step)}验证码:${result.code}`);
  3548. }
  3549. return result;
  3550. } catch (err) {
  3551. if (isStopError(err)) {
  3552. throw err;
  3553. }
  3554. lastError = err;
  3555. await addLog(`步骤 ${step}:${err.message}`, 'warn');
  3556. if (round < maxRounds) {
  3557. await addLog(`步骤 ${step}:将重新发送验证码后重试(${round + 1}/${maxRounds})...`, 'warn');
  3558. }
  3559. }
  3560. }
  3561. throw lastError || new Error(`步骤 ${step}:无法获取新的${getVerificationCodeLabel(step)}验证码。`);
  3562. }
  3563. async function submitVerificationCode(step, code) {
  3564. const signupTabId = await getTabId('signup-page');
  3565. if (!signupTabId) {
  3566. throw new Error('认证页面标签页已关闭,无法填写验证码。');
  3567. }
  3568. await chrome.tabs.update(signupTabId, { active: true });
  3569. const result = await sendToContentScript('signup-page', {
  3570. type: 'FILL_CODE',
  3571. step,
  3572. source: 'background',
  3573. payload: { code },
  3574. });
  3575. if (step === 7) {
  3576. const restartError = getStep7RestartFromStep6Error(result);
  3577. if (restartError) {
  3578. throw restartError;
  3579. }
  3580. }
  3581. if (result && result.error) {
  3582. throw new Error(result.error);
  3583. }
  3584. return result || {};
  3585. }
  3586. async function resolveVerificationStep(step, state, mail, options = {}) {
  3587. const stateKey = getVerificationCodeStateKey(step);
  3588. const rejectedCodes = new Set();
  3589. const hotmailPollConfig = mail.provider === HOTMAIL_PROVIDER
  3590. ? getHotmailVerificationPollConfig(step)
  3591. : null;
  3592. const ignorePersistedLastCode = Boolean(hotmailPollConfig?.ignorePersistedLastCode);
  3593. if (state[stateKey] && !ignorePersistedLastCode) {
  3594. rejectedCodes.add(state[stateKey]);
  3595. }
  3596. const nextFilterAfterTimestamp = options.filterAfterTimestamp ?? null;
  3597. const requestFreshCodeFirst = options.requestFreshCodeFirst !== undefined
  3598. ? Boolean(options.requestFreshCodeFirst)
  3599. : (hotmailPollConfig?.requestFreshCodeFirst ?? false);
  3600. const maxSubmitAttempts = 3;
  3601. if (requestFreshCodeFirst) {
  3602. try {
  3603. await requestVerificationCodeResend(step);
  3604. await addLog(`步骤 ${step}:已先请求一封新的${getVerificationCodeLabel(step)}验证码,再开始轮询邮箱。`, 'warn');
  3605. } catch (err) {
  3606. if (isStopError(err) || (step === 7 && isStep7RestartFromStep6Error(err))) {
  3607. throw err;
  3608. }
  3609. await addLog(`步骤 ${step}:首次重新获取验证码失败:${err.message},将继续使用当前时间窗口轮询。`, 'warn');
  3610. }
  3611. }
  3612. if (mail.provider === HOTMAIL_PROVIDER) {
  3613. const initialDelayMs = Number(options.initialDelayMs ?? hotmailPollConfig.initialDelayMs) || 0;
  3614. if (initialDelayMs > 0) {
  3615. await addLog(`步骤 ${step}:等待 ${Math.round(initialDelayMs / 1000)} 秒,让 Hotmail 验证码邮件先到达...`, 'info');
  3616. await sleepWithStop(initialDelayMs);
  3617. }
  3618. }
  3619. for (let attempt = 1; attempt <= maxSubmitAttempts; attempt++) {
  3620. const result = await pollFreshVerificationCode(step, state, mail, {
  3621. excludeCodes: [...rejectedCodes],
  3622. filterAfterTimestamp: nextFilterAfterTimestamp ?? undefined,
  3623. });
  3624. throwIfStopped();
  3625. await addLog(`步骤 ${step}:已获取${getVerificationCodeLabel(step)}验证码:${result.code}`);
  3626. throwIfStopped();
  3627. const submitResult = await submitVerificationCode(step, result.code);
  3628. if (submitResult.invalidCode) {
  3629. rejectedCodes.add(result.code);
  3630. await addLog(`步骤 ${step}:验证码被页面拒绝:${submitResult.errorText || result.code}`, 'warn');
  3631. if (attempt >= maxSubmitAttempts) {
  3632. throw new Error(`步骤 ${step}:验证码连续失败,已达到 ${maxSubmitAttempts} 次重试上限。`);
  3633. }
  3634. await requestVerificationCodeResend(step);
  3635. await addLog(`步骤 ${step}:提交失败后已请求新验证码(${attempt + 1}/${maxSubmitAttempts})...`, 'warn');
  3636. continue;
  3637. }
  3638. await setState({
  3639. lastEmailTimestamp: result.emailTimestamp,
  3640. [stateKey]: result.code,
  3641. });
  3642. await completeStepFromBackground(step, {
  3643. emailTimestamp: result.emailTimestamp,
  3644. code: result.code,
  3645. });
  3646. return;
  3647. }
  3648. }
  3649. async function executeStep4(state) {
  3650. const mail = getMailConfig(state);
  3651. if (mail.error) throw new Error(mail.error);
  3652. const stepStartedAt = Date.now();
  3653. const signupTabId = await getTabId('signup-page');
  3654. if (!signupTabId) {
  3655. throw new Error('认证页面标签页已关闭,无法继续步骤 4。');
  3656. }
  3657. await chrome.tabs.update(signupTabId, { active: true });
  3658. throwIfStopped();
  3659. await addLog('步骤 4:正在确认注册验证码页面是否就绪,必要时自动恢复密码页超时报错...');
  3660. const prepareResult = await sendToContentScriptResilient(
  3661. 'signup-page',
  3662. {
  3663. type: 'PREPARE_SIGNUP_VERIFICATION',
  3664. step: 4,
  3665. source: 'background',
  3666. payload: { password: state.password || state.customPassword || '' },
  3667. },
  3668. {
  3669. timeoutMs: 30000,
  3670. retryDelayMs: 700,
  3671. logMessage: '步骤 4:认证页正在切换,等待页面重新就绪后继续检测...',
  3672. }
  3673. );
  3674. if (prepareResult && prepareResult.error) {
  3675. throw new Error(prepareResult.error);
  3676. }
  3677. if (prepareResult?.verificationRequestedAt) {
  3678. await setState({ loginVerificationRequestedAt: prepareResult.verificationRequestedAt });
  3679. }
  3680. if (prepareResult?.alreadyVerified) {
  3681. await completeStepFromBackground(4, {});
  3682. return;
  3683. }
  3684. throwIfStopped();
  3685. if (mail.provider === HOTMAIL_PROVIDER) {
  3686. await addLog(`步骤 4:正在通过 ${mail.label} 轮询验证码...`);
  3687. } else {
  3688. await addLog(`步骤 4:正在打开${mail.label}...`);
  3689. // For mail tabs, only create if not alive — don't navigate (preserves login session)
  3690. const alive = await isTabAlive(mail.source);
  3691. if (alive) {
  3692. if (mail.navigateOnReuse) {
  3693. await reuseOrCreateTab(mail.source, mail.url, {
  3694. inject: mail.inject,
  3695. injectSource: mail.injectSource,
  3696. });
  3697. } else {
  3698. const tabId = await getTabId(mail.source);
  3699. await chrome.tabs.update(tabId, { active: true });
  3700. }
  3701. } else {
  3702. await reuseOrCreateTab(mail.source, mail.url, {
  3703. inject: mail.inject,
  3704. injectSource: mail.injectSource,
  3705. });
  3706. }
  3707. }
  3708. await resolveVerificationStep(4, state, mail, {
  3709. filterAfterTimestamp: mail.provider === HOTMAIL_PROVIDER ? undefined : stepStartedAt,
  3710. requestFreshCodeFirst: mail.provider === HOTMAIL_PROVIDER ? false : true,
  3711. });
  3712. return;
  3713. }
  3714. // ============================================================
  3715. // Step 5: Fill Name & Birthday (via signup-page.js)
  3716. // ============================================================
  3717. async function executeStep5(state) {
  3718. const { firstName, lastName } = generateRandomName();
  3719. const { year, month, day } = generateRandomBirthday();
  3720. await addLog(`步骤 5:已生成姓名 ${firstName} ${lastName},生日 ${year}-${month}-${day}`);
  3721. await sendToContentScript('signup-page', {
  3722. type: 'EXECUTE_STEP',
  3723. step: 5,
  3724. source: 'background',
  3725. payload: { firstName, lastName, year, month, day },
  3726. });
  3727. }
  3728. // ============================================================
  3729. // Step 6: Login ChatGPT (Background opens tab, chatgpt.js handles login)
  3730. // ============================================================
  3731. async function refreshOAuthUrlBeforeStep6(state) {
  3732. await addLog(`步骤 6:正在刷新登录用的 ${getPanelModeLabel(state)} OAuth 链接...`);
  3733. console.log(LOG_PREFIX, '[refreshOAuthUrlBeforeStep6] preparing fresh OAuth via step 1');
  3734. const waitForFreshOAuth = waitForStepComplete(1, 120000);
  3735. console.log(LOG_PREFIX, '[refreshOAuthUrlBeforeStep6] executing step 1 for fresh OAuth');
  3736. await executeStep1(state);
  3737. console.log(LOG_PREFIX, '[refreshOAuthUrlBeforeStep6] step 1 execute returned, waiting for completion signal');
  3738. await waitForFreshOAuth;
  3739. console.log(LOG_PREFIX, '[refreshOAuthUrlBeforeStep6] step 1 completion signal received');
  3740. const latestState = await getState();
  3741. if (!latestState.oauthUrl) {
  3742. throw new Error('刷新 OAuth 链接后仍未拿到可用链接。');
  3743. }
  3744. return latestState.oauthUrl;
  3745. }
  3746. async function executeStep6(state) {
  3747. if (!state.email) {
  3748. throw new Error('缺少邮箱地址,请先完成步骤 3。');
  3749. }
  3750. const oauthUrl = await refreshOAuthUrlBeforeStep6(state);
  3751. await addLog('步骤 6:正在打开最新 OAuth 链接并登录...');
  3752. // Reuse the signup-page tab — navigate it to the OAuth URL
  3753. await reuseOrCreateTab('signup-page', oauthUrl);
  3754. // signup-page.js will inject (same auth.openai.com domain) and handle login
  3755. await sendToContentScript('signup-page', {
  3756. type: 'EXECUTE_STEP',
  3757. step: 6,
  3758. source: 'background',
  3759. payload: { email: state.email, password: state.password },
  3760. });
  3761. }
  3762. // ============================================================
  3763. // Step 7: Get Login Verification Code (qq-mail.js polls, then fills in chatgpt.js)
  3764. // ============================================================
  3765. async function runStep7Attempt(state) {
  3766. const mail = getMailConfig(state);
  3767. if (mail.error) throw new Error(mail.error);
  3768. const stepStartedAt = Date.now();
  3769. const authTabId = await getTabId('signup-page');
  3770. if (authTabId) {
  3771. await chrome.tabs.update(authTabId, { active: true });
  3772. } else {
  3773. if (!state.oauthUrl) {
  3774. throw new Error('缺少 OAuth 链接,请先完成步骤 1。');
  3775. }
  3776. await reuseOrCreateTab('signup-page', state.oauthUrl);
  3777. }
  3778. throwIfStopped();
  3779. await addLog('步骤 7:正在准备认证页,必要时切换到一次性验证码登录...');
  3780. const prepareResult = await sendToContentScript('signup-page', {
  3781. type: 'PREPARE_LOGIN_CODE',
  3782. step: 7,
  3783. source: 'background',
  3784. payload: {},
  3785. });
  3786. const restartError = getStep7RestartFromStep6Error(prepareResult);
  3787. if (restartError) {
  3788. throw restartError;
  3789. }
  3790. if (prepareResult && prepareResult.error) {
  3791. throw new Error(prepareResult.error);
  3792. }
  3793. throwIfStopped();
  3794. if (mail.provider === HOTMAIL_PROVIDER) {
  3795. await addLog(`步骤 7:正在通过 ${mail.label} 轮询验证码...`);
  3796. } else {
  3797. await addLog(`步骤 7:正在打开${mail.label}...`);
  3798. const alive = await isTabAlive(mail.source);
  3799. if (alive) {
  3800. if (mail.navigateOnReuse) {
  3801. await reuseOrCreateTab(mail.source, mail.url, {
  3802. inject: mail.inject,
  3803. injectSource: mail.injectSource,
  3804. });
  3805. } else {
  3806. const tabId = await getTabId(mail.source);
  3807. await chrome.tabs.update(tabId, { active: true });
  3808. }
  3809. } else {
  3810. await reuseOrCreateTab(mail.source, mail.url, {
  3811. inject: mail.inject,
  3812. injectSource: mail.injectSource,
  3813. });
  3814. }
  3815. }
  3816. await resolveVerificationStep(7, state, mail, {
  3817. filterAfterTimestamp: mail.provider === HOTMAIL_PROVIDER ? undefined : stepStartedAt,
  3818. requestFreshCodeFirst: mail.provider === HOTMAIL_PROVIDER ? false : true,
  3819. });
  3820. }
  3821. async function rerunStep6ForStep7Recovery() {
  3822. const currentState = await getState();
  3823. const waitForStep6 = waitForStepComplete(6, 120000);
  3824. await addLog('步骤 7:正在回到步骤 6,重新发起登录验证码流程...', 'warn');
  3825. await executeStep6(currentState);
  3826. await waitForStep6;
  3827. await sleepWithStop(3000);
  3828. }
  3829. async function executeStep7(state) {
  3830. let lastError = null;
  3831. for (let round = 1; round <= STEP7_RESTART_MAX_ROUNDS; round++) {
  3832. const currentState = round === 1 ? state : await getState();
  3833. try {
  3834. if (round > 1) {
  3835. await addLog(`步骤 7:正在进行第 ${round}/${STEP7_RESTART_MAX_ROUNDS} 轮登录验证码恢复尝试。`, 'warn');
  3836. }
  3837. await runStep7Attempt(currentState);
  3838. return;
  3839. } catch (err) {
  3840. lastError = err;
  3841. if (!isStep7RecoverableError(err)) {
  3842. throw err;
  3843. }
  3844. if (round >= STEP7_RESTART_MAX_ROUNDS) {
  3845. break;
  3846. }
  3847. await addLog(
  3848. isStep7RestartFromStep6Error(err)
  3849. ? `步骤 7:检测到登录页超时报错,准备从步骤 6 重新开始(${round + 1}/${STEP7_RESTART_MAX_ROUNDS})...`
  3850. : `步骤 7:检测到邮箱轮询类失败,准备从步骤 6 重新开始(${round + 1}/${STEP7_RESTART_MAX_ROUNDS})...`,
  3851. 'warn'
  3852. );
  3853. await rerunStep6ForStep7Recovery();
  3854. }
  3855. }
  3856. if (lastError && isStep7RecoverableError(lastError)) {
  3857. throw new Error(`步骤 7:登录验证码流程在 ${STEP7_RESTART_MAX_ROUNDS} 轮恢复后仍未成功。最后一次原因:${lastError.message}`);
  3858. }
  3859. throw lastError || new Error(`步骤 7:登录验证码流程在 ${STEP7_RESTART_MAX_ROUNDS} 轮后仍未成功。`);
  3860. }
  3861. // ============================================================
  3862. // Step 8: 完成 OAuth(自动点击 + localhost 回调监听)
  3863. // ============================================================
  3864. let webNavListener = null;
  3865. let webNavCommittedListener = null;
  3866. let step8TabUpdatedListener = null;
  3867. let step8PendingReject = null;
  3868. const STEP8_CLICK_EFFECT_TIMEOUT_MS = 15000;
  3869. const STEP8_CLICK_RETRY_DELAY_MS = 500;
  3870. const STEP8_READY_WAIT_TIMEOUT_MS = 30000;
  3871. const STEP8_MAX_ROUNDS = 5;
  3872. const STEP8_SIGNUP_PAGE_INJECT_FILES = ['content/utils.js', 'content/signup-page.js'];
  3873. const STEP8_STRATEGIES = [
  3874. { mode: 'content', strategy: 'requestSubmit', label: 'form.requestSubmit' },
  3875. { mode: 'debugger', label: 'debugger click' },
  3876. { mode: 'content', strategy: 'nativeClick', label: 'element.click' },
  3877. { mode: 'content', strategy: 'dispatchClick', label: 'dispatch click' },
  3878. { mode: 'debugger', label: 'debugger click retry' },
  3879. ];
  3880. function cleanupStep8NavigationListeners() {
  3881. if (webNavListener) {
  3882. chrome.webNavigation.onBeforeNavigate.removeListener(webNavListener);
  3883. webNavListener = null;
  3884. }
  3885. if (webNavCommittedListener) {
  3886. chrome.webNavigation.onCommitted.removeListener(webNavCommittedListener);
  3887. webNavCommittedListener = null;
  3888. }
  3889. if (step8TabUpdatedListener) {
  3890. chrome.tabs.onUpdated.removeListener(step8TabUpdatedListener);
  3891. step8TabUpdatedListener = null;
  3892. }
  3893. }
  3894. function rejectPendingStep8(error) {
  3895. if (!step8PendingReject) return;
  3896. const reject = step8PendingReject;
  3897. step8PendingReject = null;
  3898. reject(error);
  3899. }
  3900. function throwIfStep8SettledOrStopped(isSettled = false) {
  3901. if (isSettled || stopRequested) {
  3902. throw new Error(STOP_ERROR_MESSAGE);
  3903. }
  3904. }
  3905. async function ensureStep8SignupPageReady(tabId, options = {}) {
  3906. await ensureContentScriptReadyOnTab('signup-page', tabId, {
  3907. inject: STEP8_SIGNUP_PAGE_INJECT_FILES,
  3908. injectSource: 'signup-page',
  3909. timeoutMs: options.timeoutMs ?? 15000,
  3910. retryDelayMs: options.retryDelayMs ?? 600,
  3911. logMessage: options.logMessage || '',
  3912. });
  3913. }
  3914. async function getStep8PageState(tabId, responseTimeoutMs = 1500) {
  3915. try {
  3916. const result = await sendTabMessageWithTimeout(tabId, 'signup-page', {
  3917. type: 'STEP8_GET_STATE',
  3918. source: 'background',
  3919. payload: {},
  3920. }, responseTimeoutMs);
  3921. if (result?.error) {
  3922. throw new Error(result.error);
  3923. }
  3924. return result;
  3925. } catch (err) {
  3926. if (isRetryableContentScriptTransportError(err)) {
  3927. return null;
  3928. }
  3929. throw err;
  3930. }
  3931. }
  3932. async function waitForStep8Ready(tabId, timeoutMs = STEP8_READY_WAIT_TIMEOUT_MS) {
  3933. const start = Date.now();
  3934. let recovered = false;
  3935. while (Date.now() - start < timeoutMs) {
  3936. throwIfStopped();
  3937. const pageState = await getStep8PageState(tabId);
  3938. if (pageState?.addPhonePage) {
  3939. throw new Error('步骤 8:认证页进入了手机号页面,当前不是 OAuth 同意页,无法继续自动授权。');
  3940. }
  3941. if (pageState?.consentReady) {
  3942. return pageState;
  3943. }
  3944. if (pageState === null && !recovered) {
  3945. recovered = true;
  3946. await ensureStep8SignupPageReady(tabId, {
  3947. timeoutMs: Math.min(10000, timeoutMs),
  3948. logMessage: '步骤 8:认证页内容脚本已失联,正在等待页面重新就绪...',
  3949. });
  3950. continue;
  3951. }
  3952. recovered = false;
  3953. await sleepWithStop(250);
  3954. }
  3955. throw new Error('步骤 8:长时间未进入 OAuth 同意页,无法定位“继续”按钮。');
  3956. }
  3957. async function prepareStep8DebuggerClick(tabId) {
  3958. await ensureStep8SignupPageReady(tabId, {
  3959. timeoutMs: 15000,
  3960. logMessage: '步骤 8:认证页内容脚本已失联,正在恢复后继续定位按钮...',
  3961. });
  3962. const result = await sendToContentScriptResilient('signup-page', {
  3963. type: 'STEP8_FIND_AND_CLICK',
  3964. source: 'background',
  3965. payload: {},
  3966. }, {
  3967. timeoutMs: 15000,
  3968. retryDelayMs: 600,
  3969. logMessage: '步骤 8:认证页正在切换,等待 OAuth 同意页按钮重新就绪...',
  3970. });
  3971. if (result?.error) {
  3972. throw new Error(result.error);
  3973. }
  3974. return result;
  3975. }
  3976. async function triggerStep8ContentStrategy(tabId, strategy) {
  3977. await ensureStep8SignupPageReady(tabId, {
  3978. timeoutMs: 15000,
  3979. logMessage: '步骤 8:认证页内容脚本已失联,正在恢复后继续点击“继续”按钮...',
  3980. });
  3981. const result = await sendToContentScriptResilient('signup-page', {
  3982. type: 'STEP8_TRIGGER_CONTINUE',
  3983. source: 'background',
  3984. payload: {
  3985. strategy,
  3986. findTimeoutMs: 4000,
  3987. enabledTimeoutMs: 3000,
  3988. },
  3989. }, {
  3990. timeoutMs: 15000,
  3991. retryDelayMs: 600,
  3992. logMessage: '步骤 8:认证页正在切换,等待“继续”按钮重新就绪...',
  3993. });
  3994. if (result?.error) {
  3995. throw new Error(result.error);
  3996. }
  3997. return result;
  3998. }
  3999. async function reloadStep8ConsentPage(tabId, timeoutMs = 30000) {
  4000. if (!Number.isInteger(tabId)) {
  4001. throw new Error('步骤 8:缺少有效的认证页标签页,无法刷新后重试。');
  4002. }
  4003. await chrome.tabs.update(tabId, { active: true }).catch(() => { });
  4004. await new Promise((resolve, reject) => {
  4005. let settled = false;
  4006. const timer = setTimeout(() => {
  4007. if (settled) return;
  4008. settled = true;
  4009. chrome.tabs.onUpdated.removeListener(listener);
  4010. reject(new Error('步骤 8:刷新认证页后等待页面完成加载超时。'));
  4011. }, timeoutMs);
  4012. const listener = (updatedTabId, changeInfo) => {
  4013. if (updatedTabId !== tabId) return;
  4014. if (changeInfo.status !== 'complete') return;
  4015. if (settled) return;
  4016. settled = true;
  4017. clearTimeout(timer);
  4018. chrome.tabs.onUpdated.removeListener(listener);
  4019. resolve();
  4020. };
  4021. chrome.tabs.onUpdated.addListener(listener);
  4022. chrome.tabs.reload(tabId, { bypassCache: false }).catch((err) => {
  4023. if (settled) return;
  4024. settled = true;
  4025. clearTimeout(timer);
  4026. chrome.tabs.onUpdated.removeListener(listener);
  4027. reject(err);
  4028. });
  4029. });
  4030. await ensureStep8SignupPageReady(tabId, {
  4031. timeoutMs: Math.min(15000, timeoutMs),
  4032. logMessage: '步骤 8:认证页刷新后内容脚本尚未就绪,正在等待页面恢复...',
  4033. });
  4034. }
  4035. async function waitForStep8ClickEffect(tabId, baselineUrl, timeoutMs = STEP8_CLICK_EFFECT_TIMEOUT_MS) {
  4036. const start = Date.now();
  4037. let recovered = false;
  4038. while (Date.now() - start < timeoutMs) {
  4039. throwIfStopped();
  4040. const tab = await chrome.tabs.get(tabId).catch(() => null);
  4041. if (!tab) {
  4042. throw new Error('步骤 8:认证页面标签页已关闭,无法继续自动授权。');
  4043. }
  4044. if (baselineUrl && typeof tab.url === 'string' && tab.url !== baselineUrl) {
  4045. return { progressed: true, reason: 'url_changed', url: tab.url };
  4046. }
  4047. const pageState = await getStep8PageState(tabId);
  4048. if (pageState?.addPhonePage) {
  4049. throw new Error('步骤 8:点击“继续”后页面跳到了手机号页面,当前流程无法继续自动授权。');
  4050. }
  4051. if (pageState === null) {
  4052. if (!recovered) {
  4053. recovered = true;
  4054. await ensureStep8SignupPageReady(tabId, {
  4055. timeoutMs: Math.max(3000, Math.min(8000, timeoutMs)),
  4056. logMessage: '步骤 8:点击后认证页正在重载,正在等待内容脚本重新就绪...',
  4057. }).catch(() => null);
  4058. continue;
  4059. }
  4060. await sleepWithStop(200);
  4061. continue;
  4062. }
  4063. recovered = false;
  4064. await sleepWithStop(200);
  4065. }
  4066. return { progressed: false, reason: 'no_effect' };
  4067. }
  4068. function getStep8EffectLabel(effect) {
  4069. switch (effect?.reason) {
  4070. case 'url_changed':
  4071. return `URL 已变化:${effect.url}`;
  4072. case 'page_reloading':
  4073. return '页面正在跳转或重载';
  4074. case 'left_consent_page':
  4075. return `页面已离开 OAuth 同意页:${effect.url || 'unknown'}`;
  4076. default:
  4077. return '页面仍停留在 OAuth 同意页';
  4078. }
  4079. }
  4080. async function executeStep8(state) {
  4081. if (!state.oauthUrl) {
  4082. throw new Error('缺少 OAuth 链接,请先完成步骤 1。');
  4083. }
  4084. await addLog('步骤 8:正在监听 localhost 回调地址...');
  4085. return new Promise((resolve, reject) => {
  4086. let resolved = false;
  4087. let signupTabId = null;
  4088. const cleanupListener = () => {
  4089. cleanupStep8NavigationListeners();
  4090. step8PendingReject = null;
  4091. };
  4092. const rejectStep8 = (error) => {
  4093. if (resolved) return;
  4094. resolved = true;
  4095. clearTimeout(timeout);
  4096. cleanupListener();
  4097. reject(error);
  4098. };
  4099. const finalizeStep8Callback = (callbackUrl) => {
  4100. if (resolved || !callbackUrl) return;
  4101. resolved = true;
  4102. cleanupListener();
  4103. clearTimeout(timeout);
  4104. addLog(`步骤 8:已捕获 localhost 地址:${callbackUrl}`, 'ok').then(() => {
  4105. return completeStepFromBackground(8, { localhostUrl: callbackUrl });
  4106. }).then(() => {
  4107. resolve();
  4108. }).catch((err) => {
  4109. reject(err);
  4110. });
  4111. };
  4112. const timeout = setTimeout(() => {
  4113. rejectStep8(new Error('120 秒内未捕获到 localhost 回调跳转,步骤 8 的点击可能被拦截了。'));
  4114. }, 120000);
  4115. step8PendingReject = (error) => {
  4116. rejectStep8(error);
  4117. };
  4118. webNavListener = (details) => {
  4119. const callbackUrl = getStep8CallbackUrlFromNavigation(details, signupTabId);
  4120. finalizeStep8Callback(callbackUrl);
  4121. };
  4122. webNavCommittedListener = (details) => {
  4123. const callbackUrl = getStep8CallbackUrlFromNavigation(details, signupTabId);
  4124. finalizeStep8Callback(callbackUrl);
  4125. };
  4126. step8TabUpdatedListener = (tabId, changeInfo, tab) => {
  4127. const callbackUrl = getStep8CallbackUrlFromTabUpdate(tabId, changeInfo, tab, signupTabId);
  4128. finalizeStep8Callback(callbackUrl);
  4129. };
  4130. (async () => {
  4131. try {
  4132. throwIfStep8SettledOrStopped(resolved);
  4133. signupTabId = await getTabId('signup-page');
  4134. throwIfStep8SettledOrStopped(resolved);
  4135. if (signupTabId && await isTabAlive('signup-page')) {
  4136. await chrome.tabs.update(signupTabId, { active: true });
  4137. await addLog('步骤 8:已切回认证页,正在准备调试器点击...');
  4138. } else {
  4139. signupTabId = await reuseOrCreateTab('signup-page', state.oauthUrl);
  4140. await addLog('步骤 8:已重新打开认证页,正在准备调试器点击...');
  4141. }
  4142. throwIfStep8SettledOrStopped(resolved);
  4143. chrome.webNavigation.onBeforeNavigate.addListener(webNavListener);
  4144. chrome.webNavigation.onCommitted.addListener(webNavCommittedListener);
  4145. chrome.tabs.onUpdated.addListener(step8TabUpdatedListener);
  4146. await ensureStep8SignupPageReady(signupTabId, {
  4147. timeoutMs: 15000,
  4148. logMessage: '步骤 8:认证页内容脚本尚未就绪,正在等待页面恢复...',
  4149. });
  4150. for (let round = 1; round <= STEP8_MAX_ROUNDS && !resolved; round++) {
  4151. throwIfStep8SettledOrStopped(resolved);
  4152. const pageState = await waitForStep8Ready(signupTabId);
  4153. if (!pageState?.consentReady) {
  4154. await sleepWithStop(STEP8_CLICK_RETRY_DELAY_MS);
  4155. continue;
  4156. }
  4157. const strategy = STEP8_STRATEGIES[Math.min(round - 1, STEP8_STRATEGIES.length - 1)];
  4158. await addLog(`步骤 8:第 ${round}/${STEP8_MAX_ROUNDS} 轮尝试点击“继续”(${strategy.label})...`);
  4159. if (strategy.mode === 'debugger') {
  4160. const clickTarget = await prepareStep8DebuggerClick(signupTabId);
  4161. throwIfStep8SettledOrStopped(resolved);
  4162. await clickWithDebugger(signupTabId, clickTarget?.rect);
  4163. } else {
  4164. await triggerStep8ContentStrategy(signupTabId, strategy.strategy);
  4165. }
  4166. if (resolved) {
  4167. return;
  4168. }
  4169. const effect = await waitForStep8ClickEffect(signupTabId, pageState.url);
  4170. if (resolved) {
  4171. return;
  4172. }
  4173. if (effect.progressed) {
  4174. await addLog(`步骤 8:检测到本次点击已生效,${getStep8EffectLabel(effect)},继续等待 localhost 回调...`, 'info');
  4175. break;
  4176. }
  4177. if (round >= STEP8_MAX_ROUNDS) {
  4178. throw new Error(`步骤 8:连续 ${STEP8_MAX_ROUNDS} 轮点击“继续”后页面仍无反应。`);
  4179. }
  4180. await addLog(`步骤 8:${strategy.label} 本轮点击后页面无反应,正在刷新认证页后重试(下一轮 ${round + 1}/${STEP8_MAX_ROUNDS})...`, 'warn');
  4181. await reloadStep8ConsentPage(signupTabId);
  4182. await sleepWithStop(STEP8_CLICK_RETRY_DELAY_MS);
  4183. }
  4184. } catch (err) {
  4185. rejectStep8(err);
  4186. }
  4187. })();
  4188. });
  4189. }
  4190. // ============================================================
  4191. // Step 9: 平台回调验证
  4192. // ============================================================
  4193. async function executeStep9(state) {
  4194. if (getPanelMode(state) === 'sub2api') {
  4195. return executeSub2ApiStep9(state);
  4196. }
  4197. return executeCpaStep9(state);
  4198. }
  4199. async function executeCpaStep9(state) {
  4200. if (state.localhostUrl && !isLocalhostOAuthCallbackUrl(state.localhostUrl)) {
  4201. throw new Error('步骤 8 捕获到的 localhost OAuth 回调地址无效,请重新执行步骤 8。');
  4202. }
  4203. if (!state.localhostUrl) {
  4204. throw new Error('缺少 localhost 回调地址,请先完成步骤 8。');
  4205. }
  4206. if (!state.vpsUrl) {
  4207. throw new Error('尚未填写 CPA 地址,请先在侧边栏输入。');
  4208. }
  4209. if (shouldBypassStep9ForLocalCpa(state)) {
  4210. await addLog('步骤 9:检测到本地 CPA,且当前策略为“跳过第9步”,本轮不再重复提交回调地址。', 'info');
  4211. await completeStepFromBackground(9, {
  4212. localhostUrl: state.localhostUrl,
  4213. verifiedStatus: 'local-auto',
  4214. });
  4215. return;
  4216. }
  4217. await addLog('步骤 9:正在打开 CPA 面板...');
  4218. const injectFiles = ['content/activation-utils.js', 'content/utils.js', 'content/vps-panel.js'];
  4219. let tabId = await getTabId('vps-panel');
  4220. const alive = tabId && await isTabAlive('vps-panel');
  4221. if (!alive) {
  4222. tabId = await reuseOrCreateTab('vps-panel', state.vpsUrl, {
  4223. inject: injectFiles,
  4224. reloadIfSameUrl: true,
  4225. });
  4226. } else {
  4227. await closeConflictingTabsForSource('vps-panel', state.vpsUrl, { excludeTabIds: [tabId] });
  4228. await chrome.tabs.update(tabId, { active: true });
  4229. await rememberSourceLastUrl('vps-panel', state.vpsUrl);
  4230. }
  4231. await ensureContentScriptReadyOnTab('vps-panel', tabId, {
  4232. inject: injectFiles,
  4233. timeoutMs: 45000,
  4234. retryDelayMs: 900,
  4235. logMessage: '姝ラ 9锛欳PA 闈㈡澘浠嶅湪鍔犺浇锛屾鍦ㄩ噸璇曡繛鎺ュ唴瀹硅剼鏈?..',
  4236. });
  4237. await addLog('步骤 9:正在填写回调地址...');
  4238. const result = await sendToContentScriptResilient('vps-panel', {
  4239. type: 'EXECUTE_STEP',
  4240. step: 9,
  4241. source: 'background',
  4242. payload: { localhostUrl: state.localhostUrl, vpsPassword: state.vpsPassword },
  4243. }, {
  4244. timeoutMs: 30000,
  4245. retryDelayMs: 700,
  4246. logMessage: '步骤 9:CPA 面板通信未就绪,正在等待页面恢复...',
  4247. });
  4248. if (result?.error) {
  4249. throw new Error(result.error);
  4250. }
  4251. }
  4252. async function executeSub2ApiStep9(state) {
  4253. if (state.localhostUrl && !isLocalhostOAuthCallbackUrl(state.localhostUrl)) {
  4254. throw new Error('步骤 8 捕获到的 localhost OAuth 回调地址无效,请重新执行步骤 8。');
  4255. }
  4256. if (!state.localhostUrl) {
  4257. throw new Error('缺少 localhost 回调地址,请先完成步骤 8。');
  4258. }
  4259. if (!state.sub2apiSessionId) {
  4260. throw new Error('缺少 SUB2API 会话信息,请重新执行步骤 1。');
  4261. }
  4262. if (!state.sub2apiEmail) {
  4263. throw new Error('尚未配置 SUB2API 登录邮箱,请先在侧边栏填写。');
  4264. }
  4265. if (!state.sub2apiPassword) {
  4266. throw new Error('尚未配置 SUB2API 登录密码,请先在侧边栏填写。');
  4267. }
  4268. const sub2apiUrl = normalizeSub2ApiUrl(state.sub2apiUrl);
  4269. const injectFiles = ['content/utils.js', 'content/sub2api-panel.js'];
  4270. await addLog('步骤 9:正在打开 SUB2API 后台...');
  4271. let tabId = await getTabId('sub2api-panel');
  4272. const alive = tabId && await isTabAlive('sub2api-panel');
  4273. if (!alive) {
  4274. tabId = await reuseOrCreateTab('sub2api-panel', sub2apiUrl, {
  4275. inject: injectFiles,
  4276. injectSource: 'sub2api-panel',
  4277. reloadIfSameUrl: true,
  4278. });
  4279. } else {
  4280. await closeConflictingTabsForSource('sub2api-panel', sub2apiUrl, { excludeTabIds: [tabId] });
  4281. await chrome.tabs.update(tabId, { active: true });
  4282. await rememberSourceLastUrl('sub2api-panel', sub2apiUrl);
  4283. }
  4284. await ensureContentScriptReadyOnTab('sub2api-panel', tabId, {
  4285. inject: injectFiles,
  4286. injectSource: 'sub2api-panel',
  4287. });
  4288. await addLog('步骤 9:正在向 SUB2API 提交回调并创建账号...');
  4289. const result = await sendToContentScript('sub2api-panel', {
  4290. type: 'EXECUTE_STEP',
  4291. step: 9,
  4292. source: 'background',
  4293. payload: {
  4294. localhostUrl: state.localhostUrl,
  4295. sub2apiUrl,
  4296. sub2apiEmail: state.sub2apiEmail,
  4297. sub2apiPassword: state.sub2apiPassword,
  4298. sub2apiGroupName: state.sub2apiGroupName,
  4299. sub2apiSessionId: state.sub2apiSessionId,
  4300. sub2apiOAuthState: state.sub2apiOAuthState,
  4301. sub2apiGroupId: state.sub2apiGroupId,
  4302. sub2apiDraftName: state.sub2apiDraftName,
  4303. },
  4304. }, {
  4305. responseTimeoutMs: SUB2API_STEP9_RESPONSE_TIMEOUT_MS,
  4306. });
  4307. if (result?.error) {
  4308. throw new Error(result.error);
  4309. }
  4310. }
  4311. // ============================================================
  4312. // Open Side Panel on extension icon click
  4313. // ============================================================
  4314. chrome.sidePanel.setPanelBehavior({ openPanelOnActionClick: true });
  4315. chrome.alarms.onAlarm.addListener((alarm) => {
  4316. if (alarm.name !== AUTO_RUN_ALARM_NAME) {
  4317. return;
  4318. }
  4319. launchScheduledAutoRun('alarm').catch((err) => {
  4320. console.error(LOG_PREFIX, 'Failed to launch scheduled auto run from alarm:', err);
  4321. });
  4322. });
  4323. chrome.runtime.onStartup.addListener(() => {
  4324. restoreScheduledAutoRunIfNeeded().catch((err) => {
  4325. console.error(LOG_PREFIX, 'Failed to restore scheduled auto run on startup:', err);
  4326. });
  4327. });
  4328. chrome.runtime.onInstalled.addListener(() => {
  4329. restoreScheduledAutoRunIfNeeded().catch((err) => {
  4330. console.error(LOG_PREFIX, 'Failed to restore scheduled auto run on install/update:', err);
  4331. });
  4332. });
  4333. restoreScheduledAutoRunIfNeeded().catch((err) => {
  4334. console.error(LOG_PREFIX, 'Failed to restore scheduled auto run:', err);
  4335. });