@pikku/core 0.11.2 → 0.12.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/CHANGELOG.md +57 -2
- package/dist/crypto-utils.d.ts +2 -0
- package/dist/crypto-utils.js +78 -0
- package/dist/errors/errors.d.ts +14 -0
- package/dist/errors/errors.js +26 -0
- package/dist/errors/index.d.ts +1 -1
- package/dist/errors/index.js +1 -1
- package/dist/function/function-runner.d.ts +10 -4
- package/dist/function/function-runner.js +126 -45
- package/dist/function/functions.types.d.ts +32 -87
- package/dist/function/functions.types.js +16 -46
- package/dist/function/index.d.ts +2 -2
- package/dist/function/index.js +1 -2
- package/dist/handle-error.d.ts +2 -2
- package/dist/handle-error.js +3 -12
- package/dist/index.d.ts +30 -26
- package/dist/index.js +19 -29
- package/dist/internal.d.ts +3 -0
- package/dist/internal.js +2 -0
- package/dist/middleware/auth-apikey.d.ts +2 -2
- package/dist/middleware/auth-apikey.js +3 -3
- package/dist/middleware/auth-bearer.d.ts +3 -3
- package/dist/middleware/auth-bearer.js +4 -7
- package/dist/middleware/auth-cookie.d.ts +4 -4
- package/dist/middleware/auth-cookie.js +7 -9
- package/dist/middleware/cors.d.ts +46 -0
- package/dist/middleware/cors.js +81 -0
- package/dist/middleware/index.d.ts +5 -3
- package/dist/middleware/index.js +5 -3
- package/dist/middleware/remote-auth.d.ts +5 -0
- package/dist/middleware/remote-auth.js +55 -0
- package/dist/middleware/timeout.d.ts +2 -2
- package/dist/middleware-runner.d.ts +1 -1
- package/dist/middleware-runner.js +8 -10
- package/dist/permissions.d.ts +2 -2
- package/dist/permissions.js +11 -15
- package/dist/pikku-state.d.ts +10 -8
- package/dist/pikku-state.js +48 -25
- package/dist/schema.d.ts +4 -4
- package/dist/schema.js +20 -15
- package/dist/services/ai-agent-runner-service.d.ts +43 -0
- package/dist/services/ai-agent-runner-service.js +1 -0
- package/dist/services/ai-run-state-service.d.ts +13 -0
- package/dist/services/ai-run-state-service.js +1 -0
- package/dist/services/ai-storage-service.d.ts +18 -0
- package/dist/services/ai-storage-service.js +1 -0
- package/dist/services/content-service.d.ts +6 -0
- package/dist/services/deployment-service.d.ts +19 -0
- package/dist/services/deployment-service.js +1 -0
- package/dist/services/gopass-secrets.d.ts +47 -0
- package/dist/services/gopass-secrets.js +97 -0
- package/dist/services/in-memory-ai-run-state-service.d.ts +15 -0
- package/dist/services/in-memory-ai-run-state-service.js +44 -0
- package/dist/services/in-memory-trigger-service.d.ts +22 -0
- package/dist/services/in-memory-trigger-service.js +48 -0
- package/dist/services/in-memory-workflow-service.d.ts +59 -0
- package/dist/services/in-memory-workflow-service.js +287 -0
- package/dist/services/index.d.ts +26 -11
- package/dist/services/index.js +11 -13
- package/dist/services/local-content.d.ts +2 -1
- package/dist/services/local-content.js +6 -1
- package/dist/services/local-secrets.d.ts +25 -2
- package/dist/services/local-secrets.js +45 -0
- package/dist/services/local-variables.d.ts +6 -1
- package/dist/services/local-variables.js +18 -0
- package/dist/services/logger-console.d.ts +2 -1
- package/dist/services/scheduler-service.d.ts +9 -1
- package/dist/services/scheduler-service.js +8 -0
- package/dist/services/schema-service.d.ts +6 -0
- package/dist/services/scoped-secret-service.d.ts +16 -0
- package/dist/services/scoped-secret-service.js +35 -0
- package/dist/services/secret-service.d.ts +25 -4
- package/dist/services/trigger-service.d.ts +16 -0
- package/dist/services/trigger-service.js +1 -0
- package/dist/services/typed-secret-service.d.ts +30 -0
- package/dist/services/typed-secret-service.js +40 -0
- package/dist/services/typed-variables-service.d.ts +27 -0
- package/dist/services/typed-variables-service.js +46 -0
- package/dist/services/user-session-service.d.ts +15 -2
- package/dist/services/user-session-service.js +17 -0
- package/dist/services/variables-service.d.ts +5 -0
- package/dist/services/workflow-service.d.ts +9 -5
- package/dist/types/core.types.d.ts +67 -25
- package/dist/types/core.types.js +8 -1
- package/dist/types/state.types.d.ts +53 -59
- package/dist/utils.d.ts +7 -6
- package/dist/utils.js +27 -12
- package/dist/version.d.ts +6 -0
- package/dist/version.js +19 -0
- package/dist/wirings/ai-agent/ai-agent-assistant-ui.d.ts +5 -0
- package/dist/wirings/ai-agent/ai-agent-assistant-ui.js +146 -0
- package/dist/wirings/ai-agent/ai-agent-helpers.d.ts +28 -0
- package/dist/wirings/ai-agent/ai-agent-helpers.js +40 -0
- package/dist/wirings/ai-agent/ai-agent-memory.d.ts +29 -0
- package/dist/wirings/ai-agent/ai-agent-memory.js +199 -0
- package/dist/wirings/ai-agent/ai-agent-model-config.d.ts +9 -0
- package/dist/wirings/ai-agent/ai-agent-model-config.js +36 -0
- package/dist/wirings/ai-agent/ai-agent-prepare.d.ts +59 -0
- package/dist/wirings/ai-agent/ai-agent-prepare.js +348 -0
- package/dist/wirings/ai-agent/ai-agent-registry.d.ts +15 -0
- package/dist/wirings/ai-agent/ai-agent-registry.js +47 -0
- package/dist/wirings/ai-agent/ai-agent-runner.d.ts +3 -0
- package/dist/wirings/ai-agent/ai-agent-runner.js +195 -0
- package/dist/wirings/ai-agent/ai-agent-stream.d.ts +12 -0
- package/dist/wirings/ai-agent/ai-agent-stream.js +662 -0
- package/dist/wirings/ai-agent/ai-agent.types.d.ts +313 -0
- package/dist/wirings/ai-agent/ai-agent.types.js +1 -0
- package/dist/wirings/ai-agent/index.d.ts +7 -0
- package/dist/wirings/ai-agent/index.js +6 -0
- package/dist/wirings/channel/channel-common.d.ts +8 -5
- package/dist/wirings/channel/channel-common.js +15 -8
- package/dist/wirings/channel/channel-handler.d.ts +3 -3
- package/dist/wirings/channel/channel-handler.js +15 -6
- package/dist/wirings/channel/channel-middleware-runner.d.ts +9 -0
- package/dist/wirings/channel/channel-middleware-runner.js +73 -0
- package/dist/wirings/channel/channel-runner.d.ts +5 -5
- package/dist/wirings/channel/channel-runner.js +10 -9
- package/dist/wirings/channel/channel-store.d.ts +1 -1
- package/dist/wirings/channel/channel.types.d.ts +9 -7
- package/dist/wirings/channel/define-channel-routes.d.ts +21 -0
- package/dist/wirings/channel/define-channel-routes.js +23 -0
- package/dist/wirings/channel/index.d.ts +10 -8
- package/dist/wirings/channel/index.js +7 -8
- package/dist/wirings/channel/local/index.d.ts +3 -3
- package/dist/wirings/channel/local/index.js +3 -3
- package/dist/wirings/channel/local/local-channel-runner.d.ts +7 -2
- package/dist/wirings/channel/local/local-channel-runner.js +22 -9
- package/dist/wirings/channel/local/local-eventhub-service.d.ts +2 -2
- package/dist/wirings/channel/log-channels.d.ts +1 -1
- package/dist/wirings/channel/pikku-abstract-channel-handler.d.ts +1 -1
- package/dist/wirings/channel/serverless/index.d.ts +1 -1
- package/dist/wirings/channel/serverless/index.js +1 -1
- package/dist/wirings/channel/serverless/serverless-channel-runner.d.ts +4 -4
- package/dist/wirings/channel/serverless/serverless-channel-runner.js +40 -23
- package/dist/wirings/cli/channel/cli-channel-runner.d.ts +1 -1
- package/dist/wirings/cli/channel/index.d.ts +1 -1
- package/dist/wirings/cli/channel/index.js +1 -1
- package/dist/wirings/cli/cli-runner.d.ts +3 -3
- package/dist/wirings/cli/cli-runner.js +12 -8
- package/dist/wirings/cli/cli.types.d.ts +9 -9
- package/dist/wirings/cli/command-parser.d.ts +1 -1
- package/dist/wirings/cli/define-cli-commands.d.ts +19 -0
- package/dist/wirings/cli/define-cli-commands.js +20 -0
- package/dist/wirings/cli/index.d.ts +2 -3
- package/dist/wirings/cli/index.js +1 -3
- package/dist/wirings/http/http-routes.d.ts +69 -0
- package/dist/wirings/http/http-routes.js +139 -0
- package/dist/wirings/http/http-runner.d.ts +9 -9
- package/dist/wirings/http/http-runner.js +79 -34
- package/dist/wirings/http/http.types.d.ts +77 -41
- package/dist/wirings/http/index.d.ts +5 -4
- package/dist/wirings/http/index.js +4 -3
- package/dist/wirings/http/log-http-routes.d.ts +1 -1
- package/dist/wirings/http/pikku-fetch-http-request.d.ts +1 -1
- package/dist/wirings/http/pikku-fetch-http-response.d.ts +2 -2
- package/dist/wirings/http/pikku-fetch-http-response.js +6 -1
- package/dist/wirings/http/routers/http-router.d.ts +1 -1
- package/dist/wirings/http/routers/path-to-regex.d.ts +2 -2
- package/dist/wirings/mcp/index.d.ts +4 -3
- package/dist/wirings/mcp/index.js +3 -3
- package/dist/wirings/mcp/mcp-endpoint-registry.d.ts +1 -1
- package/dist/wirings/mcp/mcp-runner.d.ts +1 -6
- package/dist/wirings/mcp/mcp-runner.js +28 -40
- package/dist/wirings/mcp/mcp.types.d.ts +5 -5
- package/dist/wirings/node/index.d.ts +2 -0
- package/dist/wirings/node/index.js +1 -0
- package/dist/wirings/node/node.types.d.ts +20 -0
- package/dist/wirings/node/node.types.js +1 -0
- package/dist/wirings/oauth2/index.d.ts +3 -0
- package/dist/wirings/oauth2/index.js +2 -0
- package/dist/wirings/oauth2/oauth2-client.d.ts +47 -0
- package/dist/wirings/oauth2/oauth2-client.js +267 -0
- package/dist/wirings/oauth2/oauth2.types.d.ts +65 -0
- package/dist/wirings/oauth2/oauth2.types.js +4 -0
- package/dist/wirings/oauth2/wire-oauth2-credential.d.ts +20 -0
- package/dist/wirings/oauth2/wire-oauth2-credential.js +21 -0
- package/dist/wirings/queue/index.d.ts +1 -1
- package/dist/wirings/queue/queue-runner.d.ts +1 -5
- package/dist/wirings/queue/queue-runner.js +11 -8
- package/dist/wirings/queue/queue.types.d.ts +5 -5
- package/dist/wirings/queue/register-queue-helper.d.ts +2 -2
- package/dist/wirings/queue/register-queue-helper.js +1 -1
- package/dist/wirings/queue/validate-worker-config.d.ts +1 -1
- package/dist/wirings/rpc/index.d.ts +3 -1
- package/dist/wirings/rpc/index.js +2 -1
- package/dist/wirings/rpc/rpc-runner.d.ts +58 -8
- package/dist/wirings/rpc/rpc-runner.js +177 -31
- package/dist/wirings/rpc/rpc-types.d.ts +20 -4
- package/dist/wirings/rpc/wire-addon.d.ts +10 -0
- package/dist/wirings/rpc/wire-addon.js +9 -0
- package/dist/wirings/scheduler/index.d.ts +2 -2
- package/dist/wirings/scheduler/index.js +1 -2
- package/dist/wirings/scheduler/log-schedulers.d.ts +1 -1
- package/dist/wirings/scheduler/scheduler-runner.d.ts +3 -5
- package/dist/wirings/scheduler/scheduler-runner.js +11 -14
- package/dist/wirings/scheduler/scheduler.types.d.ts +2 -2
- package/dist/wirings/secret/index.d.ts +3 -0
- package/dist/wirings/secret/index.js +2 -0
- package/dist/wirings/secret/secret.types.d.ts +27 -0
- package/dist/wirings/secret/secret.types.js +1 -0
- package/dist/wirings/secret/validate-secret-definitions.d.ts +6 -0
- package/dist/wirings/secret/validate-secret-definitions.js +55 -0
- package/dist/wirings/trigger/index.d.ts +3 -2
- package/dist/wirings/trigger/index.js +2 -2
- package/dist/wirings/trigger/pikku-trigger-service.d.ts +22 -0
- package/dist/wirings/trigger/pikku-trigger-service.js +70 -0
- package/dist/wirings/trigger/trigger-runner.d.ts +18 -9
- package/dist/wirings/trigger/trigger-runner.js +48 -19
- package/dist/wirings/trigger/trigger.types.d.ts +99 -11
- package/dist/wirings/trigger/trigger.types.js +40 -1
- package/dist/wirings/variable/index.d.ts +3 -0
- package/dist/wirings/variable/index.js +2 -0
- package/dist/wirings/variable/validate-variable-definitions.d.ts +6 -0
- package/dist/wirings/variable/validate-variable-definitions.js +45 -0
- package/dist/wirings/variable/variable.types.d.ts +18 -0
- package/dist/wirings/variable/variable.types.js +1 -0
- package/dist/wirings/workflow/dsl/index.d.ts +1 -1
- package/dist/wirings/workflow/dsl/workflow-dsl.types.d.ts +7 -1
- package/dist/wirings/workflow/dsl/workflow-runner.js +3 -2
- package/dist/wirings/workflow/graph/graph-node.d.ts +1 -6
- package/dist/wirings/workflow/graph/graph-runner.d.ts +5 -31
- package/dist/wirings/workflow/graph/graph-runner.js +384 -296
- package/dist/wirings/workflow/graph/index.d.ts +4 -3
- package/dist/wirings/workflow/graph/index.js +3 -3
- package/dist/wirings/workflow/graph/template.d.ts +15 -0
- package/dist/wirings/workflow/graph/template.js +27 -0
- package/dist/wirings/workflow/graph/wire-workflow-graph.d.ts +15 -0
- package/dist/wirings/workflow/graph/wire-workflow-graph.js +8 -0
- package/dist/wirings/workflow/graph/workflow-graph.types.d.ts +0 -13
- package/dist/wirings/workflow/index.d.ts +6 -6
- package/dist/wirings/workflow/index.js +6 -4
- package/dist/wirings/workflow/pikku-workflow-service.d.ts +29 -19
- package/dist/wirings/workflow/pikku-workflow-service.js +217 -82
- package/dist/wirings/workflow/workflow-helpers.d.ts +36 -0
- package/dist/wirings/workflow/workflow-helpers.js +38 -0
- package/dist/wirings/workflow/workflow.types.d.ts +42 -95
- package/package.json +14 -15
- package/run-tests.sh +4 -1
- package/src/crypto-utils.test.ts +116 -0
- package/src/crypto-utils.ts +99 -0
- package/src/errors/error.test.ts +143 -2
- package/src/errors/errors.ts +27 -0
- package/src/errors/index.ts +1 -1
- package/src/factory-functions.test.ts +42 -2
- package/src/function/function-runner.test.ts +6 -13
- package/src/function/function-runner.ts +161 -53
- package/src/function/functions.types.ts +63 -132
- package/src/function/index.ts +5 -2
- package/src/handle-error.test.ts +361 -0
- package/src/handle-error.ts +6 -14
- package/src/index.ts +97 -30
- package/src/internal.ts +6 -0
- package/src/middleware/auth-apikey.test.ts +16 -13
- package/src/middleware/auth-apikey.ts +3 -3
- package/src/middleware/auth-bearer.test.ts +18 -15
- package/src/middleware/auth-bearer.ts +27 -32
- package/src/middleware/auth-cookie.test.ts +17 -14
- package/src/middleware/auth-cookie.ts +9 -13
- package/src/middleware/cors.test.ts +424 -0
- package/src/middleware/cors.ts +104 -0
- package/src/middleware/index.ts +5 -3
- package/src/middleware/remote-auth.test.ts +488 -0
- package/src/middleware/remote-auth.ts +68 -0
- package/src/middleware-runner.test.ts +123 -1
- package/src/middleware-runner.ts +13 -13
- package/src/permissions.test.ts +83 -9
- package/src/permissions.ts +17 -19
- package/src/pikku-state.test.ts +224 -0
- package/src/pikku-state.ts +59 -35
- package/src/run-tests-script.test.ts +49 -0
- package/src/schema.test.ts +198 -6
- package/src/schema.ts +28 -21
- package/src/services/ai-agent-runner-service.ts +41 -0
- package/src/services/ai-run-state-service.ts +20 -0
- package/src/services/ai-storage-service.ts +39 -0
- package/src/services/content-service.ts +7 -0
- package/src/services/deployment-service.ts +22 -0
- package/src/services/gopass-secrets.ts +98 -0
- package/src/services/in-memory-ai-run-state-service.ts +73 -0
- package/src/services/in-memory-trigger-service.ts +64 -0
- package/src/services/in-memory-workflow-service.test.ts +351 -0
- package/src/services/in-memory-workflow-service.ts +395 -0
- package/src/services/index.ts +50 -14
- package/src/services/local-content.ts +9 -3
- package/src/services/local-secrets.test.ts +80 -0
- package/src/services/local-secrets.ts +53 -2
- package/src/services/local-variables.test.ts +61 -0
- package/src/services/local-variables.ts +23 -1
- package/src/services/logger-console.test.ts +118 -0
- package/src/services/logger-console.ts +2 -1
- package/src/services/scheduler-service.ts +11 -1
- package/src/services/schema-service.ts +7 -0
- package/src/services/scoped-secret-service.test.ts +74 -0
- package/src/services/scoped-secret-service.ts +41 -0
- package/src/services/secret-service.ts +25 -4
- package/src/services/trigger-service.ts +17 -0
- package/src/services/typed-secret-service.test.ts +93 -0
- package/src/services/typed-secret-service.ts +70 -0
- package/src/services/typed-variables-service.test.ts +73 -0
- package/src/services/typed-variables-service.ts +81 -0
- package/src/services/user-session-service.test.ts +113 -0
- package/src/services/user-session-service.ts +25 -2
- package/src/services/variables-service.ts +5 -0
- package/src/services/workflow-service.ts +23 -13
- package/src/time-utils.test.ts +1 -1
- package/src/types/core.types.ts +95 -24
- package/src/types/state.types.ts +56 -73
- package/src/utils.test.ts +350 -0
- package/src/utils.ts +33 -18
- package/src/version.test.ts +80 -0
- package/src/version.ts +25 -0
- package/src/wirings/ai-agent/ai-agent-assistant-ui.test.ts +363 -0
- package/src/wirings/ai-agent/ai-agent-assistant-ui.ts +214 -0
- package/src/wirings/ai-agent/ai-agent-helpers.test.ts +152 -0
- package/src/wirings/ai-agent/ai-agent-helpers.ts +76 -0
- package/src/wirings/ai-agent/ai-agent-memory.ts +300 -0
- package/src/wirings/ai-agent/ai-agent-model-config.test.ts +115 -0
- package/src/wirings/ai-agent/ai-agent-model-config.ts +43 -0
- package/src/wirings/ai-agent/ai-agent-prepare.ts +504 -0
- package/src/wirings/ai-agent/ai-agent-registry.test.ts +37 -0
- package/src/wirings/ai-agent/ai-agent-registry.ts +82 -0
- package/src/wirings/ai-agent/ai-agent-runner.test.ts +317 -0
- package/src/wirings/ai-agent/ai-agent-runner.ts +251 -0
- package/src/wirings/ai-agent/ai-agent-stream.test.ts +652 -0
- package/src/wirings/ai-agent/ai-agent-stream.ts +1049 -0
- package/src/wirings/ai-agent/ai-agent.types.ts +328 -0
- package/src/wirings/ai-agent/index.ts +39 -0
- package/src/wirings/channel/channel-common.ts +33 -20
- package/src/wirings/channel/channel-handler.ts +26 -9
- package/src/wirings/channel/channel-middleware-runner.ts +119 -0
- package/src/wirings/channel/channel-runner.ts +15 -16
- package/src/wirings/channel/channel-store.ts +1 -1
- package/src/wirings/channel/channel.types.ts +21 -9
- package/src/wirings/channel/define-channel-routes.ts +25 -0
- package/src/wirings/channel/index.ts +23 -8
- package/src/wirings/channel/local/index.ts +3 -3
- package/src/wirings/channel/local/local-channel-runner.test.ts +57 -7
- package/src/wirings/channel/local/local-channel-runner.ts +40 -19
- package/src/wirings/channel/local/local-eventhub-service.test.ts +2 -2
- package/src/wirings/channel/local/local-eventhub-service.ts +2 -2
- package/src/wirings/channel/log-channels.ts +1 -1
- package/src/wirings/channel/pikku-abstract-channel-handler.ts +1 -1
- package/src/wirings/channel/serverless/index.ts +5 -1
- package/src/wirings/channel/serverless/serverless-channel-runner.ts +57 -36
- package/src/wirings/cli/channel/cli-channel-runner.ts +1 -1
- package/src/wirings/cli/channel/index.ts +1 -1
- package/src/wirings/cli/cli-runner.test.ts +10 -10
- package/src/wirings/cli/cli-runner.ts +28 -14
- package/src/wirings/cli/cli.types.ts +14 -14
- package/src/wirings/cli/command-parser.test.ts +9 -9
- package/src/wirings/cli/command-parser.ts +1 -1
- package/src/wirings/cli/define-cli-commands.ts +24 -0
- package/src/wirings/cli/index.ts +10 -4
- package/src/wirings/http/http-routes.test.ts +322 -0
- package/src/wirings/http/http-routes.ts +198 -0
- package/src/wirings/http/http-runner.test.ts +12 -20
- package/src/wirings/http/http-runner.ts +101 -51
- package/src/wirings/http/http.types.ts +119 -48
- package/src/wirings/http/index.ts +16 -4
- package/src/wirings/http/log-http-routes.ts +1 -1
- package/src/wirings/http/pikku-fetch-http-request.ts +1 -1
- package/src/wirings/http/pikku-fetch-http-response.ts +12 -5
- package/src/wirings/http/routers/http-router.ts +1 -1
- package/src/wirings/http/routers/path-to-regex.test.ts +1 -1
- package/src/wirings/http/routers/path-to-regex.ts +4 -3
- package/src/wirings/mcp/index.ts +27 -3
- package/src/wirings/mcp/mcp-endpoint-registry.test.ts +3 -3
- package/src/wirings/mcp/mcp-endpoint-registry.ts +5 -1
- package/src/wirings/mcp/mcp-runner.ts +48 -65
- package/src/wirings/mcp/mcp.types.ts +5 -5
- package/src/wirings/node/index.ts +2 -0
- package/src/wirings/node/node.types.ts +23 -0
- package/src/wirings/oauth2/index.ts +3 -0
- package/src/wirings/oauth2/oauth2-client.test.ts +929 -0
- package/src/wirings/oauth2/oauth2-client.ts +335 -0
- package/src/wirings/oauth2/oauth2.types.ts +69 -0
- package/src/wirings/oauth2/wire-oauth2-credential.ts +23 -0
- package/src/wirings/queue/index.ts +13 -2
- package/src/wirings/queue/queue-runner.test.ts +142 -73
- package/src/wirings/queue/queue-runner.ts +18 -14
- package/src/wirings/queue/queue.types.ts +5 -5
- package/src/wirings/queue/register-queue-helper.ts +3 -5
- package/src/wirings/queue/validate-worker-config.test.ts +108 -0
- package/src/wirings/queue/validate-worker-config.ts +4 -1
- package/src/wirings/rpc/index.ts +3 -1
- package/src/wirings/rpc/rpc-runner.ts +254 -41
- package/src/wirings/rpc/rpc-types.ts +28 -4
- package/src/wirings/rpc/wire-addon.ts +20 -0
- package/src/wirings/scheduler/index.ts +6 -4
- package/src/wirings/scheduler/log-schedulers.ts +1 -1
- package/src/wirings/scheduler/scheduler-runner.test.ts +78 -45
- package/src/wirings/scheduler/scheduler-runner.ts +20 -27
- package/src/wirings/scheduler/scheduler.types.ts +2 -2
- package/src/wirings/secret/index.ts +9 -0
- package/src/wirings/secret/secret.types.ts +32 -0
- package/src/wirings/secret/validate-secret-definitions.test.ts +140 -0
- package/src/wirings/secret/validate-secret-definitions.ts +82 -0
- package/src/wirings/trigger/index.ts +10 -2
- package/src/wirings/trigger/pikku-trigger-service.ts +112 -0
- package/src/wirings/trigger/trigger-runner.test.ts +79 -0
- package/src/wirings/trigger/trigger-runner.ts +80 -41
- package/src/wirings/trigger/trigger.types.ts +144 -22
- package/src/wirings/variable/index.ts +8 -0
- package/src/wirings/variable/validate-variable-definitions.test.ts +91 -0
- package/src/wirings/variable/validate-variable-definitions.ts +69 -0
- package/src/wirings/variable/variable.types.ts +22 -0
- package/src/wirings/workflow/dsl/index.ts +1 -0
- package/src/wirings/workflow/dsl/workflow-dsl.types.ts +9 -1
- package/src/wirings/workflow/dsl/workflow-runner.ts +4 -3
- package/src/wirings/workflow/graph/graph-node.ts +1 -6
- package/src/wirings/workflow/graph/graph-runner.test.ts +487 -0
- package/src/wirings/workflow/graph/graph-runner.ts +496 -374
- package/src/wirings/workflow/graph/index.ts +14 -3
- package/src/wirings/workflow/graph/template.test.ts +49 -0
- package/src/wirings/workflow/graph/template.ts +42 -0
- package/src/wirings/workflow/graph/wire-workflow-graph.ts +29 -0
- package/src/wirings/workflow/graph/workflow-graph.types.ts +0 -22
- package/src/wirings/workflow/index.ts +21 -10
- package/src/wirings/workflow/pikku-workflow-service.test.ts +200 -0
- package/src/wirings/workflow/pikku-workflow-service.ts +308 -105
- package/src/wirings/workflow/workflow-helpers.test.ts +129 -0
- package/src/wirings/workflow/workflow-helpers.ts +79 -0
- package/src/wirings/workflow/workflow.types.ts +47 -92
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/wirings/forge-node/forge-node.types.d.ts +0 -120
- package/dist/wirings/forge-node/forge-node.types.js +0 -38
- package/dist/wirings/forge-node/index.d.ts +0 -1
- package/dist/wirings/forge-node/index.js +0 -1
- package/dist/wirings/workflow/wire-workflow.d.ts +0 -42
- package/dist/wirings/workflow/wire-workflow.js +0 -53
- package/dist/wirings/workflow/workflow-utils.d.ts +0 -23
- package/dist/wirings/workflow/workflow-utils.js +0 -66
- package/src/wirings/forge-node/forge-node.types.ts +0 -135
- package/src/wirings/forge-node/index.ts +0 -1
- package/src/wirings/workflow/wire-workflow.ts +0 -94
- package/src/wirings/workflow/workflow-utils.ts +0 -120
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
import { test, describe, beforeEach, afterEach } from 'node:test'
|
|
2
|
+
import * as assert from 'assert'
|
|
3
|
+
import { wireHTTPRoutes, defineHTTPRoutes } from './http-routes.js'
|
|
4
|
+
import { pikkuState, resetPikkuState } from '../../pikku-state.js'
|
|
5
|
+
import { addFunction } from '../../function/function-runner.js'
|
|
6
|
+
import { httpRouter } from './routers/http-router.js'
|
|
7
|
+
import type { CorePikkuMiddleware } from '../../types/core.types.js'
|
|
8
|
+
|
|
9
|
+
// Mock function for testing
|
|
10
|
+
const mockFunc = async () => ({ success: true })
|
|
11
|
+
|
|
12
|
+
// Mock middleware
|
|
13
|
+
const mockMiddleware: CorePikkuMiddleware = async (_services, _wire, next) => {
|
|
14
|
+
await next()
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// Helper to set up function metadata for routes
|
|
18
|
+
const setupFunctionMeta = (
|
|
19
|
+
routes: Array<{ method: string; route: string }>
|
|
20
|
+
) => {
|
|
21
|
+
const meta: Record<string, Record<string, any>> = {
|
|
22
|
+
get: {},
|
|
23
|
+
post: {},
|
|
24
|
+
delete: {},
|
|
25
|
+
patch: {},
|
|
26
|
+
head: {},
|
|
27
|
+
put: {},
|
|
28
|
+
options: {},
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
for (const { method, route } of routes) {
|
|
32
|
+
meta[method][route] = {
|
|
33
|
+
pikkuFuncId: `func_${route.replace(/[^a-z0-9]/gi, '_')}`,
|
|
34
|
+
route,
|
|
35
|
+
method,
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
pikkuState(null, 'http', 'meta', meta)
|
|
40
|
+
|
|
41
|
+
for (const { method, route } of routes) {
|
|
42
|
+
const funcName = `func_${route.replace(/[^a-z0-9]/gi, '_')}`
|
|
43
|
+
pikkuState(null, 'function', 'meta', {
|
|
44
|
+
[funcName]: {
|
|
45
|
+
pikkuFuncId: funcName,
|
|
46
|
+
services: [],
|
|
47
|
+
},
|
|
48
|
+
} as any)
|
|
49
|
+
addFunction(funcName, { func: mockFunc })
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
describe('defineHTTPRoutes', () => {
|
|
54
|
+
test('should accept routes directly', () => {
|
|
55
|
+
const routes = defineHTTPRoutes({
|
|
56
|
+
list: { method: 'get', route: '/todos', func: { func: mockFunc } },
|
|
57
|
+
get: { method: 'get', route: '/todos/:id', func: { func: mockFunc } },
|
|
58
|
+
})
|
|
59
|
+
|
|
60
|
+
assert.ok(routes.routes.list)
|
|
61
|
+
assert.ok(routes.routes.get)
|
|
62
|
+
assert.strictEqual(routes.routes.list.method, 'get')
|
|
63
|
+
assert.strictEqual(routes.routes.list.route, '/todos')
|
|
64
|
+
})
|
|
65
|
+
|
|
66
|
+
test('should accept config with routes', () => {
|
|
67
|
+
const routes = defineHTTPRoutes({
|
|
68
|
+
auth: true,
|
|
69
|
+
tags: ['todos'],
|
|
70
|
+
routes: {
|
|
71
|
+
list: { method: 'get', route: '/todos', func: { func: mockFunc } },
|
|
72
|
+
},
|
|
73
|
+
})
|
|
74
|
+
|
|
75
|
+
assert.strictEqual(routes.auth, true)
|
|
76
|
+
assert.deepStrictEqual(routes.tags, ['todos'])
|
|
77
|
+
assert.ok(routes.routes.list)
|
|
78
|
+
})
|
|
79
|
+
|
|
80
|
+
test('should handle basePath in config', () => {
|
|
81
|
+
const routes = defineHTTPRoutes({
|
|
82
|
+
basePath: '/api',
|
|
83
|
+
routes: {
|
|
84
|
+
list: { method: 'get', route: '/todos', func: { func: mockFunc } },
|
|
85
|
+
},
|
|
86
|
+
})
|
|
87
|
+
|
|
88
|
+
assert.strictEqual(routes.basePath, '/api')
|
|
89
|
+
})
|
|
90
|
+
})
|
|
91
|
+
|
|
92
|
+
describe('wireHTTPRoutes', () => {
|
|
93
|
+
beforeEach(() => {
|
|
94
|
+
resetPikkuState()
|
|
95
|
+
httpRouter.reset()
|
|
96
|
+
})
|
|
97
|
+
|
|
98
|
+
afterEach(() => {
|
|
99
|
+
resetPikkuState()
|
|
100
|
+
httpRouter.reset()
|
|
101
|
+
})
|
|
102
|
+
|
|
103
|
+
test('should wire flat array of routes', () => {
|
|
104
|
+
setupFunctionMeta([
|
|
105
|
+
{ method: 'get', route: '/todos' },
|
|
106
|
+
{ method: 'post', route: '/todos' },
|
|
107
|
+
])
|
|
108
|
+
|
|
109
|
+
wireHTTPRoutes({
|
|
110
|
+
routes: [
|
|
111
|
+
{ method: 'get', route: '/todos', func: { func: mockFunc } },
|
|
112
|
+
{ method: 'post', route: '/todos', func: { func: mockFunc } },
|
|
113
|
+
],
|
|
114
|
+
})
|
|
115
|
+
|
|
116
|
+
const routes = pikkuState(null, 'http', 'routes')
|
|
117
|
+
assert.ok(routes.get('get')?.has('/todos'))
|
|
118
|
+
assert.ok(routes.get('post')?.has('/todos'))
|
|
119
|
+
})
|
|
120
|
+
|
|
121
|
+
test('should wire nested object routes', () => {
|
|
122
|
+
setupFunctionMeta([
|
|
123
|
+
{ method: 'get', route: '/todos' },
|
|
124
|
+
{ method: 'get', route: '/todos/:id' },
|
|
125
|
+
{ method: 'post', route: '/auth/login' },
|
|
126
|
+
])
|
|
127
|
+
|
|
128
|
+
wireHTTPRoutes({
|
|
129
|
+
routes: {
|
|
130
|
+
todos: {
|
|
131
|
+
list: { method: 'get', route: '/todos', func: { func: mockFunc } },
|
|
132
|
+
get: {
|
|
133
|
+
method: 'get',
|
|
134
|
+
route: '/todos/:id',
|
|
135
|
+
func: { func: mockFunc },
|
|
136
|
+
},
|
|
137
|
+
},
|
|
138
|
+
auth: {
|
|
139
|
+
login: {
|
|
140
|
+
method: 'post',
|
|
141
|
+
route: '/auth/login',
|
|
142
|
+
func: { func: mockFunc },
|
|
143
|
+
},
|
|
144
|
+
},
|
|
145
|
+
},
|
|
146
|
+
})
|
|
147
|
+
|
|
148
|
+
const routes = pikkuState(null, 'http', 'routes')
|
|
149
|
+
assert.ok(routes.get('get')?.has('/todos'))
|
|
150
|
+
assert.ok(routes.get('get')?.has('/todos/:id'))
|
|
151
|
+
assert.ok(routes.get('post')?.has('/auth/login'))
|
|
152
|
+
})
|
|
153
|
+
|
|
154
|
+
test('should apply basePath to all routes', () => {
|
|
155
|
+
setupFunctionMeta([
|
|
156
|
+
{ method: 'get', route: '/api/v1/todos' },
|
|
157
|
+
{ method: 'post', route: '/api/v1/todos' },
|
|
158
|
+
])
|
|
159
|
+
|
|
160
|
+
wireHTTPRoutes({
|
|
161
|
+
basePath: '/api/v1',
|
|
162
|
+
routes: [
|
|
163
|
+
{ method: 'get', route: '/todos', func: { func: mockFunc } },
|
|
164
|
+
{ method: 'post', route: '/todos', func: { func: mockFunc } },
|
|
165
|
+
],
|
|
166
|
+
})
|
|
167
|
+
|
|
168
|
+
const routes = pikkuState(null, 'http', 'routes')
|
|
169
|
+
assert.ok(routes.get('get')?.has('/api/v1/todos'))
|
|
170
|
+
assert.ok(routes.get('post')?.has('/api/v1/todos'))
|
|
171
|
+
})
|
|
172
|
+
|
|
173
|
+
test('should merge tags from group config and route config', () => {
|
|
174
|
+
setupFunctionMeta([{ method: 'get', route: '/todos' }])
|
|
175
|
+
|
|
176
|
+
wireHTTPRoutes({
|
|
177
|
+
tags: ['api'],
|
|
178
|
+
routes: [
|
|
179
|
+
{
|
|
180
|
+
method: 'get',
|
|
181
|
+
route: '/todos',
|
|
182
|
+
func: { func: mockFunc },
|
|
183
|
+
tags: ['todos'],
|
|
184
|
+
},
|
|
185
|
+
],
|
|
186
|
+
})
|
|
187
|
+
|
|
188
|
+
const routes = pikkuState(null, 'http', 'routes')
|
|
189
|
+
const route = routes.get('get')?.get('/todos')
|
|
190
|
+
assert.deepStrictEqual(route?.tags, ['api', 'todos'])
|
|
191
|
+
})
|
|
192
|
+
|
|
193
|
+
test('should merge middleware from group config and route config', () => {
|
|
194
|
+
setupFunctionMeta([{ method: 'get', route: '/todos' }])
|
|
195
|
+
|
|
196
|
+
const groupMiddleware: CorePikkuMiddleware = async (_s, _w, next) => {
|
|
197
|
+
await next()
|
|
198
|
+
}
|
|
199
|
+
const routeMiddleware: CorePikkuMiddleware = async (_s, _w, next) => {
|
|
200
|
+
await next()
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
wireHTTPRoutes({
|
|
204
|
+
middleware: [groupMiddleware],
|
|
205
|
+
routes: [
|
|
206
|
+
{
|
|
207
|
+
method: 'get',
|
|
208
|
+
route: '/todos',
|
|
209
|
+
func: { func: mockFunc },
|
|
210
|
+
middleware: [routeMiddleware],
|
|
211
|
+
},
|
|
212
|
+
],
|
|
213
|
+
})
|
|
214
|
+
|
|
215
|
+
const routes = pikkuState(null, 'http', 'routes')
|
|
216
|
+
const route = routes.get('get')?.get('/todos')
|
|
217
|
+
assert.strictEqual(route?.middleware?.length, 2)
|
|
218
|
+
})
|
|
219
|
+
|
|
220
|
+
test('should allow route auth to override group auth', () => {
|
|
221
|
+
setupFunctionMeta([
|
|
222
|
+
{ method: 'get', route: '/todos' },
|
|
223
|
+
{ method: 'post', route: '/auth/login' },
|
|
224
|
+
])
|
|
225
|
+
|
|
226
|
+
wireHTTPRoutes({
|
|
227
|
+
auth: true,
|
|
228
|
+
routes: [
|
|
229
|
+
{ method: 'get', route: '/todos', func: { func: mockFunc } },
|
|
230
|
+
{
|
|
231
|
+
method: 'post',
|
|
232
|
+
route: '/auth/login',
|
|
233
|
+
func: { func: mockFunc },
|
|
234
|
+
auth: false,
|
|
235
|
+
},
|
|
236
|
+
],
|
|
237
|
+
})
|
|
238
|
+
|
|
239
|
+
const routes = pikkuState(null, 'http', 'routes')
|
|
240
|
+
const todosRoute = routes.get('get')?.get('/todos')
|
|
241
|
+
const loginRoute = routes.get('post')?.get('/auth/login')
|
|
242
|
+
|
|
243
|
+
assert.strictEqual(todosRoute?.auth, true)
|
|
244
|
+
assert.strictEqual(loginRoute?.auth, false)
|
|
245
|
+
})
|
|
246
|
+
|
|
247
|
+
test('should wire routes from defineHTTPRoutes contracts', () => {
|
|
248
|
+
const todosRoutes = defineHTTPRoutes({
|
|
249
|
+
tags: ['todos'],
|
|
250
|
+
routes: {
|
|
251
|
+
list: { method: 'get', route: '/todos', func: { func: mockFunc } },
|
|
252
|
+
},
|
|
253
|
+
})
|
|
254
|
+
|
|
255
|
+
setupFunctionMeta([{ method: 'get', route: '/api/todos' }])
|
|
256
|
+
|
|
257
|
+
wireHTTPRoutes({
|
|
258
|
+
basePath: '/api',
|
|
259
|
+
tags: ['api'],
|
|
260
|
+
routes: {
|
|
261
|
+
todos: todosRoutes,
|
|
262
|
+
},
|
|
263
|
+
})
|
|
264
|
+
|
|
265
|
+
const routes = pikkuState(null, 'http', 'routes')
|
|
266
|
+
const route = routes.get('get')?.get('/api/todos')
|
|
267
|
+
assert.ok(route)
|
|
268
|
+
assert.deepStrictEqual(route?.tags, ['api', 'todos'])
|
|
269
|
+
})
|
|
270
|
+
|
|
271
|
+
test('should cascade basePath from multiple levels', () => {
|
|
272
|
+
const todosRoutes = defineHTTPRoutes({
|
|
273
|
+
basePath: '/todos',
|
|
274
|
+
routes: {
|
|
275
|
+
list: { method: 'get', route: '', func: { func: mockFunc } },
|
|
276
|
+
get: { method: 'get', route: '/:id', func: { func: mockFunc } },
|
|
277
|
+
},
|
|
278
|
+
})
|
|
279
|
+
|
|
280
|
+
setupFunctionMeta([
|
|
281
|
+
{ method: 'get', route: '/api/v1/todos' },
|
|
282
|
+
{ method: 'get', route: '/api/v1/todos/:id' },
|
|
283
|
+
])
|
|
284
|
+
|
|
285
|
+
wireHTTPRoutes({
|
|
286
|
+
basePath: '/api/v1',
|
|
287
|
+
routes: {
|
|
288
|
+
todos: todosRoutes,
|
|
289
|
+
},
|
|
290
|
+
})
|
|
291
|
+
|
|
292
|
+
const routes = pikkuState(null, 'http', 'routes')
|
|
293
|
+
assert.ok(routes.get('get')?.has('/api/v1/todos'))
|
|
294
|
+
assert.ok(routes.get('get')?.has('/api/v1/todos/:id'))
|
|
295
|
+
})
|
|
296
|
+
|
|
297
|
+
test('should handle deeply nested route maps', () => {
|
|
298
|
+
setupFunctionMeta([
|
|
299
|
+
{ method: 'get', route: '/todos' },
|
|
300
|
+
{ method: 'get', route: '/todos/:id' },
|
|
301
|
+
])
|
|
302
|
+
|
|
303
|
+
wireHTTPRoutes({
|
|
304
|
+
routes: {
|
|
305
|
+
level1: {
|
|
306
|
+
level2: {
|
|
307
|
+
list: { method: 'get', route: '/todos', func: { func: mockFunc } },
|
|
308
|
+
get: {
|
|
309
|
+
method: 'get',
|
|
310
|
+
route: '/todos/:id',
|
|
311
|
+
func: { func: mockFunc },
|
|
312
|
+
},
|
|
313
|
+
},
|
|
314
|
+
},
|
|
315
|
+
},
|
|
316
|
+
})
|
|
317
|
+
|
|
318
|
+
const routes = pikkuState(null, 'http', 'routes')
|
|
319
|
+
assert.ok(routes.get('get')?.has('/todos'))
|
|
320
|
+
assert.ok(routes.get('get')?.has('/todos/:id'))
|
|
321
|
+
})
|
|
322
|
+
})
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
HTTPRouteConfig,
|
|
3
|
+
HTTPRouteMap,
|
|
4
|
+
HTTPRouteContract,
|
|
5
|
+
HTTPRoutesGroupConfig,
|
|
6
|
+
WireHTTPRoutesConfig,
|
|
7
|
+
} from './http.types.js'
|
|
8
|
+
import { wireHTTP } from './http-runner.js'
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Type-safe helper for defining route contracts that can be composed.
|
|
12
|
+
* Supports optional group-level config that cascades to all routes.
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
* ```typescript
|
|
16
|
+
* // Simple routes without group config
|
|
17
|
+
* export const todosRoutes = defineHTTPRoutes({
|
|
18
|
+
* list: { method: 'get', route: '/todos', func: listTodos },
|
|
19
|
+
* get: { method: 'get', route: '/todos/:id', func: getTodo },
|
|
20
|
+
* })
|
|
21
|
+
*
|
|
22
|
+
* // Routes with group-level config
|
|
23
|
+
* export const todosRoutes = defineHTTPRoutes({
|
|
24
|
+
* auth: true,
|
|
25
|
+
* tags: ['todos'],
|
|
26
|
+
* routes: {
|
|
27
|
+
* list: { method: 'get', route: '/todos', func: listTodos },
|
|
28
|
+
* get: { method: 'get', route: '/todos/:id', func: getTodo },
|
|
29
|
+
* }
|
|
30
|
+
* })
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
export function defineHTTPRoutes<T extends HTTPRouteMap>(
|
|
34
|
+
routes: T
|
|
35
|
+
): HTTPRouteContract<T>
|
|
36
|
+
export function defineHTTPRoutes<T extends HTTPRouteMap>(
|
|
37
|
+
config: HTTPRoutesGroupConfig & { routes: T }
|
|
38
|
+
): HTTPRouteContract<T>
|
|
39
|
+
export function defineHTTPRoutes<T extends HTTPRouteMap>(
|
|
40
|
+
configOrRoutes: T | (HTTPRoutesGroupConfig & { routes: T })
|
|
41
|
+
): HTTPRouteContract<T> {
|
|
42
|
+
// If it has a 'routes' property and contains a map (not a route config), it's config + routes
|
|
43
|
+
if (
|
|
44
|
+
'routes' in configOrRoutes &&
|
|
45
|
+
typeof configOrRoutes.routes === 'object' &&
|
|
46
|
+
!isRouteConfig(configOrRoutes.routes)
|
|
47
|
+
) {
|
|
48
|
+
return configOrRoutes as HTTPRouteContract<T>
|
|
49
|
+
}
|
|
50
|
+
// Otherwise it's just routes
|
|
51
|
+
return { routes: configOrRoutes as T }
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Wires multiple HTTP routes from a nested map or array configuration.
|
|
56
|
+
* Inspired by ts-rest's contract pattern, provides a single place to wire an entire API.
|
|
57
|
+
*
|
|
58
|
+
* @example
|
|
59
|
+
* ```typescript
|
|
60
|
+
* // Nested object format
|
|
61
|
+
* wireHTTPRoutes({
|
|
62
|
+
* basePath: '/api/v1',
|
|
63
|
+
* tags: ['api'],
|
|
64
|
+
* routes: {
|
|
65
|
+
* todos: {
|
|
66
|
+
* list: { method: 'get', route: '/todos', func: listTodos },
|
|
67
|
+
* get: { method: 'get', route: '/todos/:id', func: getTodo },
|
|
68
|
+
* },
|
|
69
|
+
* auth: {
|
|
70
|
+
* login: { method: 'post', route: '/auth/login', func: login, auth: false },
|
|
71
|
+
* },
|
|
72
|
+
* },
|
|
73
|
+
* })
|
|
74
|
+
*
|
|
75
|
+
* // Flat array format
|
|
76
|
+
* wireHTTPRoutes({
|
|
77
|
+
* basePath: '/api',
|
|
78
|
+
* routes: [
|
|
79
|
+
* { method: 'get', route: '/todos', func: listTodos },
|
|
80
|
+
* { method: 'post', route: '/todos', func: createTodo },
|
|
81
|
+
* ],
|
|
82
|
+
* })
|
|
83
|
+
*
|
|
84
|
+
* // Composing route contracts
|
|
85
|
+
* wireHTTPRoutes({
|
|
86
|
+
* basePath: '/api/v1',
|
|
87
|
+
* routes: {
|
|
88
|
+
* todos: todosRoutes, // from defineHTTPRoutes()
|
|
89
|
+
* auth: authRoutes, // from defineHTTPRoutes()
|
|
90
|
+
* },
|
|
91
|
+
* })
|
|
92
|
+
* ```
|
|
93
|
+
*/
|
|
94
|
+
export const wireHTTPRoutes = (config: WireHTTPRoutesConfig): void => {
|
|
95
|
+
const { routes, ...groupConfig } = config
|
|
96
|
+
|
|
97
|
+
if (Array.isArray(routes)) {
|
|
98
|
+
routes.forEach((route) => registerRoute(route, groupConfig))
|
|
99
|
+
} else {
|
|
100
|
+
processRouteMap(routes, groupConfig)
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Recursively processes a route map, handling nested maps and contracts
|
|
106
|
+
*/
|
|
107
|
+
function processRouteMap(
|
|
108
|
+
map: HTTPRouteMap,
|
|
109
|
+
parentConfig: HTTPRoutesGroupConfig
|
|
110
|
+
): void {
|
|
111
|
+
for (const [_key, value] of Object.entries(map)) {
|
|
112
|
+
if (isRouteConfig(value)) {
|
|
113
|
+
registerRoute(value, parentConfig)
|
|
114
|
+
} else if (isRouteContract(value)) {
|
|
115
|
+
// Merge parent config with contract config, then process routes
|
|
116
|
+
const mergedConfig = mergeGroupConfig(parentConfig, value)
|
|
117
|
+
processRouteMap(value.routes, mergedConfig)
|
|
118
|
+
} else {
|
|
119
|
+
// Nested map without config
|
|
120
|
+
processRouteMap(value as HTTPRouteMap, parentConfig)
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Merge group configs with proper cascading behavior:
|
|
127
|
+
* - basePath: Concatenates
|
|
128
|
+
* - tags: Merges (parent + child)
|
|
129
|
+
* - middleware: Merges (parent runs first)
|
|
130
|
+
* - auth: Inner overrides outer
|
|
131
|
+
* - permissions: Inner overrides outer
|
|
132
|
+
*/
|
|
133
|
+
function mergeGroupConfig(
|
|
134
|
+
parent: HTTPRoutesGroupConfig,
|
|
135
|
+
child: HTTPRoutesGroupConfig
|
|
136
|
+
): HTTPRoutesGroupConfig {
|
|
137
|
+
return {
|
|
138
|
+
basePath: (parent.basePath || '') + (child.basePath || ''),
|
|
139
|
+
tags: [...(parent.tags || []), ...(child.tags || [])],
|
|
140
|
+
middleware: [...(parent.middleware || []), ...(child.middleware || [])],
|
|
141
|
+
auth: child.auth ?? parent.auth,
|
|
142
|
+
permissions: child.permissions ?? parent.permissions,
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Registers a single route by calling wireHTTP with merged configuration
|
|
148
|
+
*/
|
|
149
|
+
function registerRoute(
|
|
150
|
+
route: HTTPRouteConfig,
|
|
151
|
+
groupConfig: HTTPRoutesGroupConfig
|
|
152
|
+
): void {
|
|
153
|
+
const fullRoute = (groupConfig.basePath || '') + route.route
|
|
154
|
+
|
|
155
|
+
wireHTTP({
|
|
156
|
+
method: route.method,
|
|
157
|
+
route: fullRoute,
|
|
158
|
+
func: route.func,
|
|
159
|
+
auth: route.auth ?? groupConfig.auth,
|
|
160
|
+
tags: [...(groupConfig.tags || []), ...(route.tags || [])],
|
|
161
|
+
middleware: [
|
|
162
|
+
...(groupConfig.middleware || []),
|
|
163
|
+
...(route.middleware || []),
|
|
164
|
+
],
|
|
165
|
+
permissions: route.permissions ?? groupConfig.permissions,
|
|
166
|
+
contentType: route.contentType,
|
|
167
|
+
timeout: route.timeout,
|
|
168
|
+
headers: route.headers,
|
|
169
|
+
docs: route.docs,
|
|
170
|
+
sse: route.sse,
|
|
171
|
+
} as any)
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Type guard to check if a value is an individual route config
|
|
176
|
+
*/
|
|
177
|
+
function isRouteConfig(value: unknown): value is HTTPRouteConfig {
|
|
178
|
+
return (
|
|
179
|
+
typeof value === 'object' &&
|
|
180
|
+
value !== null &&
|
|
181
|
+
'method' in value &&
|
|
182
|
+
'func' in value &&
|
|
183
|
+
'route' in value
|
|
184
|
+
)
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Type guard to check if a value is a route contract (has routes property but is not a route config)
|
|
189
|
+
*/
|
|
190
|
+
function isRouteContract(value: unknown): value is HTTPRouteContract {
|
|
191
|
+
return (
|
|
192
|
+
typeof value === 'object' &&
|
|
193
|
+
value !== null &&
|
|
194
|
+
'routes' in value &&
|
|
195
|
+
!('method' in value) &&
|
|
196
|
+
!('func' in value)
|
|
197
|
+
)
|
|
198
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { test, describe, beforeEach, afterEach } from 'node:test'
|
|
2
2
|
import * as assert from 'assert'
|
|
3
3
|
import { NotFoundError } from '../../errors/errors.js'
|
|
4
|
-
import { JSONValue, CorePikkuMiddleware } from '../../types/core.types.js'
|
|
4
|
+
import type { JSONValue, CorePikkuMiddleware } from '../../types/core.types.js'
|
|
5
5
|
import { fetch, wireHTTP } from './http-runner.js'
|
|
6
6
|
import { pikkuState, resetPikkuState } from '../../pikku-state.js'
|
|
7
7
|
import {
|
|
@@ -12,21 +12,21 @@ import { addFunction } from '../../function/function-runner.js'
|
|
|
12
12
|
import { httpRouter } from './routers/http-router.js'
|
|
13
13
|
|
|
14
14
|
const sessionMiddleware: CorePikkuMiddleware = async (services, wire, next) => {
|
|
15
|
-
wire.
|
|
15
|
+
wire.setSession?.({ userId: 'test' } as any)
|
|
16
16
|
await next()
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
const setHTTPFunctionMap = (func: any) => {
|
|
20
20
|
pikkuState(null, 'function', 'meta', {
|
|
21
21
|
pikku_func_name: {
|
|
22
|
-
|
|
22
|
+
pikkuFuncId: 'pikku_func_name',
|
|
23
23
|
services: ['userSession'],
|
|
24
24
|
},
|
|
25
25
|
} as any)
|
|
26
26
|
pikkuState(null, 'http', 'meta', {
|
|
27
27
|
get: {
|
|
28
28
|
test: {
|
|
29
|
-
|
|
29
|
+
pikkuFuncId: 'pikku_func_name',
|
|
30
30
|
route: 'test',
|
|
31
31
|
method: 'get',
|
|
32
32
|
},
|
|
@@ -42,8 +42,6 @@ const setHTTPFunctionMap = (func: any) => {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
describe('fetch', () => {
|
|
45
|
-
let singletonServices: any
|
|
46
|
-
let createWireServices: any
|
|
47
45
|
let request: any
|
|
48
46
|
let response: any
|
|
49
47
|
|
|
@@ -51,7 +49,7 @@ describe('fetch', () => {
|
|
|
51
49
|
resetPikkuState()
|
|
52
50
|
httpRouter.reset()
|
|
53
51
|
|
|
54
|
-
singletonServices = {
|
|
52
|
+
const singletonServices = {
|
|
55
53
|
logger: {
|
|
56
54
|
info: () => {},
|
|
57
55
|
warn: () => {},
|
|
@@ -59,7 +57,11 @@ describe('fetch', () => {
|
|
|
59
57
|
},
|
|
60
58
|
}
|
|
61
59
|
|
|
62
|
-
createWireServices = async () => ({})
|
|
60
|
+
const createWireServices = async () => ({})
|
|
61
|
+
|
|
62
|
+
pikkuState(null, 'package', 'singletonServices', singletonServices as any)
|
|
63
|
+
pikkuState(null, 'package', 'factories', { createWireServices } as any)
|
|
64
|
+
|
|
63
65
|
request = new PikkuMockRequest('/test', 'get')
|
|
64
66
|
response = new PikkuMockResponse()
|
|
65
67
|
|
|
@@ -76,8 +78,6 @@ describe('fetch', () => {
|
|
|
76
78
|
await assert.rejects(
|
|
77
79
|
async () =>
|
|
78
80
|
fetch(request, {
|
|
79
|
-
singletonServices,
|
|
80
|
-
createWireServices,
|
|
81
81
|
bubbleErrors: true,
|
|
82
82
|
}),
|
|
83
83
|
NotFoundError
|
|
@@ -97,10 +97,7 @@ describe('fetch', () => {
|
|
|
97
97
|
// Initialize router after adding route (for tests)
|
|
98
98
|
httpRouter.initialize()
|
|
99
99
|
|
|
100
|
-
const result = await fetch(request
|
|
101
|
-
singletonServices,
|
|
102
|
-
createWireServices,
|
|
103
|
-
})
|
|
100
|
+
const result = await fetch(request)
|
|
104
101
|
|
|
105
102
|
assert.deepStrictEqual(await result.json(), { success: true })
|
|
106
103
|
})
|
|
@@ -120,10 +117,7 @@ describe('fetch', () => {
|
|
|
120
117
|
},
|
|
121
118
|
})
|
|
122
119
|
|
|
123
|
-
await fetch(request
|
|
124
|
-
singletonServices,
|
|
125
|
-
createWireServices,
|
|
126
|
-
})
|
|
120
|
+
await fetch(request)
|
|
127
121
|
|
|
128
122
|
assert.strictEqual(await permissions.test(), true)
|
|
129
123
|
})
|
|
@@ -142,8 +136,6 @@ describe('fetch', () => {
|
|
|
142
136
|
await assert.rejects(
|
|
143
137
|
async () =>
|
|
144
138
|
fetch(request, {
|
|
145
|
-
singletonServices,
|
|
146
|
-
createWireServices,
|
|
147
139
|
bubbleErrors: true,
|
|
148
140
|
}),
|
|
149
141
|
error
|