background.js 168 KB

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