nolo-cli 0.1.39 → 0.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/agent-runtime/dialogWritePlan.ts +39 -0
- package/agent-runtime/hostAdapter.ts +4 -0
- package/agent-runtime/hybridRecordStore.ts +5 -3
- package/agent-runtime/index.ts +15 -0
- package/agent-runtime/localLoop.ts +87 -7
- package/agent-runtime/localToolPolicy.ts +2 -13
- package/agent-runtime/localWorkspaceTools.ts +42 -110
- package/agent-runtime/runtimeToolPolicy.ts +2 -11
- package/agent-runtime/runtimeToolSurface.ts +198 -0
- package/agent-runtime/types.ts +1 -0
- package/agentAliases.ts +2 -1
- package/agentRunCommand.ts +10 -32
- package/agentRuntimeLocal.ts +1 -0
- package/ai/agent/_executeModel.ts +146 -0
- package/ai/agent/agentSlice.ts +556 -1
- package/ai/agent/appWorkingMemory.ts +126 -0
- package/ai/agent/buildEditingContext.ts +378 -0
- package/ai/agent/buildSystemPrompt.ts +585 -0
- package/ai/agent/canvasEditingContext.ts +49 -0
- package/ai/agent/cleanAgentMessages.ts +140 -0
- package/ai/agent/cliChatClient.ts +153 -0
- package/ai/agent/cliExecutor.ts +314 -40
- package/ai/agent/contextCompiler.ts +107 -0
- package/ai/agent/contextLayerContract.ts +44 -0
- package/ai/agent/createAgentSchema.ts +272 -0
- package/ai/agent/currentTimeContext.ts +65 -0
- package/ai/agent/executeToolCall.ts +58 -0
- package/ai/agent/fetchAgentContexts.ts +42 -0
- package/ai/agent/generatePrompt.ts +3 -0
- package/ai/agent/getFullChatContextKeys.ts +168 -0
- package/ai/agent/guidedCreation/capabilities.ts +84 -0
- package/ai/agent/guidedCreation/types.ts +38 -0
- package/ai/agent/isLiveAudioOnlyAgent.ts +26 -0
- package/ai/agent/liveAudioModel.ts +2 -0
- package/ai/agent/pageBuilderHandoffRules.ts +75 -0
- package/ai/agent/persistMessageWithFixedId.ts +37 -0
- package/ai/agent/planSlice.ts +259 -0
- package/ai/agent/referenceUtils.ts +229 -0
- package/ai/agent/runAgentBackground.ts +310 -0
- package/ai/agent/runAgentClientLoop.ts +164 -0
- package/ai/agent/runtimeGuidance.ts +116 -0
- package/ai/agent/serverOrigin.ts +7 -0
- package/ai/agent/startParallelAgentStreams.ts +424 -0
- package/ai/agent/startupProtocol.ts +53 -0
- package/ai/agent/streamAgentChatTurn.ts +2001 -0
- package/ai/agent/streamAgentChatTurnUtils.ts +860 -0
- package/ai/agent/toolFailureGuard.ts +99 -0
- package/ai/agent/types.ts +73 -0
- package/ai/agent/utils/imageOutput.ts +37 -0
- package/ai/agent/utils/publicImageAgentMode.ts +26 -0
- package/ai/ai.locale.ts +1095 -0
- package/ai/chat/accumulateToolCallChunks.ts +126 -0
- package/ai/chat/fetchUtils.ts +143 -0
- package/ai/chat/inlineImageUrlsForCustomProvider.ts +117 -0
- package/ai/chat/parseApiError.ts +67 -0
- package/ai/chat/parseMultilineSSE.ts +95 -0
- package/ai/chat/sendOpenAICompletionsRequest.ts +897 -0
- package/ai/chat/sendOpenAIResponseRequest.ts +720 -0
- package/ai/chat/serverProxyRetry.ts +102 -0
- package/ai/chat/shouldUseServerProxy.ts +18 -0
- package/ai/chat/streamRetry.ts +46 -0
- package/ai/chat/updateTotalUsage.ts +89 -0
- package/ai/context/buildReferenceContext.ts +437 -0
- package/ai/context/retention.ts +165 -0
- package/ai/context/tokenUtils.ts +78 -0
- package/ai/llm/agentCapabilities.ts +74 -0
- package/ai/llm/deepinfra.ts +79 -0
- package/ai/llm/fireworks.ts +68 -0
- package/ai/llm/generateRequestBody.ts +165 -0
- package/ai/llm/getModelContextWindow.ts +93 -0
- package/ai/llm/getPricing.ts +252 -0
- package/ai/llm/imagePricing.ts +66 -0
- package/ai/llm/isResponseAPIModel.ts +13 -0
- package/ai/llm/kimi.ts +23 -0
- package/ai/llm/mimo.ts +99 -0
- package/ai/llm/mistral.ts +21 -0
- package/ai/llm/models.ts +45 -0
- package/ai/llm/openrouterModels.ts +6 -0
- package/ai/llm/providers.ts +313 -0
- package/ai/llm/reasoningModels.ts +27 -0
- package/ai/llm/types.ts +82 -0
- package/ai/llm/usageRequestOptions.ts +59 -0
- package/ai/memory/queryShared.ts +161 -0
- package/ai/memory/recentRelationshipRecap.ts +247 -0
- package/ai/memory/remember.ts +167 -0
- package/ai/memory/store.ts +20 -0
- package/ai/memory/storeShared.ts +76 -0
- package/ai/memory/types.ts +46 -0
- package/ai/memory/understanding.ts +349 -0
- package/ai/memory/understandingGreeting.ts +264 -0
- package/ai/policy/personalizationDialog.ts +333 -0
- package/ai/policy/runtimePolicy.ts +454 -0
- package/ai/policy/selfUpdateFields.ts +48 -0
- package/ai/policy/types.ts +64 -0
- package/ai/skills/referenceRuntime.ts +274 -0
- package/ai/skills/skillDiagnostics.ts +251 -0
- package/ai/skills/skillDocBuilder.ts +139 -0
- package/ai/skills/skillSummaryMarker.ts +26 -0
- package/ai/token/calculatePrice.ts +576 -0
- package/ai/token/missingUsageEstimate.ts +42 -0
- package/ai/token/normalizeUsage.ts +124 -0
- package/ai/token/openaiImageGenerationUsage.ts +56 -0
- package/ai/token/prepareTokenUsageData.ts +93 -0
- package/ai/token/resolveBillingTarget.ts +52 -0
- package/ai/token/saveTokenRecord.ts +53 -0
- package/ai/token/types.ts +103 -0
- package/ai/tools/agent/agentTools.ts +235 -0
- package/ai/tools/agent/agentUpdateShared.ts +311 -0
- package/ai/tools/agent/callAgentTool.ts +139 -0
- package/ai/tools/agent/createAgentTool.ts +512 -0
- package/ai/tools/agent/createDialogTool.ts +69 -0
- package/ai/tools/agent/createSkillAgentTool.ts +62 -0
- package/ai/tools/agent/parallelBudget.ts +221 -0
- package/ai/tools/agent/prepareAgentDraftTool.ts +159 -0
- package/ai/tools/agent/presets/appBuilderPreset.ts +154 -0
- package/ai/tools/agent/runLlmTool.ts +96 -0
- package/ai/tools/agent/runStreamingAgentTool.ts +73 -0
- package/ai/tools/agent/skillAgentArgs.ts +106 -0
- package/ai/tools/agent/startAgentDialogTool.ts +53 -0
- package/ai/tools/agent/streamParallelAgentsTool.ts +123 -0
- package/ai/tools/agent/updateAgentTool.ts +96 -0
- package/ai/tools/agent/updateSelfTool.ts +113 -0
- package/ai/tools/amazonProductScraperTool.ts +86 -0
- package/ai/tools/apifyActorClient.ts +45 -0
- package/ai/tools/appEditGuard.ts +372 -0
- package/ai/tools/appReadSnapshot.ts +153 -0
- package/ai/tools/appTools.ts +1549 -0
- package/ai/tools/applyEditTool.ts +259 -0
- package/ai/tools/applyLineEditsTool.ts +315 -0
- package/ai/tools/browserTools/click.ts +33 -0
- package/ai/tools/browserTools/closeSession.ts +29 -0
- package/ai/tools/browserTools/common.ts +27 -0
- package/ai/tools/browserTools/openSession.ts +48 -0
- package/ai/tools/browserTools/readContent.ts +38 -0
- package/ai/tools/browserTools/selectOption.ts +46 -0
- package/ai/tools/browserTools/typeText.ts +42 -0
- package/ai/tools/category/createCategoryTool.ts +66 -0
- package/ai/tools/category/queryContentsByCategoryTool.ts +69 -0
- package/ai/tools/category/updateContentCategoryTool.ts +75 -0
- package/ai/tools/cfBrowserTools.ts +319 -0
- package/ai/tools/cfSpeechToTextTool.ts +49 -0
- package/ai/tools/checkEnvTool.ts +102 -0
- package/ai/tools/cloudflareCrawlTool.ts +289 -0
- package/ai/tools/codeSearchTool.ts +123 -0
- package/ai/tools/codeTools.ts +101 -0
- package/ai/tools/convertMarxistsBookTool.ts +103 -0
- package/ai/tools/createDocTool.ts +132 -0
- package/ai/tools/createSkillDocTool.ts +155 -0
- package/ai/tools/createWorkflowTool.ts +154 -0
- package/ai/tools/delayTool.ts +31 -0
- package/ai/tools/deleteSpacesTool.ts +325 -0
- package/ai/tools/deleteSpacesToolModel.ts +159 -0
- package/ai/tools/devReloadUtils.ts +29 -0
- package/ai/tools/dialogMessageSearch.ts +137 -0
- package/ai/tools/doctorSkillTool.ts +72 -0
- package/ai/tools/ecommerceScraperTool.ts +86 -0
- package/ai/tools/emailTools.ts +549 -0
- package/ai/tools/evalSkillTool.ts +92 -0
- package/ai/tools/exaSearchTool.ts +63 -0
- package/ai/tools/execShellTool.ts +266 -0
- package/ai/tools/executeSqlTool.ts +192 -0
- package/ai/tools/fetchWebpageSupport.ts +333 -0
- package/ai/tools/fetchWebpageTool.ts +97 -0
- package/ai/tools/geminiImagePreviewTool.ts +386 -0
- package/ai/tools/generateDocxTool.ts +215 -0
- package/ai/tools/googleSearchScraperTool.ts +106 -0
- package/ai/tools/importDataTool.ts +133 -0
- package/ai/tools/importSkillTool.ts +162 -0
- package/ai/tools/index.ts +2308 -0
- package/ai/tools/jdProductScraperTool.ts +821 -0
- package/ai/tools/listUserSpacesTool.ts +113 -0
- package/ai/tools/localFilesTool.ts +276 -0
- package/ai/tools/marxistsOfflineBook.ts +253 -0
- package/ai/tools/modelUsageTools.ts +206 -0
- package/ai/tools/noloWorkspaceReadTools.ts +467 -0
- package/ai/tools/olmOcrTool.ts +33 -0
- package/ai/tools/openaiImageTool.ts +267 -0
- package/ai/tools/prepareTools.ts +23 -0
- package/ai/tools/readDocTool.ts +88 -0
- package/ai/tools/readFileTool.ts +214 -0
- package/ai/tools/readTool.ts +194 -0
- package/ai/tools/readXPostTool.ts +229 -0
- package/ai/tools/readXhsProfileTool.ts +627 -0
- package/ai/tools/rememberMemoryTool.ts +84 -0
- package/ai/tools/remotionVideoTool.ts +151 -0
- package/ai/tools/searchDialogMessagesTool.ts +222 -0
- package/ai/tools/searchWorkspaceTool.ts +259 -0
- package/ai/tools/skillFollowup.ts +86 -0
- package/ai/tools/surfWeatherTool.ts +169 -0
- package/ai/tools/table/addTableRowTool.ts +217 -0
- package/ai/tools/table/createTableTool.ts +315 -0
- package/ai/tools/table/rowTools.ts +386 -0
- package/ai/tools/table/schemaTools.ts +244 -0
- package/ai/tools/table/shareTableTool.ts +148 -0
- package/ai/tools/table/toolShared.ts +129 -0
- package/ai/tools/taobaoTmallProductScraperTool.ts +49 -0
- package/ai/tools/toolApiClient.ts +279 -0
- package/ai/tools/toolResultError.ts +42 -0
- package/ai/tools/toolRunSlice.ts +303 -0
- package/ai/tools/toolSchemaCompatibility.ts +53 -0
- package/ai/tools/uiAskChoiceTool.ts +104 -0
- package/ai/tools/updateContentTitleTool.ts +84 -0
- package/ai/tools/updateDocTool.ts +105 -0
- package/ai/tools/updateUserPreferenceProfileTool.ts +153 -0
- package/ai/tools/wereadGatewayTool.ts +152 -0
- package/ai/tools/whisperTool.ts +76 -0
- package/ai/tools/writeFileTool.ts +213 -0
- package/ai/tools/youtubeScraperTool.ts +116 -0
- package/ai/tools/ziweiChartTool.ts +678 -0
- package/ai/types.ts +55 -0
- package/ai/workflow/workflowExecutor.ts +323 -0
- package/ai/workflow/workflowSlice.ts +73 -0
- package/ai/workflow/workflowTypes.ts +106 -0
- package/app/actions/syncAppRecord.ts +73 -0
- package/app/constants/animationSets.ts +21 -0
- package/app/constants/appEditor.ts +99 -0
- package/app/favorite/favoriteSlice.ts +690 -0
- package/app/favorite/type.ts +43 -0
- package/app/hooks/deleteDbKey.ts +233 -0
- package/app/i18n/client.ts +13 -0
- package/app/i18n/i18n.base.ts +14 -0
- package/app/i18n/i18n.config.ts +77 -0
- package/app/i18n/index.ts +15 -0
- package/app/i18n/mapLanguage.ts +11 -0
- package/app/i18n/translations/appBuilder.locale.ts +453 -0
- package/app/i18n/translations/error.locale.ts +246 -0
- package/app/i18n/translations/interface.locale.ts +2174 -0
- package/app/i18n/translations/pricing.locale.ts +397 -0
- package/app/i18n/translations/privacy.locale.ts +168 -0
- package/app/i18n/translations/seo.locale.ts +129 -0
- package/app/i18n/translations/terms.locale.ts +124 -0
- package/app/i18n/types.ts +6 -0
- package/app/notifications/model.ts +77 -0
- package/app/notifications/notificationSlice.ts +141 -0
- package/app/reducer.ts +36 -0
- package/app/settings/dbActionThunks.ts +34 -0
- package/app/settings/defaultSpacePreference.ts +87 -0
- package/app/settings/settingSlice.tsx +1212 -0
- package/app/settings/settingsRecord.ts +8 -0
- package/app/stateViews/runtime.ts +90 -0
- package/app/store.ts +55 -0
- package/app/theme/colors.ts +280 -0
- package/app/theme/fontPreference.ts +77 -0
- package/app/theme/theme.config.ts +120 -0
- package/app/theme/themeModeBootstrap.ts +123 -0
- package/app/types/appSummary.ts +114 -0
- package/app/types.ts +358 -0
- package/app/utils/appKeys.ts +55 -0
- package/app/utils/async.ts +28 -0
- package/app/utils/desktopAgentRuntimeTurnClient.ts +73 -0
- package/app/utils/env.ts +17 -0
- package/app/utils/fileUtils.ts +229 -0
- package/app/utils/imageUtils.ts +274 -0
- package/app/utils/myContentItems.ts +289 -0
- package/app/utils/retryAfter.ts +36 -0
- package/app/utils/retryFetch.ts +61 -0
- package/app/utils/toast.ts +3 -0
- package/auth/action/signUpAction.ts +227 -0
- package/auth/adminPermissions.ts +18 -0
- package/auth/authSlice.ts +531 -0
- package/auth/client/loginRequest.ts +14 -0
- package/auth/resetAuthScopedClientState.ts +27 -0
- package/auth/routes.ts +178 -0
- package/auth/token.ts +63 -0
- package/auth/types.ts +40 -0
- package/chat/chat.locale.ts +813 -0
- package/chat/dialog/actions/addCybotAction.ts +52 -0
- package/chat/dialog/actions/addReferenceKeysAction.ts +62 -0
- package/chat/dialog/actions/builtinDialogLlm.ts +35 -0
- package/chat/dialog/actions/cleanupCliSession.ts +40 -0
- package/chat/dialog/actions/createDialogAction.ts +379 -0
- package/chat/dialog/actions/createScheduledTaskAction.ts +78 -0
- package/chat/dialog/actions/handleSendMessageAction.ts +197 -0
- package/chat/dialog/actions/handleSendMessageResolver.ts +27 -0
- package/chat/dialog/actions/removeCybotAction.ts +6 -0
- package/chat/dialog/actions/removeDialogAgentAction.ts +44 -0
- package/chat/dialog/actions/replacePrimaryCybotAction.ts +6 -0
- package/chat/dialog/actions/setPrimaryDialogAgentAction.ts +52 -0
- package/chat/dialog/actions/updateDialogSummaryAction.ts +430 -0
- package/chat/dialog/actions/updateDialogTitleAction.ts +151 -0
- package/chat/dialog/actions/updateDialogTitlePolicy.ts +30 -0
- package/chat/dialog/actions/updateTokensAction.ts +233 -0
- package/chat/dialog/dialogAgents.ts +72 -0
- package/chat/dialog/dialogSlice.ts +872 -0
- package/chat/dialog/dialogTitle.ts +81 -0
- package/chat/dialog/dialogTokenStats.ts +12 -0
- package/chat/dialog/dialogUrl.ts +6 -0
- package/chat/dialog/goal.ts +108 -0
- package/chat/dialog/objectAssistantRegistry.ts +286 -0
- package/chat/dialog/schedule.ts +17 -0
- package/chat/messages/fetchAndCacheMessages.ts +119 -0
- package/chat/messages/fetchConvMsgs.ts +51 -0
- package/chat/messages/fileUrl.ts +13 -0
- package/chat/messages/messageAgent.ts +8 -0
- package/chat/messages/messageContent.ts +199 -0
- package/chat/messages/messageContract.ts +88 -0
- package/chat/messages/messageSlice.ts +1367 -0
- package/chat/messages/toolThunks.ts +625 -0
- package/cli/agentAliases.ts +2 -1
- package/cli/agentRunCommand.ts +10 -32
- package/cli/agentRuntimeLocal.ts +1 -0
- package/cli/client/agentRun.ts +67 -95
- package/cli/client/localRuntimeAdapter.ts +323 -54
- package/cli/commandRegistry.ts +2 -2
- package/cli/machineWsRunDispatch.ts +51 -6
- package/cli/offlineMarxistsAgentCommand.ts +6 -4
- package/client/agentConfigResolver.test.ts +2 -2
- package/client/agentRun.test.ts +175 -57
- package/client/agentRun.ts +67 -95
- package/client/localRuntimeAdapter.test.ts +682 -37
- package/client/localRuntimeAdapter.ts +323 -54
- package/client/localRuntimeDryRun.test.ts +23 -9
- package/client/localToolPolicy.test.ts +4 -4
- package/commandRegistry.ts +2 -2
- package/core/builtinAgents.ts +209 -0
- package/core/config.ts +15 -0
- package/core/crypto.ts +51 -0
- package/core/generateKeyPairFromSeedV1.ts +15 -0
- package/core/generateMainKey.ts +22 -0
- package/core/init.ts +41 -0
- package/core/localOrigins.ts +8 -0
- package/core/password.ts +13 -0
- package/core/prefix.ts +23 -0
- package/create/editor/transforms/fromMarkdown/index.ts +260 -0
- package/create/editor/transforms/fromMarkdown/inline.ts +285 -0
- package/create/editor/transforms/fromMarkdown/table.ts +130 -0
- package/create/editor/transforms/markdownToSlate.ts +24 -0
- package/create/editor/transforms/slateToRenderMarkdown.ts +218 -0
- package/create/editor/transforms/slateToSimplifiedMarkdown.ts +224 -0
- package/create/editor/transforms/slateToText.ts +33 -0
- package/create/editor/utils/slateUtils.ts +233 -0
- package/create/space/addSpaceAction.ts +193 -0
- package/create/space/category/categoryActions.ts +427 -0
- package/create/space/changeSpaceAction.ts +36 -0
- package/create/space/constants.ts +8 -0
- package/create/space/content/addContentAction.ts +116 -0
- package/create/space/content/contentThunks.ts +90 -0
- package/create/space/content/deleteContentFromSpaceAction.ts +187 -0
- package/create/space/content/deleteMultipleContentAction.ts +112 -0
- package/create/space/content/moveContentAction.ts +285 -0
- package/create/space/content/updateContentCategoryAction.ts +154 -0
- package/create/space/content/updateContentTitleAction.ts +151 -0
- package/create/space/content/uploadAndAddFileToSpaceAction.ts +98 -0
- package/create/space/contentKeyUtils.ts +117 -0
- package/create/space/deleteSpaceAction.ts +276 -0
- package/create/space/fetchSpaceAction.ts +70 -0
- package/create/space/fetchSpaceSidebarStateAction.ts +26 -0
- package/create/space/loadDefaultSpaceAction.ts +57 -0
- package/create/space/member/addMemberAction.ts +79 -0
- package/create/space/member/fetchUserSpaceMembershipsAction.ts +386 -0
- package/create/space/member/memberThunks.ts +47 -0
- package/create/space/member/removeMemberAction.ts +67 -0
- package/create/space/resolvePreferredSpaceId.ts +113 -0
- package/create/space/sidebarVisibleTypes.ts +241 -0
- package/create/space/space.locale.ts +1087 -0
- package/create/space/spaceAccess.ts +182 -0
- package/create/space/spaceCollapsedState.ts +54 -0
- package/create/space/spaceKeys.ts +65 -0
- package/create/space/spaceSlice.ts +328 -0
- package/create/space/spaceThunks.ts +410 -0
- package/create/space/types.ts +27 -0
- package/create/space/updateSpaceAction.ts +107 -0
- package/create/space/utils/permissions.ts +47 -0
- package/create/types.ts +21 -0
- package/database/actions/agentReadResolution.ts +33 -0
- package/database/actions/common.ts +243 -0
- package/database/actions/deleteFile.ts +40 -0
- package/database/actions/fileContent.ts +125 -0
- package/database/actions/patch.ts +155 -0
- package/database/actions/read.ts +358 -0
- package/database/actions/readAndWait.ts +260 -0
- package/database/actions/readRequestManager.ts +120 -0
- package/database/actions/readResolution.ts +125 -0
- package/database/actions/remove.ts +94 -0
- package/database/actions/replication.ts +477 -0
- package/database/actions/upload.ts +186 -0
- package/database/actions/upsert.ts +56 -0
- package/database/actions/write.ts +146 -0
- package/database/authority/ownerKey.ts +80 -0
- package/database/authority/recordAuthority.ts +67 -0
- package/database/authority/userAuthorityRegistry.ts +54 -0
- package/database/client/fetchUserData.ts +61 -0
- package/database/dbActionThunks.ts +1 -0
- package/database/dbSlice.ts +149 -0
- package/database/fileRing.ts +51 -0
- package/database/fileStorage.ts +232 -0
- package/database/fileUrl.ts +34 -0
- package/database/keys.ts +767 -0
- package/database/queryPrefixes.ts +14 -0
- package/database/requests.ts +443 -0
- package/database/runtimeServerContext.ts +54 -0
- package/database/server/levelAuthorityStore.ts +20 -1
- package/database/tenantPlacement.ts +57 -0
- package/database/userPreferenceRegister.ts +131 -0
- package/database/utils/ulid.ts +1 -0
- package/integrations/anthropic/anthropicModels.ts +47 -0
- package/integrations/deepseek/models.ts +37 -0
- package/integrations/google/models.ts +341 -0
- package/integrations/openai/chatCompletionStreamMode.ts +10 -0
- package/integrations/openai/filterAndCleanMessages.ts +284 -0
- package/integrations/openai/flexTier.ts +102 -0
- package/integrations/openai/generateOpenAIRequestBody.ts +274 -0
- package/integrations/openai/generateResponseRequestBody.ts +77 -0
- package/integrations/openai/models.ts +271 -0
- package/integrations/openai/providerBodyCompatibility.ts +23 -0
- package/integrations/openai/responsesHelpers.ts +297 -0
- package/integrations/x-reader/types.ts +109 -0
- package/integrations/xai/models.ts +13 -0
- package/integrations/xhs-reader/analyze/profileAnalyzer.ts +205 -0
- package/integrations/xhs-reader/backends/playwrightProfileCollector.ts +624 -0
- package/integrations/xhs-reader/bridge/readXhsProfileWithBridge.ts +227 -0
- package/integrations/xhs-reader/client/xhsWebApiClient.ts +229 -0
- package/integrations/xhs-reader/normalize.ts +390 -0
- package/integrations/xhs-reader/orchestrator.ts +178 -0
- package/integrations/xhs-reader/redaction.ts +68 -0
- package/integrations/xhs-reader/types.ts +244 -0
- package/integrations/xhs-reader/url.ts +57 -0
- package/machineWsRunDispatch.ts +51 -6
- package/offlineMarxistsAgentCommand.ts +6 -4
- package/package.json +430 -3
- package/render/page/createPageAction.ts +183 -0
- package/render/page/docSlice.ts +468 -0
- package/render/page/types.ts +17 -0
- package/render/table/createTableAction.ts +270 -0
- package/render/table/deleteTableAction.ts +193 -0
- package/render/table/fetchAndCacheTableRows.ts +174 -0
- package/render/table/tableSlice.ts +1106 -0
- package/render/table/toolValueUtils.ts +363 -0
- package/render/table/types.ts +252 -0
- package/render/table/utils/tableSerialization.ts +50 -0
- package/server/handlers/agentRun/types.ts +104 -0
- package/share/action.ts +225 -0
- package/share/helpers.ts +302 -0
- package/share/keys.ts +243 -0
- package/share/publicSharePolicy.ts +27 -0
- package/share/shareSlice.ts +53 -0
- package/share/types.ts +100 -0
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
import type { AppSummary, AppSummaryRecord } from "../types/appSummary";
|
|
2
|
+
import { toAppSummary } from "../types/appSummary";
|
|
3
|
+
import { isAppRouteKey, resolveAppRouteKey } from "../utils/appKeys";
|
|
4
|
+
import { normalizeAppRouteId } from "../../create/space/contentKeyUtils";
|
|
5
|
+
import { DataType } from "../../create/types";
|
|
6
|
+
import { ContentType } from "../types";
|
|
7
|
+
|
|
8
|
+
export type ContentTab =
|
|
9
|
+
| "all"
|
|
10
|
+
| "app"
|
|
11
|
+
| "agent"
|
|
12
|
+
| "dialog"
|
|
13
|
+
| "page"
|
|
14
|
+
| "image"
|
|
15
|
+
| "document"
|
|
16
|
+
| "video"
|
|
17
|
+
| "audio"
|
|
18
|
+
| "table"
|
|
19
|
+
| "file";
|
|
20
|
+
|
|
21
|
+
export type OwnedAppContentItem = {
|
|
22
|
+
source: "owned-app";
|
|
23
|
+
title: string;
|
|
24
|
+
type: ContentType.APP;
|
|
25
|
+
contentKey: string;
|
|
26
|
+
pinned: false;
|
|
27
|
+
createdAt: string | number;
|
|
28
|
+
updatedAt: string | number;
|
|
29
|
+
spaceId: string | null;
|
|
30
|
+
spaceName: string;
|
|
31
|
+
serverOrigin?: string;
|
|
32
|
+
app: AppSummary;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export type QueriedContentItem = {
|
|
36
|
+
source: "user-data";
|
|
37
|
+
title: string;
|
|
38
|
+
type: string;
|
|
39
|
+
fileCategory?: "image" | "document" | "video" | "audio" | "other";
|
|
40
|
+
mimeType?: string;
|
|
41
|
+
fileSize?: number;
|
|
42
|
+
originalName?: string;
|
|
43
|
+
contentKey: string;
|
|
44
|
+
pinned: boolean;
|
|
45
|
+
createdAt: string | number;
|
|
46
|
+
updatedAt: string | number;
|
|
47
|
+
spaceId: string | null;
|
|
48
|
+
spaceName: string;
|
|
49
|
+
serverOrigin?: string;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export type MyContentListItem = QueriedContentItem | OwnedAppContentItem;
|
|
53
|
+
|
|
54
|
+
export const MY_CONTENT_USER_DATA_TYPES: DataType[] = [
|
|
55
|
+
DataType.APP,
|
|
56
|
+
DataType.DOC,
|
|
57
|
+
DataType.DIALOG,
|
|
58
|
+
DataType.IMAGE,
|
|
59
|
+
DataType.FILE,
|
|
60
|
+
DataType.TABLE,
|
|
61
|
+
DataType.AGENT,
|
|
62
|
+
DataType.CYBOT,
|
|
63
|
+
];
|
|
64
|
+
|
|
65
|
+
type UserContentRecord = Partial<AppSummaryRecord> & {
|
|
66
|
+
dbKey?: string;
|
|
67
|
+
contentKey?: string;
|
|
68
|
+
type?: string;
|
|
69
|
+
fileCategory?: "image" | "document" | "video" | "audio" | "other";
|
|
70
|
+
mimeType?: string;
|
|
71
|
+
fileSize?: number;
|
|
72
|
+
originalName?: string;
|
|
73
|
+
title?: string;
|
|
74
|
+
displayName?: string;
|
|
75
|
+
createdAt?: string | number;
|
|
76
|
+
updatedAt?: string | number;
|
|
77
|
+
created?: string | number;
|
|
78
|
+
updated_at?: string | number;
|
|
79
|
+
pinned?: boolean;
|
|
80
|
+
spaceId?: string | null;
|
|
81
|
+
serverOrigin?: string;
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
const normalizeText = (value: unknown): string =>
|
|
85
|
+
typeof value === "string" ? value.trim() : "";
|
|
86
|
+
|
|
87
|
+
export const resolveUserContentRecordKey = (record: UserContentRecord): string => {
|
|
88
|
+
const contentKey = normalizeText(record.contentKey);
|
|
89
|
+
if (contentKey) return contentKey;
|
|
90
|
+
const dbKey = normalizeText(record.dbKey);
|
|
91
|
+
if (dbKey) return dbKey;
|
|
92
|
+
const appKey = normalizeText(record.appKey);
|
|
93
|
+
if (appKey) return appKey;
|
|
94
|
+
return resolveAppRouteKey(undefined, normalizeText(record.appId)) ?? "";
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
export const isUserContentAppRecord = (record: UserContentRecord): boolean => {
|
|
98
|
+
const normalizedType = normalizeText(record.type).toLowerCase();
|
|
99
|
+
const canonicalKey = resolveUserContentRecordKey(record);
|
|
100
|
+
return normalizedType === ContentType.APP || isAppRouteKey(canonicalKey);
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
export const resolveMyContentTab = (
|
|
104
|
+
item: Pick<MyContentListItem, "type" | "contentKey"> & {
|
|
105
|
+
fileCategory?: QueriedContentItem["fileCategory"];
|
|
106
|
+
}
|
|
107
|
+
): ContentTab => {
|
|
108
|
+
const normalizedType = item.type?.toLowerCase();
|
|
109
|
+
const contentKey = item.contentKey;
|
|
110
|
+
|
|
111
|
+
if (normalizedType === ContentType.APP || contentKey.startsWith("app-")) return "app";
|
|
112
|
+
if (
|
|
113
|
+
normalizedType === ContentType.AGENT ||
|
|
114
|
+
normalizedType === "cybot" ||
|
|
115
|
+
contentKey.startsWith("agent-") ||
|
|
116
|
+
contentKey.startsWith("cybot-")
|
|
117
|
+
) {
|
|
118
|
+
return "agent";
|
|
119
|
+
}
|
|
120
|
+
if (normalizedType === ContentType.DIALOG || contentKey.startsWith("dialog-")) return "dialog";
|
|
121
|
+
if (normalizedType === ContentType.DOC || contentKey.startsWith("page-")) return "page";
|
|
122
|
+
if (
|
|
123
|
+
normalizedType === ContentType.IMAGE ||
|
|
124
|
+
contentKey.startsWith("image-") ||
|
|
125
|
+
(normalizedType === ContentType.FILE && item.fileCategory === "image")
|
|
126
|
+
) {
|
|
127
|
+
return "image";
|
|
128
|
+
}
|
|
129
|
+
if (normalizedType === ContentType.FILE && item.fileCategory === "document") {
|
|
130
|
+
return "document";
|
|
131
|
+
}
|
|
132
|
+
if (normalizedType === ContentType.FILE && item.fileCategory === "video") {
|
|
133
|
+
return "video";
|
|
134
|
+
}
|
|
135
|
+
if (normalizedType === ContentType.FILE && item.fileCategory === "audio") {
|
|
136
|
+
return "audio";
|
|
137
|
+
}
|
|
138
|
+
if (normalizedType === "table" || contentKey.startsWith("meta-")) return "table";
|
|
139
|
+
return "file";
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
const toTimestamp = (value: string | number) =>
|
|
143
|
+
typeof value === "number" ? value : Date.parse(value) || 0;
|
|
144
|
+
|
|
145
|
+
const normalizeSpaceId = (spaceId: unknown): string | null => {
|
|
146
|
+
return typeof spaceId === "string" && spaceId.trim().length > 0 ? spaceId : null;
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
const resolveRecordTimestamp = (record: UserContentRecord): string | number =>
|
|
150
|
+
record.updatedAt ??
|
|
151
|
+
record.updated_at ??
|
|
152
|
+
record.createdAt ??
|
|
153
|
+
record.created ??
|
|
154
|
+
0;
|
|
155
|
+
|
|
156
|
+
export function buildMyContentItemsFromUserData(
|
|
157
|
+
records: UserContentRecord[],
|
|
158
|
+
currentServer: string,
|
|
159
|
+
spaceNameById: Map<string, string>,
|
|
160
|
+
myAppsLabel: string,
|
|
161
|
+
fallbackSpaceLabel: string
|
|
162
|
+
): MyContentListItem[] {
|
|
163
|
+
const items = records.flatMap((record): MyContentListItem[] => {
|
|
164
|
+
const contentKey = resolveUserContentRecordKey(record);
|
|
165
|
+
const normalizedType = normalizeText(record.type).toLowerCase();
|
|
166
|
+
const isAppRecord = isUserContentAppRecord(record);
|
|
167
|
+
const contentType = isAppRecord ? ContentType.APP : normalizedType;
|
|
168
|
+
const timestamp = resolveRecordTimestamp(record);
|
|
169
|
+
const spaceId = normalizeSpaceId(record.spaceId);
|
|
170
|
+
const spaceName = spaceId
|
|
171
|
+
? spaceNameById.get(spaceId) ?? spaceId
|
|
172
|
+
: isAppRecord
|
|
173
|
+
? myAppsLabel
|
|
174
|
+
: fallbackSpaceLabel;
|
|
175
|
+
|
|
176
|
+
if (isAppRecord) {
|
|
177
|
+
const app = toAppSummary(
|
|
178
|
+
{
|
|
179
|
+
...record,
|
|
180
|
+
appKey:
|
|
181
|
+
typeof record.appKey === "string" && record.appKey.trim().length > 0
|
|
182
|
+
? record.appKey
|
|
183
|
+
: contentKey,
|
|
184
|
+
dbKey: contentKey,
|
|
185
|
+
},
|
|
186
|
+
currentServer
|
|
187
|
+
);
|
|
188
|
+
if (!app || !(app.appKey || app.appId)) return [];
|
|
189
|
+
return [
|
|
190
|
+
{
|
|
191
|
+
source: "owned-app",
|
|
192
|
+
title: typeof app.name === "string" && app.name.trim() ? app.name : contentKey,
|
|
193
|
+
type: ContentType.APP,
|
|
194
|
+
contentKey: app.appKey ?? normalizeAppRouteId(app.appId ?? ""),
|
|
195
|
+
pinned: false,
|
|
196
|
+
createdAt: timestamp,
|
|
197
|
+
updatedAt: timestamp,
|
|
198
|
+
spaceId,
|
|
199
|
+
spaceName,
|
|
200
|
+
serverOrigin: app.serverOrigin,
|
|
201
|
+
app,
|
|
202
|
+
},
|
|
203
|
+
];
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
if (!contentKey || !contentType) return [];
|
|
207
|
+
|
|
208
|
+
const title = normalizeText(record.title) ||
|
|
209
|
+
normalizeText(record.displayName) ||
|
|
210
|
+
normalizeText(record.name) ||
|
|
211
|
+
contentKey;
|
|
212
|
+
|
|
213
|
+
return [
|
|
214
|
+
{
|
|
215
|
+
source: "user-data",
|
|
216
|
+
title,
|
|
217
|
+
type: contentType,
|
|
218
|
+
fileCategory: record.fileCategory,
|
|
219
|
+
mimeType: typeof record.mimeType === "string" ? record.mimeType : undefined,
|
|
220
|
+
fileSize: typeof record.fileSize === "number" ? record.fileSize : undefined,
|
|
221
|
+
originalName:
|
|
222
|
+
typeof record.originalName === "string" && record.originalName.trim().length > 0
|
|
223
|
+
? record.originalName
|
|
224
|
+
: undefined,
|
|
225
|
+
contentKey,
|
|
226
|
+
pinned: Boolean(record.pinned),
|
|
227
|
+
createdAt: record.createdAt ?? record.created ?? 0,
|
|
228
|
+
updatedAt: timestamp,
|
|
229
|
+
spaceId,
|
|
230
|
+
spaceName,
|
|
231
|
+
serverOrigin:
|
|
232
|
+
typeof record.serverOrigin === "string" && record.serverOrigin.trim().length > 0
|
|
233
|
+
? record.serverOrigin
|
|
234
|
+
: undefined,
|
|
235
|
+
},
|
|
236
|
+
];
|
|
237
|
+
});
|
|
238
|
+
|
|
239
|
+
return items.sort(
|
|
240
|
+
(left, right) => toTimestamp(right.updatedAt) - toTimestamp(left.updatedAt)
|
|
241
|
+
);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
const previewItemKey = (item: MyContentListItem): string =>
|
|
245
|
+
`${item.source}:${item.contentKey}:${item.spaceId ?? "none"}`;
|
|
246
|
+
|
|
247
|
+
export function buildMyContentPreviewItems(
|
|
248
|
+
items: MyContentListItem[],
|
|
249
|
+
limit?: number,
|
|
250
|
+
activeTab: ContentTab = "all"
|
|
251
|
+
): MyContentListItem[] {
|
|
252
|
+
if (typeof limit !== "number") return items;
|
|
253
|
+
if (activeTab !== "all") return items.slice(0, limit);
|
|
254
|
+
|
|
255
|
+
const previewPriority: ContentTab[] = [
|
|
256
|
+
"app",
|
|
257
|
+
"agent",
|
|
258
|
+
"dialog",
|
|
259
|
+
"page",
|
|
260
|
+
"table",
|
|
261
|
+
"image",
|
|
262
|
+
"document",
|
|
263
|
+
"video",
|
|
264
|
+
"audio",
|
|
265
|
+
"file",
|
|
266
|
+
];
|
|
267
|
+
const selected: MyContentListItem[] = [];
|
|
268
|
+
const selectedKeys = new Set<string>();
|
|
269
|
+
|
|
270
|
+
const pushIfNeeded = (item: MyContentListItem | undefined) => {
|
|
271
|
+
if (!item || selected.length >= limit) return;
|
|
272
|
+
const key = previewItemKey(item);
|
|
273
|
+
if (selectedKeys.has(key)) return;
|
|
274
|
+
selected.push(item);
|
|
275
|
+
selectedKeys.add(key);
|
|
276
|
+
};
|
|
277
|
+
|
|
278
|
+
for (const tab of previewPriority) {
|
|
279
|
+
pushIfNeeded(items.find((item) => resolveMyContentTab(item) === tab));
|
|
280
|
+
if (selected.length >= limit) return selected;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
for (const item of items) {
|
|
284
|
+
pushIfNeeded(item);
|
|
285
|
+
if (selected.length >= limit) break;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
return selected;
|
|
289
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
type HeaderLike = Pick<Headers, "get"> | null | undefined;
|
|
2
|
+
|
|
3
|
+
const normalizePositiveMs = (value: unknown, fallbackMs: number) => {
|
|
4
|
+
const parsed = Number(value);
|
|
5
|
+
return Number.isFinite(parsed) && parsed >= 0 ? Math.round(parsed) : fallbackMs;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export const parseRetryAfterHeaderMs = (
|
|
9
|
+
value: string | null | undefined,
|
|
10
|
+
nowMs = Date.now()
|
|
11
|
+
) => {
|
|
12
|
+
if (typeof value !== "string" || !value.trim()) return null;
|
|
13
|
+
|
|
14
|
+
const trimmed = value.trim();
|
|
15
|
+
const seconds = Number(trimmed);
|
|
16
|
+
if (Number.isFinite(seconds) && seconds >= 0) {
|
|
17
|
+
return Math.round(seconds * 1_000);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
const parsedDateMs = Date.parse(trimmed);
|
|
21
|
+
if (Number.isFinite(parsedDateMs)) {
|
|
22
|
+
return Math.max(0, parsedDateMs - nowMs);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return null;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export const resolveRetryAfterMs = (
|
|
29
|
+
headers: HeaderLike,
|
|
30
|
+
fallbackMs: number,
|
|
31
|
+
bodyRetryAfterMs?: unknown
|
|
32
|
+
) => {
|
|
33
|
+
const headerDelayMs = parseRetryAfterHeaderMs(headers?.get("Retry-After"));
|
|
34
|
+
if (headerDelayMs !== null) return headerDelayMs;
|
|
35
|
+
return normalizePositiveMs(bodyRetryAfterMs, fallbackMs);
|
|
36
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export const TRANSIENT_READ_RETRY_STATUSES = new Set([502, 503, 504]);
|
|
2
|
+
|
|
3
|
+
type RetryFetchOptions = {
|
|
4
|
+
delaysMs?: number[];
|
|
5
|
+
fetchImpl?: typeof fetch;
|
|
6
|
+
retryStatuses?: Set<number>;
|
|
7
|
+
sleep?: (ms: number) => Promise<void>;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const DEFAULT_RETRY_DELAYS_MS = [300, 1000];
|
|
11
|
+
|
|
12
|
+
const sleep = (ms: number): Promise<void> =>
|
|
13
|
+
new Promise((resolve) => {
|
|
14
|
+
setTimeout(resolve, ms);
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
const getRequestMethod = (input: RequestInfo | URL, init?: RequestInit): string => {
|
|
18
|
+
if (init?.method) return init.method.toUpperCase();
|
|
19
|
+
if (typeof Request !== "undefined" && input instanceof Request) {
|
|
20
|
+
return input.method.toUpperCase();
|
|
21
|
+
}
|
|
22
|
+
return "GET";
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
const isRetryableReadMethod = (method: string): boolean =>
|
|
26
|
+
method === "GET" || method === "HEAD";
|
|
27
|
+
|
|
28
|
+
const isAbortError = (error: unknown): boolean =>
|
|
29
|
+
error instanceof DOMException
|
|
30
|
+
? error.name === "AbortError"
|
|
31
|
+
: error instanceof Error && error.name === "AbortError";
|
|
32
|
+
|
|
33
|
+
export const fetchWithTransientReadRetry = async (
|
|
34
|
+
input: RequestInfo | URL,
|
|
35
|
+
init?: RequestInit,
|
|
36
|
+
options: RetryFetchOptions = {}
|
|
37
|
+
): Promise<Response> => {
|
|
38
|
+
const method = getRequestMethod(input, init);
|
|
39
|
+
const canRetry = isRetryableReadMethod(method);
|
|
40
|
+
const delaysMs = options.delaysMs ?? DEFAULT_RETRY_DELAYS_MS;
|
|
41
|
+
const retryStatuses = options.retryStatuses ?? TRANSIENT_READ_RETRY_STATUSES;
|
|
42
|
+
const fetchImpl = options.fetchImpl ?? fetch;
|
|
43
|
+
const wait = options.sleep ?? sleep;
|
|
44
|
+
|
|
45
|
+
for (let attempt = 0; ; attempt += 1) {
|
|
46
|
+
try {
|
|
47
|
+
const response = await fetchImpl(input, init);
|
|
48
|
+
const shouldRetry =
|
|
49
|
+
canRetry &&
|
|
50
|
+
retryStatuses.has(response.status) &&
|
|
51
|
+
attempt < delaysMs.length;
|
|
52
|
+
|
|
53
|
+
if (!shouldRetry) return response;
|
|
54
|
+
} catch (error) {
|
|
55
|
+
const shouldRetry = canRetry && !isAbortError(error) && attempt < delaysMs.length;
|
|
56
|
+
if (!shouldRetry) throw error;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
await wait(delaysMs[attempt]);
|
|
60
|
+
}
|
|
61
|
+
};
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
// 文件路径: authSlice.ts(只包含与 signUpAction 相关部分)
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
selectRemoteServer,
|
|
5
|
+
selectRemoteSyncServers,
|
|
6
|
+
} from "../../app/settings/settingSlice";
|
|
7
|
+
import { resetAuthScopedClientState } from "../resetAuthScopedClientState";
|
|
8
|
+
|
|
9
|
+
import { verifySignedMessage } from "../../core/crypto";
|
|
10
|
+
import { generateUserIdV1 } from "../../core/generateMainKey";
|
|
11
|
+
import { buildPersistentAuthTokenPayload, signToken, parseToken } from "../token";
|
|
12
|
+
import { API_VERSION } from "../../database/config";
|
|
13
|
+
import { hashPasswordV1 } from "../../core/password";
|
|
14
|
+
import { generateKeyPairFromSeedV1 } from "../../core/generateKeyPairFromSeedV1";
|
|
15
|
+
import { getAllServers } from "../../database/actions/common";
|
|
16
|
+
|
|
17
|
+
const TIMEOUT = 5000;
|
|
18
|
+
|
|
19
|
+
type SignUpSendData = {
|
|
20
|
+
username: string;
|
|
21
|
+
publicKey: string;
|
|
22
|
+
locale: string;
|
|
23
|
+
email?: string;
|
|
24
|
+
inviterId?: string;
|
|
25
|
+
clientIp?: string | null;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const getSignUpErrorMessage = async (response: Response): Promise<string> => {
|
|
29
|
+
try {
|
|
30
|
+
const payload = await response.clone().json();
|
|
31
|
+
if (typeof payload?.error === "string" && payload.error.trim()) {
|
|
32
|
+
return payload.error;
|
|
33
|
+
}
|
|
34
|
+
if (typeof payload?.message === "string" && payload.message.trim()) {
|
|
35
|
+
return payload.message;
|
|
36
|
+
}
|
|
37
|
+
} catch {
|
|
38
|
+
// Fall back to plain text below.
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
try {
|
|
42
|
+
const text = (await response.text()).trim();
|
|
43
|
+
if (text) return text;
|
|
44
|
+
} catch {
|
|
45
|
+
// Ignore text parsing errors and use the status fallback.
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
return `注册失败,服务器响应状态码:${response.status}`;
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
// 获取客户端公网 IP(失败时返回 null,不阻塞注册流程)
|
|
52
|
+
const getPublicIp = async (): Promise<string | null> => {
|
|
53
|
+
try {
|
|
54
|
+
const controller = new AbortController();
|
|
55
|
+
const timer = setTimeout(() => controller.abort(), 1500);
|
|
56
|
+
|
|
57
|
+
const res = await fetch("https://api.ipify.org?format=json", {
|
|
58
|
+
signal: controller.signal,
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
clearTimeout(timer);
|
|
62
|
+
|
|
63
|
+
if (!res.ok) return null;
|
|
64
|
+
|
|
65
|
+
const data = await res.json();
|
|
66
|
+
return data?.ip || null;
|
|
67
|
+
} catch {
|
|
68
|
+
return null;
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
const signUpToServer = async (
|
|
73
|
+
server: string,
|
|
74
|
+
sendData: SignUpSendData,
|
|
75
|
+
nolotusPubKey: string,
|
|
76
|
+
signal?: AbortSignal
|
|
77
|
+
) => {
|
|
78
|
+
const response = await fetch(`${server}${API_VERSION}/users/signup`, {
|
|
79
|
+
method: "POST",
|
|
80
|
+
headers: {
|
|
81
|
+
"Content-Type": "application/json",
|
|
82
|
+
...(sendData?.clientIp
|
|
83
|
+
? { "X-Client-IP": String(sendData.clientIp) }
|
|
84
|
+
: {}),
|
|
85
|
+
},
|
|
86
|
+
body: JSON.stringify(sendData),
|
|
87
|
+
signal,
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
if (!response.ok) {
|
|
91
|
+
throw new Error(await getSignUpErrorMessage(response));
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
const { encryptedData } = await response.json();
|
|
95
|
+
const decryptedData = await verifySignedMessage(
|
|
96
|
+
encryptedData,
|
|
97
|
+
nolotusPubKey
|
|
98
|
+
);
|
|
99
|
+
const result = JSON.parse(decryptedData);
|
|
100
|
+
return result;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
const signUpToBackupServers = (
|
|
104
|
+
servers: string[],
|
|
105
|
+
sendData: SignUpSendData,
|
|
106
|
+
nolotusPubKey: string
|
|
107
|
+
) => {
|
|
108
|
+
servers.forEach((server) => {
|
|
109
|
+
const abortController = new AbortController();
|
|
110
|
+
const timeoutId = setTimeout(
|
|
111
|
+
() => abortController.abort(),
|
|
112
|
+
TIMEOUT
|
|
113
|
+
);
|
|
114
|
+
|
|
115
|
+
signUpToServer(server, sendData, nolotusPubKey, abortController.signal)
|
|
116
|
+
.then((result) => {
|
|
117
|
+
clearTimeout(timeoutId);
|
|
118
|
+
if (!result) {
|
|
119
|
+
// 备份注册失败时,此处可按需记录日志或上报
|
|
120
|
+
}
|
|
121
|
+
})
|
|
122
|
+
.catch(() => {
|
|
123
|
+
clearTimeout(timeoutId);
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
export const signUpAction = async (user: any, thunkAPI: any) => {
|
|
129
|
+
const { username, locale, password, email, inviterId } = user;
|
|
130
|
+
const state = thunkAPI.getState();
|
|
131
|
+
const tokenManager = thunkAPI.extra.tokenManager;
|
|
132
|
+
|
|
133
|
+
// 1) 本地生成密钥对
|
|
134
|
+
const encryptionKey = await hashPasswordV1(password);
|
|
135
|
+
const { publicKey, secretKey } = generateKeyPairFromSeedV1(
|
|
136
|
+
username + encryptionKey + locale
|
|
137
|
+
);
|
|
138
|
+
|
|
139
|
+
// 2) 获取客户端公网 IP(失败则为 null)
|
|
140
|
+
const clientIp = await getPublicIp();
|
|
141
|
+
|
|
142
|
+
const sendData: SignUpSendData = {
|
|
143
|
+
username,
|
|
144
|
+
publicKey,
|
|
145
|
+
locale,
|
|
146
|
+
email,
|
|
147
|
+
inviterId,
|
|
148
|
+
clientIp,
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
const nolotusPubKey = "pqjbGua2Rp-wkh3Vip1EBV6p4ggZWtWvGyNC37kKPus";
|
|
152
|
+
|
|
153
|
+
const currentServer = selectRemoteServer(state);
|
|
154
|
+
const configuredSyncServers = selectRemoteSyncServers(state) ?? [];
|
|
155
|
+
|
|
156
|
+
// 3) 先在当前 server 上完成主注册
|
|
157
|
+
// 使用 getAllServers 只传当前服务器,做一次规范化 + 在线判断
|
|
158
|
+
const mainServers = getAllServers(currentServer, []);
|
|
159
|
+
const mainServer = mainServers[0];
|
|
160
|
+
|
|
161
|
+
if (!mainServer) {
|
|
162
|
+
throw new Error("No available server for sign up (possibly offline).");
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
const mainAbortController = new AbortController();
|
|
166
|
+
const mainTimeoutId = setTimeout(() => mainAbortController.abort(), TIMEOUT);
|
|
167
|
+
let remoteData: any;
|
|
168
|
+
try {
|
|
169
|
+
remoteData = await signUpToServer(
|
|
170
|
+
mainServer,
|
|
171
|
+
sendData,
|
|
172
|
+
nolotusPubKey,
|
|
173
|
+
mainAbortController.signal
|
|
174
|
+
);
|
|
175
|
+
} finally {
|
|
176
|
+
clearTimeout(mainTimeoutId);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
if (!remoteData) {
|
|
180
|
+
throw new Error("Failed to register on current server");
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
// 4) 本地重新计算 userId,校验服务端回包一致性
|
|
184
|
+
const localUserId = generateUserIdV1(publicKey, username, locale);
|
|
185
|
+
const isValid =
|
|
186
|
+
remoteData.publicKey === publicKey &&
|
|
187
|
+
remoteData.username === username &&
|
|
188
|
+
remoteData.userId === localUserId;
|
|
189
|
+
|
|
190
|
+
if (!isValid) {
|
|
191
|
+
throw new Error("Server data does not match local data");
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
// 5) 异步向备份服务器同步注册
|
|
195
|
+
// - 仅使用 settings.syncServers(去掉 currentServer)
|
|
196
|
+
// - 使用 getAllServers(undefined, syncServers) 做去重和 URL 规范化
|
|
197
|
+
const backupCandidates = getAllServers(undefined, configuredSyncServers);
|
|
198
|
+
const backupServers = backupCandidates.filter((s) => s !== mainServer);
|
|
199
|
+
|
|
200
|
+
if (backupServers.length > 0) {
|
|
201
|
+
Promise.resolve().then(() => {
|
|
202
|
+
signUpToBackupServers(backupServers, sendData, nolotusPubKey);
|
|
203
|
+
});
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
// 6) 生成本地登录 token
|
|
207
|
+
const nowSec = Math.floor(Date.now() / 1000);
|
|
208
|
+
const token = signToken(
|
|
209
|
+
buildPersistentAuthTokenPayload(
|
|
210
|
+
{
|
|
211
|
+
userId: localUserId,
|
|
212
|
+
username,
|
|
213
|
+
publicKey,
|
|
214
|
+
tokenVersion: Number.isFinite(remoteData.tokenVersion)
|
|
215
|
+
? Math.max(0, Math.floor(remoteData.tokenVersion))
|
|
216
|
+
: 0,
|
|
217
|
+
},
|
|
218
|
+
nowSec
|
|
219
|
+
),
|
|
220
|
+
secretKey
|
|
221
|
+
);
|
|
222
|
+
await resetAuthScopedClientState(thunkAPI.dispatch);
|
|
223
|
+
await tokenManager.storeToken(token);
|
|
224
|
+
const parsedUser = parseToken(token);
|
|
225
|
+
|
|
226
|
+
return { user: parsedUser, token };
|
|
227
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type AdminPermissions = {
|
|
2
|
+
usageManagement?: boolean;
|
|
3
|
+
};
|
|
4
|
+
|
|
5
|
+
export const hasUsageManagementPermission = (value: unknown): boolean => {
|
|
6
|
+
if (!value || typeof value !== "object") return false;
|
|
7
|
+
const permissions = (value as { adminPermissions?: AdminPermissions | null })
|
|
8
|
+
.adminPermissions;
|
|
9
|
+
return permissions?.usageManagement === true;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export const mergeAdminPermissions = (
|
|
13
|
+
current: unknown,
|
|
14
|
+
patch: Partial<AdminPermissions>
|
|
15
|
+
): AdminPermissions => ({
|
|
16
|
+
...(current && typeof current === "object" ? (current as AdminPermissions) : {}),
|
|
17
|
+
...patch,
|
|
18
|
+
});
|