background.js 152 KB

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