@codemation/host 0.0.1
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 +75 -0
- package/dist/CodemationConfig-XCkSV2dj.d.ts +168 -0
- package/dist/CodemationConsumerConfigLoader-Dmm2TzAA.d.ts +61 -0
- package/dist/CodemationConsumerConfigLoader-scS_RQMy.js +334 -0
- package/dist/CodemationConsumerConfigLoader-scS_RQMy.js.map +1 -0
- package/dist/CodemationFrontendBootstrapRequest-CE6DjOWJ.js +5768 -0
- package/dist/CodemationFrontendBootstrapRequest-CE6DjOWJ.js.map +1 -0
- package/dist/CodemationPluginListMerger-BNmaoXQL.js +49 -0
- package/dist/CodemationPluginListMerger-BNmaoXQL.js.map +1 -0
- package/dist/CodemationPluginListMerger-BRYqEk0y.d.ts +793 -0
- package/dist/CodemationWhitelabelConfig-DgbjgtrR.d.ts +48 -0
- package/dist/ConsoleLogger-ClPU7jtc.js +35 -0
- package/dist/ConsoleLogger-ClPU7jtc.js.map +1 -0
- package/dist/CredentialServices-BKBGe7l3.js +1030 -0
- package/dist/CredentialServices-BKBGe7l3.js.map +1 -0
- package/dist/CredentialServices-DpDpm8mL.d.ts +291 -0
- package/dist/LogLevelPolicy-4cq9z0TI.d.ts +37 -0
- package/dist/PrismaMigrationDeployer-B1E_gYz7.js +8212 -0
- package/dist/PrismaMigrationDeployer-B1E_gYz7.js.map +1 -0
- package/dist/ServerLoggerFactory-BRHxIDS7.js +340 -0
- package/dist/ServerLoggerFactory-BRHxIDS7.js.map +1 -0
- package/dist/WorkflowViewContracts-DCLpTn25.d.ts +47 -0
- package/dist/chunk-7V6ThxGB.js +39 -0
- package/dist/client-Yh7-CQud.d.ts +21995 -0
- package/dist/client.d.ts +12 -0
- package/dist/client.js +15 -0
- package/dist/client.js.map +1 -0
- package/dist/consumer.d.ts +5 -0
- package/dist/consumer.js +7 -0
- package/dist/credentials.d.ts +50 -0
- package/dist/credentials.js +11 -0
- package/dist/credentials.js.map +1 -0
- package/dist/decorate-B-N_5S4p.js +10 -0
- package/dist/decorateParam-BTcc3KNk.js +15 -0
- package/dist/devServerSidecar.d.ts +52 -0
- package/dist/devServerSidecar.js +131 -0
- package/dist/devServerSidecar.js.map +1 -0
- package/dist/index-Bs4F1IsC.d.ts +1044 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +14 -0
- package/dist/nextServer.d.ts +89 -0
- package/dist/nextServer.js +127 -0
- package/dist/nextServer.js.map +1 -0
- package/dist/persistenceServer-K5eqlZm3.d.ts +36 -0
- package/dist/persistenceServer-W9uRw0dJ.js +19 -0
- package/dist/persistenceServer-W9uRw0dJ.js.map +1 -0
- package/dist/persistenceServer.d.ts +6 -0
- package/dist/persistenceServer.js +6 -0
- package/dist/server-BBdsATju.d.ts +132 -0
- package/dist/server-BiHSuA13.js +175 -0
- package/dist/server-BiHSuA13.js.map +1 -0
- package/dist/server.d.ts +9 -0
- package/dist/server.js +13 -0
- package/package.json +152 -0
- package/playwright.config.ts +74 -0
- package/prisma/migrations/20260315063514_init/migration.sql +16 -0
- package/prisma/migrations/20260316090000_workflow_debugger_overlay/migration.sql +9 -0
- package/prisma/migrations/20260317120000_trigger_state_store/migration.sql +3 -0
- package/prisma/migrations/20260317153000_trigger_setup_state/migration.sql +8 -0
- package/prisma/migrations/20260318110000_credentials_v2/migration.sql +49 -0
- package/prisma/migrations/20260319110000_credential_oauth2_material/migration.sql +28 -0
- package/prisma/migrations/20260319200000_codemation_auth_tables/migration.sql +56 -0
- package/prisma/migrations/20260320140000_user_invites_account_status/migration.sql +20 -0
- package/prisma/migrations/20260325120000_workflow_activation/migration.sql +8 -0
- package/prisma/migrations/migration_lock.toml +3 -0
- package/prisma/schema.prisma +179 -0
- package/prisma.config.ts +12 -0
- package/scripts/ensure-prisma-runtime-sourcemaps.mjs +42 -0
- package/scripts/integration-database-global-setup.mjs +30 -0
- package/src/application/ApplicationRequestError.ts +12 -0
- package/src/application/auth/AuthenticatedPrincipal.ts +5 -0
- package/src/application/auth/SessionVerifier.ts +5 -0
- package/src/application/binary/OverlayPinnedBinaryUploadService.ts +119 -0
- package/src/application/binary/RunBinaryAttachmentLookupService.ts +139 -0
- package/src/application/binary/RunStateBinaryStorageKeysCollector.ts +57 -0
- package/src/application/bus/Command.ts +3 -0
- package/src/application/bus/CommandBus.ts +5 -0
- package/src/application/bus/CommandHandler.ts +5 -0
- package/src/application/bus/DomainEvent.ts +1 -0
- package/src/application/bus/DomainEventBus.ts +5 -0
- package/src/application/bus/DomainEventHandler.ts +5 -0
- package/src/application/bus/Query.ts +3 -0
- package/src/application/bus/QueryBus.ts +5 -0
- package/src/application/bus/QueryHandler.ts +5 -0
- package/src/application/commands/AcceptUserInviteCommand.ts +10 -0
- package/src/application/commands/AcceptUserInviteCommandHandler.ts +19 -0
- package/src/application/commands/CopyRunToWorkflowDebuggerCommand.ts +14 -0
- package/src/application/commands/CopyRunToWorkflowDebuggerCommandHandler.ts +56 -0
- package/src/application/commands/CreateCredentialInstanceCommand.ts +9 -0
- package/src/application/commands/CreateCredentialInstanceCommandHandler.ts +28 -0
- package/src/application/commands/CredentialCommandHandlers.ts +10 -0
- package/src/application/commands/DeleteCredentialInstanceCommand.ts +7 -0
- package/src/application/commands/DeleteCredentialInstanceCommandHandler.ts +27 -0
- package/src/application/commands/HandleWebhookInvocationCommand.ts +12 -0
- package/src/application/commands/HandleWebhookInvocationCommandHandler.ts +42 -0
- package/src/application/commands/InviteUserCommand.ts +12 -0
- package/src/application/commands/InviteUserCommandHandler.ts +22 -0
- package/src/application/commands/RegenerateUserInviteCommand.ts +12 -0
- package/src/application/commands/RegenerateUserInviteCommandHandler.ts +24 -0
- package/src/application/commands/ReplaceMutableRunWorkflowSnapshotCommand.ts +12 -0
- package/src/application/commands/ReplaceMutableRunWorkflowSnapshotCommandHandler.ts +47 -0
- package/src/application/commands/ReplaceWorkflowDebuggerOverlayCommand.ts +14 -0
- package/src/application/commands/ReplaceWorkflowDebuggerOverlayCommandHandler.ts +35 -0
- package/src/application/commands/ReplayWorkflowNodeCommand.ts +12 -0
- package/src/application/commands/ReplayWorkflowNodeCommandHandler.ts +164 -0
- package/src/application/commands/SetPinnedNodeInputCommand.ts +13 -0
- package/src/application/commands/SetPinnedNodeInputCommandHandler.ts +50 -0
- package/src/application/commands/SetWorkflowActivationCommand.ts +10 -0
- package/src/application/commands/SetWorkflowActivationCommandHandler.ts +39 -0
- package/src/application/commands/StartWorkflowRunCommand.ts +8 -0
- package/src/application/commands/StartWorkflowRunCommandHandler.ts +286 -0
- package/src/application/commands/TestCredentialInstanceCommand.ts +9 -0
- package/src/application/commands/TestCredentialInstanceCommandHandler.ts +28 -0
- package/src/application/commands/UpdateCredentialInstanceCommand.ts +12 -0
- package/src/application/commands/UpdateCredentialInstanceCommandHandler.ts +28 -0
- package/src/application/commands/UpdateUserAccountStatusCommand.ts +12 -0
- package/src/application/commands/UpdateUserAccountStatusCommandHandler.ts +24 -0
- package/src/application/commands/UploadOverlayPinnedBinaryCommand.ts +16 -0
- package/src/application/commands/UploadOverlayPinnedBinaryCommandHandler.ts +31 -0
- package/src/application/commands/UpsertCredentialBindingCommand.ts +11 -0
- package/src/application/commands/UpsertCredentialBindingCommandHandler.ts +28 -0
- package/src/application/commands/UpsertLocalBootstrapUserCommand.ts +12 -0
- package/src/application/commands/UpsertLocalBootstrapUserCommandHandler.ts +24 -0
- package/src/application/commands/UserAccountCommandHandlers.ts +10 -0
- package/src/application/contracts/CredentialContractsRegistry.ts +88 -0
- package/src/application/contracts/RunContracts.ts +41 -0
- package/src/application/contracts/WorkflowDebuggerContracts.ts +12 -0
- package/src/application/contracts/WorkflowViewContracts.ts +40 -0
- package/src/application/contracts/WorkflowWebsocketMessage.ts +8 -0
- package/src/application/contracts/userDirectoryContracts.types.ts +60 -0
- package/src/application/dev/BootRuntimeSnapshotHolder.ts +19 -0
- package/src/application/dev/BootRuntimeSummary.types.ts +11 -0
- package/src/application/dev/DevBootstrapSummaryAssembler.ts +84 -0
- package/src/application/dev/DevBootstrapSummaryJson.types.ts +9 -0
- package/src/application/logging/LogFilter.ts +7 -0
- package/src/application/logging/Logger.ts +10 -0
- package/src/application/mapping/DataMapper.ts +3 -0
- package/src/application/mapping/WorkflowDefinitionMapper.ts +171 -0
- package/src/application/mapping/WorkflowPolicyUiPresentationFactory.ts +39 -0
- package/src/application/queries/CredentialQueryHandlers.ts +12 -0
- package/src/application/queries/GetCredentialFieldEnvStatusQuery.ts +5 -0
- package/src/application/queries/GetCredentialFieldEnvStatusQueryHandler.ts +52 -0
- package/src/application/queries/GetCredentialInstanceQuery.ts +9 -0
- package/src/application/queries/GetCredentialInstanceQueryHandler.ts +27 -0
- package/src/application/queries/GetCredentialInstanceWithSecretsQuery.ts +9 -0
- package/src/application/queries/GetCredentialInstanceWithSecretsQueryHandler.ts +27 -0
- package/src/application/queries/GetRunBinaryAttachmentQuery.ts +11 -0
- package/src/application/queries/GetRunBinaryAttachmentQueryHandler.ts +23 -0
- package/src/application/queries/GetRunStateQuery.ts +8 -0
- package/src/application/queries/GetRunStateQueryHandler.ts +21 -0
- package/src/application/queries/GetWorkflowCredentialHealthQuery.ts +9 -0
- package/src/application/queries/GetWorkflowCredentialHealthQueryHandler.ts +27 -0
- package/src/application/queries/GetWorkflowDebuggerOverlayQuery.ts +8 -0
- package/src/application/queries/GetWorkflowDebuggerOverlayQueryHandler.ts +28 -0
- package/src/application/queries/GetWorkflowDetailQuery.ts +8 -0
- package/src/application/queries/GetWorkflowDetailQueryHandler.ts +24 -0
- package/src/application/queries/GetWorkflowOverlayBinaryAttachmentQuery.ts +11 -0
- package/src/application/queries/GetWorkflowOverlayBinaryAttachmentQueryHandler.ts +23 -0
- package/src/application/queries/GetWorkflowSummariesQuery.ts +4 -0
- package/src/application/queries/GetWorkflowSummariesQueryHandler.ts +23 -0
- package/src/application/queries/ListCredentialInstancesQuery.ts +5 -0
- package/src/application/queries/ListCredentialInstancesQueryHandler.ts +27 -0
- package/src/application/queries/ListCredentialTypesQuery.ts +5 -0
- package/src/application/queries/ListCredentialTypesQueryHandler.ts +28 -0
- package/src/application/queries/ListUserAccountsQuery.ts +5 -0
- package/src/application/queries/ListUserAccountsQueryHandler.ts +22 -0
- package/src/application/queries/ListWorkflowRunsQuery.ts +8 -0
- package/src/application/queries/ListWorkflowRunsQueryHandler.ts +21 -0
- package/src/application/queries/UserAccountQueryHandlers.ts +4 -0
- package/src/application/queries/VerifyUserInviteQuery.ts +9 -0
- package/src/application/queries/VerifyUserInviteQueryHandler.ts +21 -0
- package/src/application/runs/WorkflowRunRetentionPruneScheduler.ts +98 -0
- package/src/application/websocket/WorkflowRunEventWebsocketRelay.ts +36 -0
- package/src/application/websocket/WorkflowWebsocketPublisher.ts +5 -0
- package/src/application/workflows/WebhookEndpointPathValidator.ts +35 -0
- package/src/application/workflows/WorkflowDebuggerOverlayStateFactory.ts +122 -0
- package/src/applicationTokens.ts +72 -0
- package/src/bootstrap/CodemationBootstrapRequest.ts +27 -0
- package/src/bootstrap/CodemationContainerFactory.ts +310 -0
- package/src/bootstrap/CodemationContainerRegistration.ts +23 -0
- package/src/bootstrap/CodemationContainerRegistrationRegistrar.ts +42 -0
- package/src/bootstrap/CodemationFrontendBootstrapRequest.ts +16 -0
- package/src/bootstrap/CodemationWorkerBootstrapRequest.ts +19 -0
- package/src/bootstrap/PreparedCodemationRuntime.ts +37 -0
- package/src/bootstrap/PreparedCodemationRuntimeFactory.ts +308 -0
- package/src/bootstrap/boot/CliRuntimeBootService.ts +27 -0
- package/src/bootstrap/boot/FrontendRuntimeBootService.ts +86 -0
- package/src/bootstrap/boot/WorkerRuntimeBootService.ts +64 -0
- package/src/bootstrap/runtime/AppConfigFactory.ts +57 -0
- package/src/bootstrap/runtime/ResolvedImplementationSelectionFactory.ts +118 -0
- package/src/client.ts +3 -0
- package/src/codemationApplication.ts +311 -0
- package/src/consumer.ts +4 -0
- package/src/credentials.ts +24 -0
- package/src/devServerSidecar.ts +10 -0
- package/src/domain/credentials/CredentialBindingService.ts +139 -0
- package/src/domain/credentials/CredentialFieldEnvOverlayService.ts +60 -0
- package/src/domain/credentials/CredentialInstanceService.ts +391 -0
- package/src/domain/credentials/CredentialMaterialResolver.ts +55 -0
- package/src/domain/credentials/CredentialRuntimeMaterialService.ts +39 -0
- package/src/domain/credentials/CredentialSecretCipher.ts +70 -0
- package/src/domain/credentials/CredentialServices.ts +145 -0
- package/src/domain/credentials/CredentialSessionServiceImpl.ts +119 -0
- package/src/domain/credentials/CredentialTestService.ts +73 -0
- package/src/domain/credentials/CredentialTypeRegistryImpl.ts +29 -0
- package/src/domain/credentials/OAuth2ConnectServiceFactory.ts +396 -0
- package/src/domain/credentials/OAuth2ProviderRegistry.ts +75 -0
- package/src/domain/credentials/WorkflowCredentialNodeResolver.ts +246 -0
- package/src/domain/runs/WorkflowRunRepository.ts +11 -0
- package/src/domain/users/UserAccountServiceRegistry.ts +315 -0
- package/src/domain/users/userLoginMethodLabels.types.ts +29 -0
- package/src/domain/workflows/WorkflowActivationPreflight.ts +32 -0
- package/src/domain/workflows/WorkflowActivationPreflightRules.ts +77 -0
- package/src/domain/workflows/WorkflowActivationRepository.ts +9 -0
- package/src/domain/workflows/WorkflowDebuggerOverlayRepository.ts +7 -0
- package/src/domain/workflows/WorkflowDebuggerOverlayState.ts +8 -0
- package/src/domain/workflows/WorkflowDefinitionRepository.ts +11 -0
- package/src/index.ts +58 -0
- package/src/infrastructure/auth/AuthJsSessionVerifier.ts +26 -0
- package/src/infrastructure/auth/DevelopmentSessionBypassVerifier.ts +12 -0
- package/src/infrastructure/binary/BinaryBodyNodeReadableFactory.ts +22 -0
- package/src/infrastructure/binary/CountingSha256Transform.ts +26 -0
- package/src/infrastructure/binary/LocalFilesystemBinaryStorageRegistry.ts +86 -0
- package/src/infrastructure/config/CodemationPluginRegistrar.ts +44 -0
- package/src/infrastructure/credentials/FrameworkBuiltinCredentialTypesRegistrar.ts +21 -0
- package/src/infrastructure/credentials/OpenAiApiKeyCredentialHealthTester.ts +89 -0
- package/src/infrastructure/credentials/OpenAiApiKeyCredentialShapes.types.ts +15 -0
- package/src/infrastructure/credentials/OpenAiApiKeyCredentialTypeFactory.ts +47 -0
- package/src/infrastructure/di/HandlesCommandRegistry.ts +24 -0
- package/src/infrastructure/di/HandlesDomainEventRegistry.ts +24 -0
- package/src/infrastructure/di/HandlesQueryRegistry.ts +24 -0
- package/src/infrastructure/di/InMemoryCommandBus.ts +47 -0
- package/src/infrastructure/di/InMemoryDomainEventBus.ts +47 -0
- package/src/infrastructure/di/InMemoryQueryBus.ts +45 -0
- package/src/infrastructure/ids/CodemationIdFactory.ts +12 -0
- package/src/infrastructure/logging/BrowserLogger.ts +1 -0
- package/src/infrastructure/logging/BrowserLoggerFactory.ts +14 -0
- package/src/infrastructure/logging/ConsoleLogger.ts +41 -0
- package/src/infrastructure/logging/FilteringLogger.ts +38 -0
- package/src/infrastructure/logging/LogLevelPolicy.ts +148 -0
- package/src/infrastructure/logging/LogLevelPolicyFactory.ts +16 -0
- package/src/infrastructure/logging/PerformanceLogPolicy.ts +10 -0
- package/src/infrastructure/logging/PerformanceLogPolicyFactory.ts +14 -0
- package/src/infrastructure/logging/ServerLogger.ts +1 -0
- package/src/infrastructure/logging/ServerLoggerFactory.ts +28 -0
- package/src/infrastructure/persistence/CodemationPostgresPrismaClientFactory.ts +9 -0
- package/src/infrastructure/persistence/CredentialPersistenceStore.ts +139 -0
- package/src/infrastructure/persistence/DatabasePersistenceResolver.ts +91 -0
- package/src/infrastructure/persistence/InMemoryTriggerSetupStateRepository.ts +23 -0
- package/src/infrastructure/persistence/InMemoryWorkflowActivationRepository.ts +18 -0
- package/src/infrastructure/persistence/InMemoryWorkflowDebuggerOverlayRepository.ts +16 -0
- package/src/infrastructure/persistence/InMemoryWorkflowRunRepository.ts +94 -0
- package/src/infrastructure/persistence/PrismaClientFactory.ts +26 -0
- package/src/infrastructure/persistence/PrismaCredentialStore.ts +368 -0
- package/src/infrastructure/persistence/PrismaMigrationDeployer.ts +184 -0
- package/src/infrastructure/persistence/PrismaTriggerSetupStateRepository.ts +68 -0
- package/src/infrastructure/persistence/PrismaWorkflowActivationRepository.ts +36 -0
- package/src/infrastructure/persistence/PrismaWorkflowDebuggerOverlayRepository.ts +65 -0
- package/src/infrastructure/persistence/PrismaWorkflowRunRepository.ts +243 -0
- package/src/infrastructure/persistence/RuntimeWorkflowActivationPolicy.ts +27 -0
- package/src/infrastructure/persistence/SchedulerPersistenceCompatibilityValidator.ts +20 -0
- package/src/infrastructure/persistence/WorkflowDefinitionRepositoryAdapter.ts +31 -0
- package/src/infrastructure/persistence/WorkflowRunRepository.ts +46 -0
- package/src/infrastructure/persistence/generated/prisma/client.d.ts +1 -0
- package/src/infrastructure/persistence/generated/prisma/default.d.ts +1 -0
- package/src/infrastructure/persistence/generated/prisma/edge.d.ts +1 -0
- package/src/infrastructure/persistence/generated/prisma/index.d.ts +4766 -0
- package/src/infrastructure/persistence/generated/prisma/package.json +144 -0
- package/src/infrastructure/persistence/generated/prisma/query_compiler_fast_bg.wasm +0 -0
- package/src/infrastructure/persistence/generated/prisma/runtime/client.d.ts +3358 -0
- package/src/infrastructure/persistence/generated/prisma/runtime/index-browser.d.ts +90 -0
- package/src/infrastructure/persistence/generated/prisma/schema.prisma +35 -0
- package/src/infrastructure/persistence/generated/prisma/wasm-edge-light-loader.mjs +5 -0
- package/src/infrastructure/persistence/generated/prisma/wasm-worker-loader.mjs +5 -0
- package/src/infrastructure/persistence/generated/prisma-client/client.d.ts +1 -0
- package/src/infrastructure/persistence/generated/prisma-client/client.js +5 -0
- package/src/infrastructure/persistence/generated/prisma-client/default.d.ts +1 -0
- package/src/infrastructure/persistence/generated/prisma-client/default.js +5 -0
- package/src/infrastructure/persistence/generated/prisma-client/edge.d.ts +1 -0
- package/src/infrastructure/persistence/generated/prisma-client/edge.js +299 -0
- package/src/infrastructure/persistence/generated/prisma-client/index-browser.js +325 -0
- package/src/infrastructure/persistence/generated/prisma-client/index.d.ts +21623 -0
- package/src/infrastructure/persistence/generated/prisma-client/index.js +299 -0
- package/src/infrastructure/persistence/generated/prisma-client/package.json +144 -0
- package/src/infrastructure/persistence/generated/prisma-client/query_compiler_fast_bg.js +2 -0
- package/src/infrastructure/persistence/generated/prisma-client/query_compiler_fast_bg.wasm +0 -0
- package/src/infrastructure/persistence/generated/prisma-client/query_compiler_fast_bg.wasm-base64.js +2 -0
- package/src/infrastructure/persistence/generated/prisma-client/runtime/client.d.ts +3358 -0
- package/src/infrastructure/persistence/generated/prisma-client/runtime/client.js +86 -0
- package/src/infrastructure/persistence/generated/prisma-client/runtime/client.js.map +1 -0
- package/src/infrastructure/persistence/generated/prisma-client/runtime/index-browser.d.ts +90 -0
- package/src/infrastructure/persistence/generated/prisma-client/runtime/index-browser.js +6 -0
- package/src/infrastructure/persistence/generated/prisma-client/runtime/index-browser.js.map +1 -0
- package/src/infrastructure/persistence/generated/prisma-client/runtime/wasm-compiler-edge.js +76 -0
- package/src/infrastructure/persistence/generated/prisma-client/runtime/wasm-compiler-edge.js.map +1 -0
- package/src/infrastructure/persistence/generated/prisma-client/schema.prisma +179 -0
- package/src/infrastructure/persistence/generated/prisma-client/wasm-edge-light-loader.mjs +5 -0
- package/src/infrastructure/persistence/generated/prisma-client/wasm-worker-loader.mjs +5 -0
- package/src/infrastructure/runtime/LiveWorkflowRepository.ts +14 -0
- package/src/infrastructure/runtime/WorkerRuntimeScheduler.ts +35 -0
- package/src/infrastructure/server/http/ServerHttpRouteParams.ts +1 -0
- package/src/infrastructure/webhooks/RequestToWebhookItemMapper.ts +128 -0
- package/src/nextServer.ts +31 -0
- package/src/persistenceServer.ts +5 -0
- package/src/presentation/config/AppConfig.ts +25 -0
- package/src/presentation/config/CodemationAppContext.ts +19 -0
- package/src/presentation/config/CodemationApplicationFacade.ts +5 -0
- package/src/presentation/config/CodemationAuthConfig.ts +31 -0
- package/src/presentation/config/CodemationClassToken.ts +3 -0
- package/src/presentation/config/CodemationConfig.ts +86 -0
- package/src/presentation/config/CodemationConfigNormalizer.ts +179 -0
- package/src/presentation/config/CodemationLogConfig.ts +22 -0
- package/src/presentation/config/CodemationPackageManifest.ts +9 -0
- package/src/presentation/config/CodemationPlugin.ts +20 -0
- package/src/presentation/config/CodemationPluginListMerger.ts +46 -0
- package/src/presentation/config/CodemationWhitelabelConfig.ts +9 -0
- package/src/presentation/config/CodemationWorkflowDiscovery.ts +3 -0
- package/src/presentation/http/ApiPaths.ts +165 -0
- package/src/presentation/http/CodemationServerGatewayFactory.ts +120 -0
- package/src/presentation/http/HttpRequestJsonBodyReader.ts +12 -0
- package/src/presentation/http/ServerHttpErrorResponseFactory.ts +33 -0
- package/src/presentation/http/ServerHttpRouteParams.ts +1 -0
- package/src/presentation/http/hono/CodemationHonoApiAppFactory.ts +64 -0
- package/src/presentation/http/hono/HonoApiRouteRegistrar.ts +5 -0
- package/src/presentation/http/hono/HonoHttpAnonymousRoutePolicyRegistry.ts +27 -0
- package/src/presentation/http/hono/registrars/BinaryHonoApiRouteRegistrar.ts +21 -0
- package/src/presentation/http/hono/registrars/CredentialHonoApiRouteRegistrar.ts +34 -0
- package/src/presentation/http/hono/registrars/DevHonoApiRouteRegistrar.ts +17 -0
- package/src/presentation/http/hono/registrars/OAuth2HonoApiRouteRegistrar.ts +18 -0
- package/src/presentation/http/hono/registrars/RunHonoApiRouteRegistrar.ts +31 -0
- package/src/presentation/http/hono/registrars/UserHonoApiRouteRegistrar.ts +24 -0
- package/src/presentation/http/hono/registrars/WebhookHonoApiRouteRegistrar.ts +23 -0
- package/src/presentation/http/hono/registrars/WhitelabelHonoApiRouteRegistrar.ts +18 -0
- package/src/presentation/http/hono/registrars/WorkflowHonoApiRouteRegistrar.ts +33 -0
- package/src/presentation/http/routeHandlers/BinaryHttpRouteHandlerFactory.ts +101 -0
- package/src/presentation/http/routeHandlers/CredentialHttpRouteHandler.ts +129 -0
- package/src/presentation/http/routeHandlers/DevBootstrapSummaryHttpRouteHandler.ts +21 -0
- package/src/presentation/http/routeHandlers/OAuth2HttpRouteHandlerFactory.ts +129 -0
- package/src/presentation/http/routeHandlers/RunHttpRouteHandler.ts +82 -0
- package/src/presentation/http/routeHandlers/UserHttpRouteHandlerFactory.ts +109 -0
- package/src/presentation/http/routeHandlers/WebhookHttpRouteHandler.ts +42 -0
- package/src/presentation/http/routeHandlers/WhitelabelLogoHttpRouteHandler.ts +96 -0
- package/src/presentation/http/routeHandlers/WorkflowHttpRouteHandler.ts +104 -0
- package/src/presentation/server/CodemationConsumerAppResolver.ts +82 -0
- package/src/presentation/server/CodemationConsumerConfigExportsResolver.ts +33 -0
- package/src/presentation/server/CodemationConsumerConfigLoader.ts +270 -0
- package/src/presentation/server/CodemationPluginDiscovery.ts +151 -0
- package/src/presentation/server/CodemationTsyringeParamInfoReader.ts +26 -0
- package/src/presentation/server/CodemationTsyringeTypeInfoRegistrar.ts +121 -0
- package/src/presentation/server/DevelopmentRuntimeRouteGuard.ts +59 -0
- package/src/presentation/server/DiscoveredWorkflowsEmptyMessageFactory.ts +11 -0
- package/src/presentation/server/WorkflowDefinitionExportsResolver.ts +24 -0
- package/src/presentation/server/WorkflowDiscoveryPathSegmentsComputer.ts +53 -0
- package/src/presentation/server/WorkflowModulePathFinder.ts +47 -0
- package/src/presentation/websocket/WorkflowWebsocketServer.ts +169 -0
- package/src/server.ts +14 -0
- package/tsconfig.json +10 -0
- package/vitest.shared.ts +45 -0
|
@@ -0,0 +1,391 @@
|
|
|
1
|
+
import { randomUUID } from "node:crypto";
|
|
2
|
+
|
|
3
|
+
import type {
|
|
4
|
+
CredentialFieldSchema,
|
|
5
|
+
CredentialInstanceId,
|
|
6
|
+
CredentialMaterialSourceKind,
|
|
7
|
+
CredentialTypeId,
|
|
8
|
+
} from "@codemation/core";
|
|
9
|
+
|
|
10
|
+
import { CoreTokens, inject, injectable } from "@codemation/core";
|
|
11
|
+
|
|
12
|
+
import { ApplicationRequestError } from "../../application/ApplicationRequestError";
|
|
13
|
+
|
|
14
|
+
import type {
|
|
15
|
+
CreateCredentialInstanceRequest,
|
|
16
|
+
CredentialInstanceDto,
|
|
17
|
+
CredentialInstanceWithSecretsDto,
|
|
18
|
+
CredentialOAuth2ConnectionDto,
|
|
19
|
+
UpdateCredentialInstanceRequest,
|
|
20
|
+
} from "../../application/contracts/CredentialContractsRegistry";
|
|
21
|
+
|
|
22
|
+
import { ApplicationTokens } from "../../applicationTokens";
|
|
23
|
+
|
|
24
|
+
import { CredentialFieldEnvOverlayService } from "./CredentialFieldEnvOverlayService";
|
|
25
|
+
import { CredentialMaterialResolver } from "./CredentialMaterialResolver";
|
|
26
|
+
import { CredentialSecretCipher } from "./CredentialSecretCipher";
|
|
27
|
+
import type {
|
|
28
|
+
CredentialInstanceRecord,
|
|
29
|
+
CredentialSecretMaterialRecord,
|
|
30
|
+
CredentialSecretRef,
|
|
31
|
+
CredentialStore,
|
|
32
|
+
CredentialTestRecord,
|
|
33
|
+
AnyCredentialType,
|
|
34
|
+
JsonRecord,
|
|
35
|
+
MutableCredentialSessionService,
|
|
36
|
+
} from "./CredentialServices";
|
|
37
|
+
import { CredentialTypeRegistryImpl } from "./CredentialServices";
|
|
38
|
+
|
|
39
|
+
@injectable()
|
|
40
|
+
export class CredentialInstanceService {
|
|
41
|
+
constructor(
|
|
42
|
+
@inject(ApplicationTokens.CredentialStore)
|
|
43
|
+
private readonly credentialStore: CredentialStore,
|
|
44
|
+
@inject(CredentialTypeRegistryImpl)
|
|
45
|
+
private readonly credentialTypeRegistry: CredentialTypeRegistryImpl,
|
|
46
|
+
@inject(CredentialSecretCipher)
|
|
47
|
+
private readonly credentialSecretCipher: CredentialSecretCipher,
|
|
48
|
+
@inject(CredentialFieldEnvOverlayService)
|
|
49
|
+
private readonly credentialFieldEnvOverlayService: CredentialFieldEnvOverlayService,
|
|
50
|
+
@inject(CredentialMaterialResolver)
|
|
51
|
+
private readonly credentialMaterialResolver: CredentialMaterialResolver,
|
|
52
|
+
@inject(CoreTokens.CredentialSessionService)
|
|
53
|
+
private readonly credentialSessionService: MutableCredentialSessionService,
|
|
54
|
+
) {}
|
|
55
|
+
|
|
56
|
+
async listInstances(): Promise<ReadonlyArray<CredentialInstanceDto>> {
|
|
57
|
+
const instances = await this.credentialStore.listInstances();
|
|
58
|
+
const latestTestResults = await this.credentialStore.getLatestTestResults(
|
|
59
|
+
instances.map((instance) => instance.instanceId),
|
|
60
|
+
);
|
|
61
|
+
return await Promise.all(
|
|
62
|
+
instances.map(async (instance) => await this.toDto(instance, latestTestResults.get(instance.instanceId))),
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
async getInstance(instanceId: CredentialInstanceId): Promise<CredentialInstanceDto | undefined> {
|
|
67
|
+
const instance = await this.credentialStore.getInstance(instanceId);
|
|
68
|
+
if (!instance) {
|
|
69
|
+
return undefined;
|
|
70
|
+
}
|
|
71
|
+
const latestTestResult = await this.credentialStore.getLatestTestResult(instanceId);
|
|
72
|
+
return await this.toDto(instance, latestTestResult);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
async getInstanceWithSecrets(
|
|
76
|
+
instanceId: CredentialInstanceId,
|
|
77
|
+
): Promise<CredentialInstanceWithSecretsDto | undefined> {
|
|
78
|
+
const instance = await this.credentialStore.getInstance(instanceId);
|
|
79
|
+
if (!instance) {
|
|
80
|
+
return undefined;
|
|
81
|
+
}
|
|
82
|
+
const latestTestResult = await this.credentialStore.getLatestTestResult(instanceId);
|
|
83
|
+
const base = await this.toDto(instance, latestTestResult);
|
|
84
|
+
try {
|
|
85
|
+
const material = await this.credentialMaterialResolver.resolveMaterial(instance);
|
|
86
|
+
const secretConfig = Object.fromEntries(Object.entries(material).map(([k, v]) => [k, String(v ?? "")])) as Record<
|
|
87
|
+
string,
|
|
88
|
+
string
|
|
89
|
+
>;
|
|
90
|
+
const envSecretRefs =
|
|
91
|
+
instance.secretRef.kind === "env" ? (instance.secretRef.envByField as Record<string, string>) : undefined;
|
|
92
|
+
return { ...base, secretConfig, envSecretRefs };
|
|
93
|
+
} catch {
|
|
94
|
+
return base;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
async create(request: CreateCredentialInstanceRequest): Promise<CredentialInstanceDto> {
|
|
99
|
+
const credentialType = this.requireCredentialType(request.typeId);
|
|
100
|
+
const publicFields = credentialType.definition.publicFields ?? [];
|
|
101
|
+
const secretFields = credentialType.definition.secretFields ?? [];
|
|
102
|
+
this.validateRequestFields({
|
|
103
|
+
displayName: request.displayName,
|
|
104
|
+
publicFields,
|
|
105
|
+
publicConfig: request.publicConfig ?? {},
|
|
106
|
+
secretFields,
|
|
107
|
+
sourceKind: request.sourceKind,
|
|
108
|
+
secretConfig: request.secretConfig ?? {},
|
|
109
|
+
envSecretRefs: request.envSecretRefs ?? {},
|
|
110
|
+
});
|
|
111
|
+
const timestamp = new Date().toISOString();
|
|
112
|
+
const strippedPublic = this.stripEnvManagedFieldValues(publicFields, request.publicConfig ?? {});
|
|
113
|
+
const strippedSecretForRef = this.stripEnvManagedFieldValues(secretFields, request.secretConfig ?? {});
|
|
114
|
+
const instance: CredentialInstanceRecord = {
|
|
115
|
+
instanceId: randomUUID(),
|
|
116
|
+
typeId: request.typeId,
|
|
117
|
+
displayName: request.displayName.trim(),
|
|
118
|
+
sourceKind: request.sourceKind,
|
|
119
|
+
publicConfig: Object.freeze({ ...strippedPublic }),
|
|
120
|
+
secretRef: this.createSecretRef(request.sourceKind, strippedSecretForRef, request.envSecretRefs ?? {}),
|
|
121
|
+
tags: Object.freeze([...(request.tags ?? [])]),
|
|
122
|
+
setupStatus: credentialType.definition.auth?.kind === "oauth2" ? "draft" : "ready",
|
|
123
|
+
createdAt: timestamp,
|
|
124
|
+
updatedAt: timestamp,
|
|
125
|
+
};
|
|
126
|
+
await this.credentialStore.saveInstance({
|
|
127
|
+
instance,
|
|
128
|
+
secretMaterial: this.createSecretMaterial(instance, strippedSecretForRef, timestamp),
|
|
129
|
+
});
|
|
130
|
+
this.credentialSessionService.evictInstance(instance.instanceId);
|
|
131
|
+
return this.toDto(instance, undefined);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
async update(
|
|
135
|
+
instanceId: CredentialInstanceId,
|
|
136
|
+
request: UpdateCredentialInstanceRequest,
|
|
137
|
+
): Promise<CredentialInstanceDto> {
|
|
138
|
+
const existing = await this.requireInstance(instanceId);
|
|
139
|
+
const credentialType = this.requireCredentialType(existing.typeId);
|
|
140
|
+
const mergedPublicRaw = { ...(request.publicConfig ?? existing.publicConfig) };
|
|
141
|
+
const updatedAt = new Date().toISOString();
|
|
142
|
+
const nextSecretConfig = request.secretConfig;
|
|
143
|
+
const nextEnvSecretRefs = request.envSecretRefs;
|
|
144
|
+
const secretFields = credentialType.definition.secretFields ?? [];
|
|
145
|
+
this.validateRequestFields({
|
|
146
|
+
displayName: request.displayName ?? existing.displayName,
|
|
147
|
+
publicFields: credentialType.definition.publicFields ?? [],
|
|
148
|
+
publicConfig: mergedPublicRaw,
|
|
149
|
+
secretFields,
|
|
150
|
+
sourceKind: existing.sourceKind,
|
|
151
|
+
secretConfig: nextSecretConfig ?? {},
|
|
152
|
+
envSecretRefs: nextEnvSecretRefs ?? {},
|
|
153
|
+
allowSecretOmission: true,
|
|
154
|
+
});
|
|
155
|
+
const publicConfig = Object.freeze({
|
|
156
|
+
...this.stripEnvManagedFieldValues(credentialType.definition.publicFields ?? [], mergedPublicRaw),
|
|
157
|
+
});
|
|
158
|
+
const mergedSecretForRef =
|
|
159
|
+
nextSecretConfig !== undefined ? this.stripEnvManagedFieldValues(secretFields, nextSecretConfig) : undefined;
|
|
160
|
+
const instance: CredentialInstanceRecord = {
|
|
161
|
+
...existing,
|
|
162
|
+
displayName: request.displayName?.trim() || existing.displayName,
|
|
163
|
+
publicConfig,
|
|
164
|
+
tags: Object.freeze([...(request.tags ?? existing.tags)]),
|
|
165
|
+
setupStatus: request.setupStatus ?? existing.setupStatus,
|
|
166
|
+
secretRef:
|
|
167
|
+
nextSecretConfig || nextEnvSecretRefs
|
|
168
|
+
? this.createSecretRef(existing.sourceKind, mergedSecretForRef ?? {}, nextEnvSecretRefs ?? {})
|
|
169
|
+
: existing.secretRef,
|
|
170
|
+
updatedAt,
|
|
171
|
+
};
|
|
172
|
+
await this.credentialStore.saveInstance({
|
|
173
|
+
instance,
|
|
174
|
+
secretMaterial:
|
|
175
|
+
nextSecretConfig !== undefined && mergedSecretForRef !== undefined
|
|
176
|
+
? this.createSecretMaterial(instance, mergedSecretForRef, updatedAt)
|
|
177
|
+
: undefined,
|
|
178
|
+
});
|
|
179
|
+
this.credentialSessionService.evictInstance(instance.instanceId);
|
|
180
|
+
return this.toDto(instance, await this.credentialStore.getLatestTestResult(instance.instanceId));
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
async delete(instanceId: CredentialInstanceId): Promise<void> {
|
|
184
|
+
await this.credentialStore.deleteInstance(instanceId);
|
|
185
|
+
this.credentialSessionService.evictInstance(instanceId);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
async disconnectOAuth2(instanceId: CredentialInstanceId): Promise<CredentialInstanceDto> {
|
|
189
|
+
const instance = await this.requireInstance(instanceId);
|
|
190
|
+
const credentialType = this.requireCredentialType(instance.typeId);
|
|
191
|
+
if (credentialType.definition.auth?.kind !== "oauth2") {
|
|
192
|
+
throw new ApplicationRequestError(400, `Credential instance ${instanceId} does not use OAuth2.`);
|
|
193
|
+
}
|
|
194
|
+
const updatedInstance: CredentialInstanceRecord = {
|
|
195
|
+
...instance,
|
|
196
|
+
setupStatus: "draft",
|
|
197
|
+
updatedAt: new Date().toISOString(),
|
|
198
|
+
};
|
|
199
|
+
await this.credentialStore.saveInstance({
|
|
200
|
+
instance: updatedInstance,
|
|
201
|
+
});
|
|
202
|
+
await this.credentialStore.deleteOAuth2Material(instanceId);
|
|
203
|
+
this.credentialSessionService.evictInstance(instanceId);
|
|
204
|
+
return await this.toDto(updatedInstance, await this.credentialStore.getLatestTestResult(instanceId));
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
async requireInstance(instanceId: CredentialInstanceId): Promise<CredentialInstanceRecord> {
|
|
208
|
+
const instance = await this.credentialStore.getInstance(instanceId);
|
|
209
|
+
if (!instance) {
|
|
210
|
+
throw new ApplicationRequestError(404, `Unknown credential instance: ${instanceId}`);
|
|
211
|
+
}
|
|
212
|
+
return instance;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
private createSecretRef(
|
|
216
|
+
sourceKind: CredentialMaterialSourceKind,
|
|
217
|
+
secretConfig: JsonRecord,
|
|
218
|
+
envSecretRefs: Readonly<Record<string, string>>,
|
|
219
|
+
): CredentialSecretRef {
|
|
220
|
+
if (sourceKind === "db") {
|
|
221
|
+
return { kind: "db" };
|
|
222
|
+
}
|
|
223
|
+
if (sourceKind === "env") {
|
|
224
|
+
return {
|
|
225
|
+
kind: "env",
|
|
226
|
+
envByField: Object.freeze({ ...envSecretRefs }),
|
|
227
|
+
};
|
|
228
|
+
}
|
|
229
|
+
return {
|
|
230
|
+
kind: "code",
|
|
231
|
+
value: Object.freeze({ ...secretConfig }),
|
|
232
|
+
};
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
private createSecretMaterial(
|
|
236
|
+
instance: CredentialInstanceRecord,
|
|
237
|
+
secretConfig: JsonRecord,
|
|
238
|
+
updatedAt: string,
|
|
239
|
+
): CredentialSecretMaterialRecord | undefined {
|
|
240
|
+
if (instance.sourceKind !== "db") {
|
|
241
|
+
return undefined;
|
|
242
|
+
}
|
|
243
|
+
const encrypted = this.credentialSecretCipher.encrypt(secretConfig);
|
|
244
|
+
return {
|
|
245
|
+
instanceId: instance.instanceId,
|
|
246
|
+
encryptedJson: encrypted.encryptedJson,
|
|
247
|
+
encryptionKeyId: encrypted.encryptionKeyId,
|
|
248
|
+
schemaVersion: encrypted.schemaVersion,
|
|
249
|
+
updatedAt,
|
|
250
|
+
};
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
private validateRequestFields(
|
|
254
|
+
args: Readonly<{
|
|
255
|
+
displayName: string;
|
|
256
|
+
publicFields: ReadonlyArray<CredentialFieldSchema>;
|
|
257
|
+
publicConfig: JsonRecord;
|
|
258
|
+
secretFields: ReadonlyArray<CredentialFieldSchema>;
|
|
259
|
+
sourceKind: CredentialMaterialSourceKind;
|
|
260
|
+
secretConfig: JsonRecord;
|
|
261
|
+
envSecretRefs: Readonly<Record<string, string>>;
|
|
262
|
+
allowSecretOmission?: boolean;
|
|
263
|
+
}>,
|
|
264
|
+
): void {
|
|
265
|
+
if (!args.displayName || args.displayName.trim().length === 0) {
|
|
266
|
+
throw new ApplicationRequestError(400, "Credential displayName is required.");
|
|
267
|
+
}
|
|
268
|
+
this.assertRequiredFields("publicConfig", args.publicFields, args.publicConfig);
|
|
269
|
+
if (args.sourceKind === "db") {
|
|
270
|
+
if (!args.allowSecretOmission || Object.keys(args.secretConfig).length > 0) {
|
|
271
|
+
this.assertRequiredFields("secretConfig", args.secretFields, args.secretConfig);
|
|
272
|
+
}
|
|
273
|
+
return;
|
|
274
|
+
}
|
|
275
|
+
if (args.sourceKind === "env") {
|
|
276
|
+
if (!args.allowSecretOmission || Object.keys(args.envSecretRefs).length > 0) {
|
|
277
|
+
this.assertRequiredEnvFields(args.secretFields, args.envSecretRefs);
|
|
278
|
+
}
|
|
279
|
+
return;
|
|
280
|
+
}
|
|
281
|
+
if (!args.allowSecretOmission || Object.keys(args.secretConfig).length > 0) {
|
|
282
|
+
this.assertRequiredFields("secretConfig", args.secretFields, args.secretConfig);
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
private stripEnvManagedFieldValues(fields: ReadonlyArray<CredentialFieldSchema>, value: JsonRecord): JsonRecord {
|
|
287
|
+
const out: Record<string, unknown> = { ...value };
|
|
288
|
+
for (const field of fields) {
|
|
289
|
+
if (this.credentialFieldEnvOverlayService.isFieldResolvedFromEnv(field)) {
|
|
290
|
+
delete out[field.key];
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
return Object.freeze(out);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
private assertRequiredFields(
|
|
297
|
+
fieldName: string,
|
|
298
|
+
schema: ReadonlyArray<CredentialFieldSchema>,
|
|
299
|
+
value: JsonRecord,
|
|
300
|
+
): void {
|
|
301
|
+
const missing = schema
|
|
302
|
+
.filter((field) => field.required === true)
|
|
303
|
+
.filter((field) => !this.credentialFieldEnvOverlayService.isFieldResolvedFromEnv(field))
|
|
304
|
+
.filter((field) => value[field.key] === undefined || value[field.key] === null || value[field.key] === "")
|
|
305
|
+
.map((field) => field.key);
|
|
306
|
+
if (missing.length > 0) {
|
|
307
|
+
throw new ApplicationRequestError(400, `Missing required ${fieldName} field(s): ${missing.join(", ")}`);
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
private assertRequiredEnvFields(
|
|
312
|
+
schema: ReadonlyArray<CredentialFieldSchema>,
|
|
313
|
+
envSecretRefs: Readonly<Record<string, string>>,
|
|
314
|
+
): void {
|
|
315
|
+
const missing = schema
|
|
316
|
+
.filter((field) => field.required === true)
|
|
317
|
+
.filter((field) => !this.credentialFieldEnvOverlayService.isFieldResolvedFromEnv(field))
|
|
318
|
+
.filter((field) => !envSecretRefs[field.key] || envSecretRefs[field.key]!.trim().length === 0)
|
|
319
|
+
.map((field) => field.key);
|
|
320
|
+
if (missing.length > 0) {
|
|
321
|
+
throw new ApplicationRequestError(400, `Missing required envSecretRefs field(s): ${missing.join(", ")}`);
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
private requireCredentialType(typeId: CredentialTypeId): AnyCredentialType {
|
|
326
|
+
const credentialType = this.credentialTypeRegistry.getCredentialType(typeId);
|
|
327
|
+
if (!credentialType) {
|
|
328
|
+
throw new ApplicationRequestError(400, `Unknown credential type: ${typeId}`);
|
|
329
|
+
}
|
|
330
|
+
return credentialType;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
async markOAuth2Connected(instanceId: CredentialInstanceId, connectedAt: string): Promise<void> {
|
|
334
|
+
const instance = await this.requireInstance(instanceId);
|
|
335
|
+
await this.credentialStore.saveInstance({
|
|
336
|
+
instance: {
|
|
337
|
+
...instance,
|
|
338
|
+
setupStatus: "ready",
|
|
339
|
+
updatedAt: connectedAt,
|
|
340
|
+
},
|
|
341
|
+
});
|
|
342
|
+
this.credentialSessionService.evictInstance(instanceId);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
private async toDto(
|
|
346
|
+
instance: CredentialInstanceRecord,
|
|
347
|
+
latestTestResult: CredentialTestRecord | undefined,
|
|
348
|
+
): Promise<CredentialInstanceDto> {
|
|
349
|
+
const oauth2Connection = await this.toOAuth2ConnectionDto(instance);
|
|
350
|
+
return {
|
|
351
|
+
instanceId: instance.instanceId,
|
|
352
|
+
typeId: instance.typeId,
|
|
353
|
+
displayName: instance.displayName,
|
|
354
|
+
sourceKind: instance.sourceKind,
|
|
355
|
+
publicConfig: instance.publicConfig,
|
|
356
|
+
tags: instance.tags,
|
|
357
|
+
setupStatus: instance.setupStatus,
|
|
358
|
+
createdAt: instance.createdAt,
|
|
359
|
+
updatedAt: instance.updatedAt,
|
|
360
|
+
latestHealth: latestTestResult?.health,
|
|
361
|
+
oauth2Connection,
|
|
362
|
+
};
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
private async toOAuth2ConnectionDto(
|
|
366
|
+
instance: CredentialInstanceRecord,
|
|
367
|
+
): Promise<CredentialOAuth2ConnectionDto | undefined> {
|
|
368
|
+
const credentialType = this.credentialTypeRegistry.getCredentialType(instance.typeId);
|
|
369
|
+
if (credentialType?.definition.auth?.kind !== "oauth2") {
|
|
370
|
+
return undefined;
|
|
371
|
+
}
|
|
372
|
+
const providerId =
|
|
373
|
+
"providerId" in credentialType.definition.auth ? credentialType.definition.auth.providerId : "custom";
|
|
374
|
+
const material = await this.credentialStore.getOAuth2Material(instance.instanceId);
|
|
375
|
+
if (!material) {
|
|
376
|
+
return {
|
|
377
|
+
status: "disconnected",
|
|
378
|
+
providerId,
|
|
379
|
+
scopes: [...credentialType.definition.auth.scopes],
|
|
380
|
+
};
|
|
381
|
+
}
|
|
382
|
+
return {
|
|
383
|
+
status: "connected",
|
|
384
|
+
providerId: material.providerId,
|
|
385
|
+
connectedEmail: material.connectedEmail,
|
|
386
|
+
connectedAt: material.connectedAt,
|
|
387
|
+
scopes: material.scopes,
|
|
388
|
+
updatedAt: material.updatedAt,
|
|
389
|
+
};
|
|
390
|
+
}
|
|
391
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { inject, injectable } from "@codemation/core";
|
|
2
|
+
|
|
3
|
+
import { ApplicationTokens } from "../../applicationTokens";
|
|
4
|
+
import type { AppConfig } from "../../presentation/config/AppConfig";
|
|
5
|
+
|
|
6
|
+
import { CredentialSecretCipher } from "./CredentialSecretCipher";
|
|
7
|
+
import type { CredentialInstanceRecord, CredentialStore, JsonRecord } from "./CredentialServices";
|
|
8
|
+
|
|
9
|
+
@injectable()
|
|
10
|
+
export class CredentialMaterialResolver {
|
|
11
|
+
constructor(
|
|
12
|
+
@inject(ApplicationTokens.CredentialStore)
|
|
13
|
+
private readonly credentialStore: CredentialStore,
|
|
14
|
+
@inject(CredentialSecretCipher)
|
|
15
|
+
private readonly credentialSecretCipher: CredentialSecretCipher,
|
|
16
|
+
@inject(ApplicationTokens.AppConfig)
|
|
17
|
+
private readonly appConfig: AppConfig,
|
|
18
|
+
) {}
|
|
19
|
+
|
|
20
|
+
async resolveMaterial(instance: CredentialInstanceRecord): Promise<JsonRecord> {
|
|
21
|
+
if (instance.secretRef.kind === "db") {
|
|
22
|
+
const secretMaterial = await this.credentialStore.getSecretMaterial(instance.instanceId);
|
|
23
|
+
if (!secretMaterial) {
|
|
24
|
+
throw new Error(`Credential ${instance.instanceId} is missing encrypted secret material.`);
|
|
25
|
+
}
|
|
26
|
+
return this.credentialSecretCipher.decrypt(secretMaterial);
|
|
27
|
+
}
|
|
28
|
+
if (instance.secretRef.kind === "env") {
|
|
29
|
+
return this.resolveEnvMaterial(instance);
|
|
30
|
+
}
|
|
31
|
+
return instance.secretRef.value;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
private resolveEnvMaterial(instance: CredentialInstanceRecord): JsonRecord {
|
|
35
|
+
if (instance.secretRef.kind !== "env") {
|
|
36
|
+
throw new Error(`Credential ${instance.instanceId} is not environment-backed.`);
|
|
37
|
+
}
|
|
38
|
+
const resolved: Record<string, unknown> = {};
|
|
39
|
+
const missingEnvironmentVariables: string[] = [];
|
|
40
|
+
for (const [fieldKey, envVarName] of Object.entries(instance.secretRef.envByField)) {
|
|
41
|
+
const value = this.appConfig.env[envVarName];
|
|
42
|
+
if (value === undefined || value.length === 0) {
|
|
43
|
+
missingEnvironmentVariables.push(envVarName);
|
|
44
|
+
continue;
|
|
45
|
+
}
|
|
46
|
+
resolved[fieldKey] = value;
|
|
47
|
+
}
|
|
48
|
+
if (missingEnvironmentVariables.length > 0) {
|
|
49
|
+
throw new Error(
|
|
50
|
+
`Credential ${instance.instanceId} requires environment variables that are not set: ${missingEnvironmentVariables.join(", ")}.`,
|
|
51
|
+
);
|
|
52
|
+
}
|
|
53
|
+
return resolved;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { inject, injectable } from "@codemation/core";
|
|
2
|
+
|
|
3
|
+
import { ApplicationTokens } from "../../applicationTokens";
|
|
4
|
+
|
|
5
|
+
import { CredentialMaterialResolver } from "./CredentialMaterialResolver";
|
|
6
|
+
import { CredentialSecretCipher } from "./CredentialSecretCipher";
|
|
7
|
+
import type { CredentialInstanceRecord, CredentialStore, JsonRecord } from "./CredentialServices";
|
|
8
|
+
import { CredentialTypeRegistryImpl } from "./CredentialServices";
|
|
9
|
+
|
|
10
|
+
@injectable()
|
|
11
|
+
export class CredentialRuntimeMaterialService {
|
|
12
|
+
constructor(
|
|
13
|
+
@inject(ApplicationTokens.CredentialStore)
|
|
14
|
+
private readonly credentialStore: CredentialStore,
|
|
15
|
+
@inject(CredentialMaterialResolver)
|
|
16
|
+
private readonly credentialMaterialResolver: CredentialMaterialResolver,
|
|
17
|
+
@inject(CredentialSecretCipher)
|
|
18
|
+
private readonly credentialSecretCipher: CredentialSecretCipher,
|
|
19
|
+
@inject(CredentialTypeRegistryImpl)
|
|
20
|
+
private readonly credentialTypeRegistry: CredentialTypeRegistryImpl,
|
|
21
|
+
) {}
|
|
22
|
+
|
|
23
|
+
async compose(instance: CredentialInstanceRecord): Promise<JsonRecord> {
|
|
24
|
+
const baseMaterial = await this.credentialMaterialResolver.resolveMaterial(instance);
|
|
25
|
+
const auth = this.credentialTypeRegistry.getCredentialType(instance.typeId)?.definition.auth;
|
|
26
|
+
if (auth?.kind !== "oauth2") {
|
|
27
|
+
return baseMaterial;
|
|
28
|
+
}
|
|
29
|
+
const oauth2Material = await this.credentialStore.getOAuth2Material(instance.instanceId);
|
|
30
|
+
if (!oauth2Material) {
|
|
31
|
+
return baseMaterial;
|
|
32
|
+
}
|
|
33
|
+
const decryptedOauth2Material = this.credentialSecretCipher.decrypt(oauth2Material);
|
|
34
|
+
return Object.freeze({
|
|
35
|
+
...baseMaterial,
|
|
36
|
+
...decryptedOauth2Material,
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { createCipheriv, createDecipheriv, createHash, randomBytes } from "node:crypto";
|
|
2
|
+
|
|
3
|
+
import { inject, injectable } from "@codemation/core";
|
|
4
|
+
|
|
5
|
+
import { ApplicationTokens } from "../../applicationTokens";
|
|
6
|
+
import type { AppConfig } from "../../presentation/config/AppConfig";
|
|
7
|
+
|
|
8
|
+
import type { JsonRecord } from "./CredentialServices";
|
|
9
|
+
|
|
10
|
+
@injectable()
|
|
11
|
+
export class CredentialSecretCipher {
|
|
12
|
+
private static readonly algorithm = "aes-256-gcm";
|
|
13
|
+
private static readonly schemaVersion = 1;
|
|
14
|
+
private static readonly ivLength = 12;
|
|
15
|
+
|
|
16
|
+
constructor(
|
|
17
|
+
@inject(ApplicationTokens.AppConfig)
|
|
18
|
+
private readonly appConfig: AppConfig,
|
|
19
|
+
) {}
|
|
20
|
+
|
|
21
|
+
encrypt(value: JsonRecord): Readonly<{
|
|
22
|
+
encryptedJson: string;
|
|
23
|
+
encryptionKeyId: string;
|
|
24
|
+
schemaVersion: number;
|
|
25
|
+
}> {
|
|
26
|
+
const iv = randomBytes(CredentialSecretCipher.ivLength);
|
|
27
|
+
const cipher = createCipheriv(CredentialSecretCipher.algorithm, this.resolveKeyMaterial(), iv);
|
|
28
|
+
const plaintext = Buffer.from(JSON.stringify(value), "utf8");
|
|
29
|
+
const encrypted = Buffer.concat([cipher.update(plaintext), cipher.final()]);
|
|
30
|
+
const authTag = cipher.getAuthTag();
|
|
31
|
+
return {
|
|
32
|
+
encryptedJson: Buffer.concat([iv, authTag, encrypted]).toString("base64"),
|
|
33
|
+
encryptionKeyId: this.resolveKeyId(),
|
|
34
|
+
schemaVersion: CredentialSecretCipher.schemaVersion,
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
decrypt(
|
|
39
|
+
record: Readonly<{
|
|
40
|
+
encryptedJson: string;
|
|
41
|
+
encryptionKeyId: string;
|
|
42
|
+
schemaVersion: number;
|
|
43
|
+
}>,
|
|
44
|
+
): JsonRecord {
|
|
45
|
+
const packed = Buffer.from(record.encryptedJson, "base64");
|
|
46
|
+
const iv = packed.subarray(0, CredentialSecretCipher.ivLength);
|
|
47
|
+
const authTag = packed.subarray(CredentialSecretCipher.ivLength, CredentialSecretCipher.ivLength + 16);
|
|
48
|
+
const encrypted = packed.subarray(CredentialSecretCipher.ivLength + 16);
|
|
49
|
+
const decipher = createDecipheriv(CredentialSecretCipher.algorithm, this.resolveKeyMaterial(), iv);
|
|
50
|
+
decipher.setAuthTag(authTag);
|
|
51
|
+
const plaintext = Buffer.concat([decipher.update(encrypted), decipher.final()]).toString("utf8");
|
|
52
|
+
return JSON.parse(plaintext) as JsonRecord;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
private resolveKeyMaterial(): Buffer {
|
|
56
|
+
const rawValue = this.appConfig.env.CODEMATION_CREDENTIALS_MASTER_KEY;
|
|
57
|
+
if (!rawValue || rawValue.trim().length === 0) {
|
|
58
|
+
throw new Error("CODEMATION_CREDENTIALS_MASTER_KEY is required to encrypt database-managed credentials.");
|
|
59
|
+
}
|
|
60
|
+
return createHash("sha256").update(rawValue).digest();
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
private resolveKeyId(): string {
|
|
64
|
+
const rawValue = this.appConfig.env.CODEMATION_CREDENTIALS_MASTER_KEY;
|
|
65
|
+
return createHash("sha256")
|
|
66
|
+
.update(rawValue ?? "")
|
|
67
|
+
.digest("hex")
|
|
68
|
+
.slice(0, 12);
|
|
69
|
+
}
|
|
70
|
+
}
|