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,187 @@
|
|
|
1
|
+
// create/space/deleteContentFromSpaceAction.ts
|
|
2
|
+
import { createSpaceKey } from "../../space/spaceKeys";
|
|
3
|
+
import { patch, read, remove } from "../../../database/dbSlice";
|
|
4
|
+
import { SpaceData, Agent } from "../../../app/types";
|
|
5
|
+
import { selectUserId } from "../../../auth/authSlice";
|
|
6
|
+
import { isAgentKey, isPageKey, splitKey } from "../../../database/keys";
|
|
7
|
+
import { extractUserId } from "../../../core/prefix";
|
|
8
|
+
import { isSystemAdmin } from "../../../core/init";
|
|
9
|
+
import { deleteDialog } from "../../../chat/dialog/dialogSlice";
|
|
10
|
+
import { deleteTable } from "../../../render/table/tableSlice";
|
|
11
|
+
|
|
12
|
+
const nextSpaceUpdatedAt = (value: unknown): number | string => {
|
|
13
|
+
const previousTimestamp =
|
|
14
|
+
typeof value === "number"
|
|
15
|
+
? value
|
|
16
|
+
: typeof value === "string"
|
|
17
|
+
? Date.parse(value) || 0
|
|
18
|
+
: 0;
|
|
19
|
+
const nextTimestamp = Math.max(Date.now(), previousTimestamp + 1);
|
|
20
|
+
return typeof value === "string"
|
|
21
|
+
? new Date(nextTimestamp).toISOString()
|
|
22
|
+
: nextTimestamp;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
const findContentReference = (
|
|
26
|
+
spaceData: SpaceData,
|
|
27
|
+
requestedContentKey: string
|
|
28
|
+
): { entryKey: string; contentInfo: SpaceData["contents"][string] } | null => {
|
|
29
|
+
const contents = spaceData.contents ?? {};
|
|
30
|
+
const directMatch = contents[requestedContentKey];
|
|
31
|
+
if (directMatch) {
|
|
32
|
+
return { entryKey: requestedContentKey, contentInfo: directMatch };
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
for (const [entryKey, item] of Object.entries(contents)) {
|
|
36
|
+
if (!item) continue;
|
|
37
|
+
if (item.contentKey === requestedContentKey) {
|
|
38
|
+
return { entryKey, contentInfo: item };
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
return null;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* 策略模式处理不同类型内容的实体物理删除逻辑
|
|
47
|
+
*/
|
|
48
|
+
const ENTITY_DELETE_STRATEGIES: Record<
|
|
49
|
+
string,
|
|
50
|
+
(key: string, ctx: {
|
|
51
|
+
dispatch: any;
|
|
52
|
+
userId: string;
|
|
53
|
+
thunkAPI: any;
|
|
54
|
+
sourceServerOrigin?: string | null;
|
|
55
|
+
}) => Promise<void>
|
|
56
|
+
> = {
|
|
57
|
+
dialog: async (key, { dispatch }) => {
|
|
58
|
+
await (dispatch as any)(deleteDialog(key)).unwrap();
|
|
59
|
+
},
|
|
60
|
+
page: async (key, { dispatch, userId, sourceServerOrigin }) => {
|
|
61
|
+
const isOwnerByKey = extractUserId(key) === userId;
|
|
62
|
+
if (isOwnerByKey || isSystemAdmin(userId)) {
|
|
63
|
+
await dispatch(remove({ dbKey: key, preferredServerOrigin: sourceServerOrigin }));
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
table: async (key, { dispatch }) => {
|
|
67
|
+
await (dispatch as any)(deleteTable({ dbKey: key })).unwrap();
|
|
68
|
+
},
|
|
69
|
+
file: async (key, { thunkAPI }) => {
|
|
70
|
+
const { deleteFileAction } = await import("../../../database/actions/deleteFile");
|
|
71
|
+
await deleteFileAction(key, thunkAPI);
|
|
72
|
+
},
|
|
73
|
+
image: async (key, { thunkAPI }) => {
|
|
74
|
+
const { deleteFileAction } = await import("../../../database/actions/deleteFile");
|
|
75
|
+
await deleteFileAction(key, thunkAPI);
|
|
76
|
+
},
|
|
77
|
+
agent: async (key, { dispatch, userId, sourceServerOrigin }) => {
|
|
78
|
+
const parts = splitKey(key);
|
|
79
|
+
const isPublic = parts[1] === "pub";
|
|
80
|
+
const isOwnerByKey = parts[1] === userId;
|
|
81
|
+
|
|
82
|
+
if (!isPublic) {
|
|
83
|
+
// 1. 私有副本:只有所有者或管理员可以物理删除实体
|
|
84
|
+
if (isOwnerByKey || isSystemAdmin(userId)) {
|
|
85
|
+
await dispatch(remove({ dbKey: key, preferredServerOrigin: sourceServerOrigin }));
|
|
86
|
+
}
|
|
87
|
+
} else {
|
|
88
|
+
// 2. 公共副本:只有创建者或管理员可以删除实体
|
|
89
|
+
const agentData = (await (dispatch as any)(read({
|
|
90
|
+
dbKey: key,
|
|
91
|
+
preferredServerOrigin: sourceServerOrigin,
|
|
92
|
+
})).unwrap()) as Agent | null;
|
|
93
|
+
if (agentData) {
|
|
94
|
+
const isCreator = agentData.userId === userId;
|
|
95
|
+
const isAdmin = isSystemAdmin(userId);
|
|
96
|
+
if (isCreator || isAdmin) {
|
|
97
|
+
await dispatch(remove({ dbKey: key, preferredServerOrigin: sourceServerOrigin }));
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
cybot: async (key, ctx) => ENTITY_DELETE_STRATEGIES.agent(key, ctx),
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* 从指定的 Space 中删除内容的引用,并随后根据类型执行实体的物理删除。
|
|
107
|
+
*/
|
|
108
|
+
export const deleteContentFromSpaceAction = async (
|
|
109
|
+
input: { contentKey: string; spaceId: string; sourceServerOrigin?: string | null },
|
|
110
|
+
thunkAPI: any
|
|
111
|
+
) => {
|
|
112
|
+
const { contentKey, spaceId, sourceServerOrigin } = input;
|
|
113
|
+
const { dispatch, getState } = thunkAPI;
|
|
114
|
+
const userId = selectUserId(getState());
|
|
115
|
+
|
|
116
|
+
// 1. 获取并验证 Space 数据
|
|
117
|
+
const spaceKey = createSpaceKey.space(spaceId);
|
|
118
|
+
const spaceData = (await (dispatch as any)(read({
|
|
119
|
+
dbKey: spaceKey,
|
|
120
|
+
preferredServerOrigin: sourceServerOrigin,
|
|
121
|
+
})).unwrap()) as SpaceData | null;
|
|
122
|
+
|
|
123
|
+
if (!spaceData) throw new Error("空间不存在");
|
|
124
|
+
if (!userId || !spaceData.members?.includes(userId))
|
|
125
|
+
throw new Error("无权修改此空间");
|
|
126
|
+
|
|
127
|
+
const contentReference = findContentReference(spaceData, contentKey);
|
|
128
|
+
if (!contentReference) {
|
|
129
|
+
return { contentKey, spaceId, updatedSpaceData: spaceData };
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
const { entryKey, contentInfo } = contentReference;
|
|
133
|
+
const entityKey = String(contentInfo.contentKey || contentKey || entryKey);
|
|
134
|
+
const contentDeletes: Record<string, null> = {
|
|
135
|
+
[entryKey]: null,
|
|
136
|
+
};
|
|
137
|
+
if (entityKey !== entryKey) {
|
|
138
|
+
contentDeletes[entityKey] = null;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// 2. 从 Space 的 contents 中移除引用
|
|
142
|
+
const updatedSpaceData = await (dispatch as any)(
|
|
143
|
+
patch({
|
|
144
|
+
dbKey: spaceKey,
|
|
145
|
+
preferredServerOrigin: sourceServerOrigin,
|
|
146
|
+
changes: {
|
|
147
|
+
contents: contentDeletes,
|
|
148
|
+
updatedAt: nextSpaceUpdatedAt(spaceData.updatedAt),
|
|
149
|
+
},
|
|
150
|
+
})
|
|
151
|
+
).unwrap();
|
|
152
|
+
|
|
153
|
+
// 3. 根据内容类型执行实体的物理删除 (Functional Refactor)
|
|
154
|
+
let entityRemoveError: string | null = null;
|
|
155
|
+
const contentType = String(contentInfo.type || "").toLowerCase();
|
|
156
|
+
|
|
157
|
+
try {
|
|
158
|
+
const strategy = ENTITY_DELETE_STRATEGIES[contentType];
|
|
159
|
+
if (strategy) {
|
|
160
|
+
await strategy(entityKey, { dispatch, userId, thunkAPI, sourceServerOrigin });
|
|
161
|
+
} else if (isPageKey(entityKey)) {
|
|
162
|
+
await ENTITY_DELETE_STRATEGIES.page(entityKey, {
|
|
163
|
+
dispatch,
|
|
164
|
+
userId,
|
|
165
|
+
thunkAPI,
|
|
166
|
+
sourceServerOrigin,
|
|
167
|
+
});
|
|
168
|
+
} else if (isAgentKey(entityKey)) {
|
|
169
|
+
await ENTITY_DELETE_STRATEGIES.agent(entityKey, {
|
|
170
|
+
dispatch,
|
|
171
|
+
userId,
|
|
172
|
+
thunkAPI,
|
|
173
|
+
sourceServerOrigin,
|
|
174
|
+
});
|
|
175
|
+
}
|
|
176
|
+
} catch (err: any) {
|
|
177
|
+
console.error(`[deleteContent] Failed to delete entity ${entityKey}:`, err);
|
|
178
|
+
entityRemoveError = err.message || "Unknown error";
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
return {
|
|
182
|
+
contentKey,
|
|
183
|
+
spaceId,
|
|
184
|
+
updatedSpaceData,
|
|
185
|
+
entityRemoveError,
|
|
186
|
+
};
|
|
187
|
+
};
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { selectUserId } from "../../../auth/authSlice";
|
|
2
|
+
import { createSpaceKey } from "../../space/spaceKeys";
|
|
3
|
+
import { patch, read, remove } from "../../../database/dbSlice";
|
|
4
|
+
import { SpaceData } from "../../../app/types";
|
|
5
|
+
import pino from "pino";
|
|
6
|
+
|
|
7
|
+
const logger = pino({
|
|
8
|
+
level: "info",
|
|
9
|
+
// transport: {
|
|
10
|
+
// target: "pino-pretty",
|
|
11
|
+
// },
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* 从指定的 Space 中批量删除多个内容。
|
|
16
|
+
* 此函数会先用一个 patch 操作原子性地移除所有内容的引用,
|
|
17
|
+
* 然后并行地删除每个内容实体。
|
|
18
|
+
* @param input 包含 contentKeys 数组和 spaceId 的对象
|
|
19
|
+
* @param thunkAPI Redux Thunk API 对象
|
|
20
|
+
* @returns 包含 spaceId 和更新后的 spaceData 的对象
|
|
21
|
+
*/
|
|
22
|
+
export const deleteMultipleContentAction = async (
|
|
23
|
+
input: { contentKeys: string[]; spaceId: string },
|
|
24
|
+
thunkAPI: any
|
|
25
|
+
) => {
|
|
26
|
+
const { contentKeys, spaceId } = input;
|
|
27
|
+
if (!contentKeys || contentKeys.length === 0) {
|
|
28
|
+
logger.warn("deleteMultipleContentAction called with no contentKeys.");
|
|
29
|
+
return { spaceId, updatedSpaceData: null };
|
|
30
|
+
}
|
|
31
|
+
const { dispatch, getState } = thunkAPI;
|
|
32
|
+
const state = getState();
|
|
33
|
+
const userId = selectUserId(state);
|
|
34
|
+
|
|
35
|
+
logger.info(
|
|
36
|
+
{ count: contentKeys.length, spaceId, userId },
|
|
37
|
+
"Initiating deleteMultipleContentAction"
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
const spaceKey = createSpaceKey.space(spaceId);
|
|
41
|
+
|
|
42
|
+
// 1. 获取并检查权限 (仅执行一次)
|
|
43
|
+
const spaceData = (await dispatch(
|
|
44
|
+
read({
|
|
45
|
+
dbKey: spaceKey
|
|
46
|
+
})
|
|
47
|
+
).unwrap()) as SpaceData | null;
|
|
48
|
+
if (!spaceData) {
|
|
49
|
+
logger.error({ spaceKey }, "Space data not found for batch delete");
|
|
50
|
+
throw new Error("空间不存在");
|
|
51
|
+
}
|
|
52
|
+
if (!userId || !spaceData.members.includes(userId)) {
|
|
53
|
+
logger.warn({ userId, spaceId }, "Unauthorized attempt for batch delete");
|
|
54
|
+
throw new Error("无权修改此空间");
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// 2. 一次性更新 Space 数据 (原子性地删除所有引用)
|
|
58
|
+
// 这是比循环 patch 高效得多的方法
|
|
59
|
+
const changes = {
|
|
60
|
+
contents: contentKeys.reduce(
|
|
61
|
+
(acc, key) => {
|
|
62
|
+
acc[key] = null; // null 表示删除该键
|
|
63
|
+
return acc;
|
|
64
|
+
},
|
|
65
|
+
{} as Record<string, null>
|
|
66
|
+
),
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
try {
|
|
70
|
+
await dispatch(patch({ dbKey: spaceKey, changes })).unwrap();
|
|
71
|
+
logger.info(
|
|
72
|
+
{ spaceKey, count: contentKeys.length },
|
|
73
|
+
"Successfully batched patch to remove content references"
|
|
74
|
+
);
|
|
75
|
+
} catch (patchError: any) {
|
|
76
|
+
logger.error(
|
|
77
|
+
{ error: patchError, spaceKey },
|
|
78
|
+
"Failed to batch patch space data. Aborting."
|
|
79
|
+
);
|
|
80
|
+
throw new Error(`更新空间引用失败: ${patchError.message}`);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// 3. 并行删除所有内容实体
|
|
84
|
+
const removePromises = contentKeys.map((key) =>
|
|
85
|
+
dispatch(remove(key)).unwrap()
|
|
86
|
+
);
|
|
87
|
+
const results = await Promise.allSettled(removePromises);
|
|
88
|
+
|
|
89
|
+
results.forEach((result, index) => {
|
|
90
|
+
if (result.status === "fulfilled") {
|
|
91
|
+
logger.info({ contentKey: contentKeys[index] }, "Entity removed");
|
|
92
|
+
} else {
|
|
93
|
+
logger.error(
|
|
94
|
+
{ contentKey: contentKeys[index], error: result.reason },
|
|
95
|
+
"Failed to remove an entity"
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
// 4. 在所有操作后,获取最终的 Space 数据
|
|
101
|
+
const finalSpaceData = (await dispatch(
|
|
102
|
+
read({
|
|
103
|
+
dbKey: spaceKey
|
|
104
|
+
})
|
|
105
|
+
).unwrap()) as SpaceData | null;
|
|
106
|
+
logger.info({ spaceId }, "Finished batch delete and refetched space data.");
|
|
107
|
+
|
|
108
|
+
return {
|
|
109
|
+
spaceId,
|
|
110
|
+
updatedSpaceData: finalSpaceData,
|
|
111
|
+
};
|
|
112
|
+
};
|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
// 文件路径: create/space/content/moveContentAction.ts
|
|
2
|
+
|
|
3
|
+
import type { AppDispatch, RootState } from "../../../app/store"; // 确认 store 类型路径
|
|
4
|
+
import type { SpaceId } from "../../space/types"; // 确认类型路径
|
|
5
|
+
import type { SpaceData } from "../../../app/types";
|
|
6
|
+
import type { SpaceContent } from "../../../app/types";
|
|
7
|
+
import { selectUserId } from "../../../auth/authSlice"; // 确认导入路径
|
|
8
|
+
import { createSpaceKey } from "../../space/spaceKeys"; // 确认导入路径
|
|
9
|
+
// 假设 dbSlice 提供 read, patch
|
|
10
|
+
import { read, patch } from "../../../database/dbSlice"; // 确认导入路径
|
|
11
|
+
import { checkSpaceMembership } from "../utils/permissions"; // 导入权限检查函数 (假设存在)
|
|
12
|
+
import { UNCATEGORIZED_ID } from "../../space/constants"; // 导入常量
|
|
13
|
+
import pino from "pino"; // 引入日志
|
|
14
|
+
|
|
15
|
+
const logger = pino({
|
|
16
|
+
level: "info", // 或根据环境调整
|
|
17
|
+
// transport: { target: "pino-pretty" },
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
// 定义移动操作的输入类型
|
|
21
|
+
interface MoveContentInput {
|
|
22
|
+
contentKey: string; // 要移动的内容的 Key
|
|
23
|
+
sourceSpaceId: SpaceId; // 源空间的 ID
|
|
24
|
+
targetSpaceId: SpaceId; // 目标空间的 ID
|
|
25
|
+
targetCategoryId?: string | null; // 目标空间中的分类 ID (可选, null/undefined/""/UNCATEGORIZED_ID 表示无分类)
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// 定义返回类型,包含两个更新后的空间数据或 null (如果读取失败) 及可选错误
|
|
29
|
+
interface MoveContentResult {
|
|
30
|
+
sourceSpaceId: SpaceId;
|
|
31
|
+
updatedSourceSpaceData: SpaceData | null;
|
|
32
|
+
targetSpaceId: SpaceId;
|
|
33
|
+
updatedTargetSpaceData: SpaceData | null;
|
|
34
|
+
error?: string; // 可选的错误信息传递
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* 异步 Action Thunk,用于在两个 Space 之间移动内容项的引用。
|
|
39
|
+
* 它会:
|
|
40
|
+
* 1. 从源 Space 的 `contents` 中移除引用 (通过 patch)。
|
|
41
|
+
* 2. 将内容的引用添加到目标 Space 的 `contents` 中 (通过 patch),并根据 targetCategoryId 更新分类。
|
|
42
|
+
* 3. 不直接修改内容实体本身,假设实体数据在移动中保持不变,只改变引用位置和分类。
|
|
43
|
+
* 4. 处理 categoryId 逻辑,使其与 addContentAction 一致(未分类则不存储 categoryId 属性)。
|
|
44
|
+
*/
|
|
45
|
+
export const moveContentAction = async (
|
|
46
|
+
input: MoveContentInput,
|
|
47
|
+
thunkAPI: { dispatch: AppDispatch; getState: () => RootState }
|
|
48
|
+
): Promise<MoveContentResult> => {
|
|
49
|
+
const {
|
|
50
|
+
contentKey,
|
|
51
|
+
sourceSpaceId,
|
|
52
|
+
targetSpaceId,
|
|
53
|
+
targetCategoryId: rawTargetCategoryId,
|
|
54
|
+
} = input;
|
|
55
|
+
const { dispatch, getState } = thunkAPI;
|
|
56
|
+
const state = getState();
|
|
57
|
+
const userId = selectUserId(state);
|
|
58
|
+
const now = Date.now(); // 用于更新时间戳
|
|
59
|
+
|
|
60
|
+
logger.info({ ...input, userId }, "Initiating moveContentAction");
|
|
61
|
+
|
|
62
|
+
// --- 1. 基本验证 ---
|
|
63
|
+
if (!userId) {
|
|
64
|
+
logger.error("User not logged in.");
|
|
65
|
+
throw new Error("用户未登录");
|
|
66
|
+
}
|
|
67
|
+
if (sourceSpaceId === targetSpaceId) {
|
|
68
|
+
logger.error("Source and target space IDs are the same.");
|
|
69
|
+
throw new Error(
|
|
70
|
+
"源空间和目标空间不能相同。如需修改分类,请使用更新分类操作。"
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
if (
|
|
74
|
+
!contentKey ||
|
|
75
|
+
typeof contentKey !== "string" ||
|
|
76
|
+
contentKey.trim() === ""
|
|
77
|
+
) {
|
|
78
|
+
logger.error("Invalid contentKey provided.");
|
|
79
|
+
throw new Error("无效的内容 Key。");
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
let sourceSpaceData: SpaceData | null = null;
|
|
83
|
+
let targetSpaceData: SpaceData | null = null;
|
|
84
|
+
let contentDataFromSource: SpaceContent | null = null; // 从源空间获取内容引用数据
|
|
85
|
+
let finalSourceData: SpaceData | null = null;
|
|
86
|
+
let finalTargetData: SpaceData | null = null;
|
|
87
|
+
let overallError: string | undefined = undefined;
|
|
88
|
+
|
|
89
|
+
try {
|
|
90
|
+
// --- 2. 并行读取源和目标空间数据 ---
|
|
91
|
+
const sourceSpaceKey = createSpaceKey.space(sourceSpaceId);
|
|
92
|
+
const targetSpaceKey = createSpaceKey.space(targetSpaceId);
|
|
93
|
+
|
|
94
|
+
logger.info(
|
|
95
|
+
{ sourceSpaceKey, targetSpaceKey },
|
|
96
|
+
"Reading source and target space data."
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
const [sourceResult, targetResult] = await Promise.allSettled([
|
|
100
|
+
dispatch(read({
|
|
101
|
+
dbKey: sourceSpaceKey
|
|
102
|
+
})).unwrap(),
|
|
103
|
+
dispatch(read({
|
|
104
|
+
dbKey: targetSpaceKey
|
|
105
|
+
})).unwrap(),
|
|
106
|
+
]);
|
|
107
|
+
|
|
108
|
+
// 处理源空间读取结果
|
|
109
|
+
if (sourceResult.status === "rejected" || !sourceResult.value) {
|
|
110
|
+
const reason =
|
|
111
|
+
sourceResult.status === "rejected"
|
|
112
|
+
? sourceResult.reason
|
|
113
|
+
: "Data is null";
|
|
114
|
+
throw new Error(
|
|
115
|
+
`无法加载源空间 (${sourceSpaceId}): ${reason?.message || reason}`
|
|
116
|
+
);
|
|
117
|
+
}
|
|
118
|
+
sourceSpaceData = sourceResult.value as SpaceData;
|
|
119
|
+
|
|
120
|
+
// 处理目标空间读取结果
|
|
121
|
+
if (targetResult.status === "rejected" || !targetResult.value) {
|
|
122
|
+
const reason =
|
|
123
|
+
targetResult.status === "rejected"
|
|
124
|
+
? targetResult.reason
|
|
125
|
+
: "Data is null";
|
|
126
|
+
throw new Error(
|
|
127
|
+
`无法加载目标空间 (${targetSpaceId}): ${reason?.message || reason}`
|
|
128
|
+
);
|
|
129
|
+
}
|
|
130
|
+
targetSpaceData = targetResult.value as SpaceData;
|
|
131
|
+
|
|
132
|
+
// --- 3. 权限检查 ---
|
|
133
|
+
logger.info("Checking permissions for source and target spaces.");
|
|
134
|
+
checkSpaceMembership(sourceSpaceData, userId); // 会在失败时抛出错误
|
|
135
|
+
checkSpaceMembership(targetSpaceData, userId); // 会在失败时抛出错误
|
|
136
|
+
|
|
137
|
+
// --- 4. 检查内容是否存在于源空间 ---
|
|
138
|
+
if (!sourceSpaceData.contents || !sourceSpaceData.contents[contentKey]) {
|
|
139
|
+
logger.error(
|
|
140
|
+
{ contentKey, sourceSpaceId },
|
|
141
|
+
"Content key not found in source space contents."
|
|
142
|
+
);
|
|
143
|
+
throw new Error(
|
|
144
|
+
`内容 (${contentKey}) 不在源空间 (${sourceSpaceId}) 中。`
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
contentDataFromSource = sourceSpaceData.contents[contentKey]; // 获取要移动的内容数据
|
|
148
|
+
|
|
149
|
+
// 可选:检查目标空间是否已存在同名 Key
|
|
150
|
+
if (targetSpaceData.contents && targetSpaceData.contents[contentKey]) {
|
|
151
|
+
logger.warn(
|
|
152
|
+
{ contentKey, targetSpaceId },
|
|
153
|
+
"Content key already exists in target space. Overwriting."
|
|
154
|
+
);
|
|
155
|
+
// 根据产品需求决定是报错还是覆盖,这里选择覆盖
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// --- 5. 确定最终用于目标存储的 categoryId (string | undefined) ---
|
|
159
|
+
let categoryIdForTargetStorage: string | undefined;
|
|
160
|
+
if (
|
|
161
|
+
rawTargetCategoryId &&
|
|
162
|
+
rawTargetCategoryId !== "" &&
|
|
163
|
+
rawTargetCategoryId !== UNCATEGORIZED_ID
|
|
164
|
+
) {
|
|
165
|
+
// 验证目标分类 ID 是否在目标空间中有效
|
|
166
|
+
if (targetSpaceData.categories?.[rawTargetCategoryId]) {
|
|
167
|
+
categoryIdForTargetStorage = rawTargetCategoryId;
|
|
168
|
+
} else {
|
|
169
|
+
logger.warn(
|
|
170
|
+
`Target category ${rawTargetCategoryId} not found in target space ${targetSpaceId}. Content will be uncategorized.`
|
|
171
|
+
);
|
|
172
|
+
categoryIdForTargetStorage = undefined; // 无效则降级
|
|
173
|
+
}
|
|
174
|
+
} else {
|
|
175
|
+
categoryIdForTargetStorage = undefined; // 空、null、undefined 或常量均视为未分类
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// --- 6. 构造添加到目标空间的内容引用对象 ---
|
|
179
|
+
// 继承源引用的属性,并更新 categoryId 和 updatedAt
|
|
180
|
+
const contentReferenceForTarget: SpaceContent = {
|
|
181
|
+
...contentDataFromSource,
|
|
182
|
+
updatedAt: now,
|
|
183
|
+
};
|
|
184
|
+
// 先删除旧的 categoryId (无论是否存在),再根据需要添加新的
|
|
185
|
+
delete (contentReferenceForTarget as Partial<SpaceContent>).categoryId;
|
|
186
|
+
if (categoryIdForTargetStorage !== undefined) {
|
|
187
|
+
contentReferenceForTarget.categoryId = categoryIdForTargetStorage;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
// --- 7. 准备 Patch Changes ---
|
|
191
|
+
const sourcePatchChanges = {
|
|
192
|
+
contents: {
|
|
193
|
+
[contentKey]: null, // 从源移除引用 (null value in patch typically means delete key)
|
|
194
|
+
},
|
|
195
|
+
updatedAt: now,
|
|
196
|
+
};
|
|
197
|
+
const targetPatchChanges = {
|
|
198
|
+
contents: {
|
|
199
|
+
[contentKey]: contentReferenceForTarget, // 向目标添加(或覆盖)引用
|
|
200
|
+
},
|
|
201
|
+
updatedAt: now,
|
|
202
|
+
};
|
|
203
|
+
|
|
204
|
+
// --- 8. 并行执行两个 Patch 更新 ---
|
|
205
|
+
logger.info("Patching source and target space data.");
|
|
206
|
+
await Promise.all([
|
|
207
|
+
dispatch(
|
|
208
|
+
patch({ dbKey: sourceSpaceKey, changes: sourcePatchChanges })
|
|
209
|
+
).unwrap(),
|
|
210
|
+
dispatch(
|
|
211
|
+
patch({ dbKey: targetSpaceKey, changes: targetPatchChanges })
|
|
212
|
+
).unwrap(),
|
|
213
|
+
]);
|
|
214
|
+
logger.info("Successfully patched both source and target spaces.");
|
|
215
|
+
} catch (error: any) {
|
|
216
|
+
logger.error(
|
|
217
|
+
{ error: error.message, stack: error.stack },
|
|
218
|
+
"Error during move content action execution."
|
|
219
|
+
);
|
|
220
|
+
overallError = error.message || "移动内容时发生未知错误";
|
|
221
|
+
// 不再继续,将在 finally 块中尝试读取并返回
|
|
222
|
+
} finally {
|
|
223
|
+
// --- 9. 无论成功与否,都尝试重新读取最终的空间数据 ---
|
|
224
|
+
// (如果中途出错,可能只有一个或两个空间被更新,读取可以反映部分成功的状态)
|
|
225
|
+
logger.info("Attempting to re-read final space data.");
|
|
226
|
+
const sourceSpaceKey = createSpaceKey.space(sourceSpaceId);
|
|
227
|
+
const targetSpaceKey = createSpaceKey.space(targetSpaceId);
|
|
228
|
+
|
|
229
|
+
const [finalSourceResult, finalTargetResult] = await Promise.allSettled([
|
|
230
|
+
dispatch(read({
|
|
231
|
+
dbKey: sourceSpaceKey
|
|
232
|
+
})).unwrap(),
|
|
233
|
+
dispatch(read({
|
|
234
|
+
dbKey: targetSpaceKey
|
|
235
|
+
})).unwrap(),
|
|
236
|
+
]);
|
|
237
|
+
|
|
238
|
+
if (finalSourceResult.status === "fulfilled") {
|
|
239
|
+
finalSourceData = finalSourceResult.value as SpaceData;
|
|
240
|
+
} else {
|
|
241
|
+
logger.error(
|
|
242
|
+
{ sourceSpaceId, reason: finalSourceResult.reason },
|
|
243
|
+
"Failed to re-read final source space data."
|
|
244
|
+
);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
if (finalTargetResult.status === "fulfilled") {
|
|
248
|
+
finalTargetData = finalTargetResult.value as SpaceData;
|
|
249
|
+
} else {
|
|
250
|
+
logger.error(
|
|
251
|
+
{ targetSpaceId, reason: finalTargetResult.reason },
|
|
252
|
+
"Failed to re-read final target space data."
|
|
253
|
+
);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
logger.info(
|
|
257
|
+
{
|
|
258
|
+
hasError: !!overallError,
|
|
259
|
+
sourceReadSuccess: !!finalSourceData,
|
|
260
|
+
targetReadSuccess: !!finalTargetData,
|
|
261
|
+
},
|
|
262
|
+
"Move content action finished."
|
|
263
|
+
);
|
|
264
|
+
|
|
265
|
+
// --- 10. 返回结果 ---
|
|
266
|
+
const result: MoveContentResult = {
|
|
267
|
+
sourceSpaceId,
|
|
268
|
+
updatedSourceSpaceData: finalSourceData,
|
|
269
|
+
targetSpaceId,
|
|
270
|
+
updatedTargetSpaceData: finalTargetData,
|
|
271
|
+
error: overallError, // 如果过程中有错误,则传递错误信息
|
|
272
|
+
};
|
|
273
|
+
|
|
274
|
+
// 如果在主 try 块中捕获到错误,重新抛出,让 Thunk 进入 rejected 状态
|
|
275
|
+
// 否则,返回成功结果(即使最终读取失败,操作本身可能成功)
|
|
276
|
+
if (overallError) {
|
|
277
|
+
// 可以选择性地返回部分成功的数据,或者直接抛出错误
|
|
278
|
+
// throw new Error(overallError); // 这会使 Thunk rejected
|
|
279
|
+
// 或者,像现在这样,在返回对象中包含错误信息,让 reducer 处理 fulfilled 状态
|
|
280
|
+
return result;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
return result;
|
|
284
|
+
}
|
|
285
|
+
};
|