takos-control 1.0.0
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/package.json +169 -0
- package/src/__tests__/db-runtime-contracts.test.ts +57 -0
- package/src/adapters/analytics-engine-binding.ts +104 -0
- package/src/adapters/dynamo-kv-store.ts +284 -0
- package/src/adapters/firestore-kv-store.ts +287 -0
- package/src/adapters/gcs-object-store.ts +506 -0
- package/src/adapters/openai-binding.ts +83 -0
- package/src/adapters/pgvector-store.ts +236 -0
- package/src/adapters/pubsub-queue.ts +127 -0
- package/src/adapters/r2-compat-types.ts +54 -0
- package/src/adapters/s3-object-store.ts +539 -0
- package/src/adapters/sqs-queue.ts +133 -0
- package/src/adapters/workflow-binding.ts +131 -0
- package/src/application/services/actions/actions-env.ts +49 -0
- package/src/application/services/actions/actions-execution.ts +156 -0
- package/src/application/services/actions/actions-triggers.ts +224 -0
- package/src/application/services/actions/index.ts +18 -0
- package/src/application/services/activitypub/remote-install.ts +170 -0
- package/src/application/services/activitypub/remote-store-client.ts +435 -0
- package/src/application/services/activitypub/store-registry.ts +341 -0
- package/src/application/services/activitypub/store-subscription.ts +240 -0
- package/src/application/services/activitypub/stores.ts +389 -0
- package/src/application/services/agent/agent-models.ts +55 -0
- package/src/application/services/agent/delegation.ts +328 -0
- package/src/application/services/agent/execute-run.ts +46 -0
- package/src/application/services/agent/index.ts +46 -0
- package/src/application/services/agent/langgraph-agent.ts +282 -0
- package/src/application/services/agent/langgraph-checkpointer.ts +556 -0
- package/src/application/services/agent/langgraph-graph.ts +357 -0
- package/src/application/services/agent/langgraph-runner.ts +326 -0
- package/src/application/services/agent/langgraph-tools.ts +157 -0
- package/src/application/services/agent/llm-manager.ts +51 -0
- package/src/application/services/agent/llm.ts +106 -0
- package/src/application/services/agent/memory-manager.ts +84 -0
- package/src/application/services/agent/message-persistence.ts +151 -0
- package/src/application/services/agent/message-utils.ts +167 -0
- package/src/application/services/agent/model-catalog.ts +71 -0
- package/src/application/services/agent/official-skills.ts +437 -0
- package/src/application/services/agent/prompt-assets.generated.ts +23 -0
- package/src/application/services/agent/prompt-budget.ts +140 -0
- package/src/application/services/agent/prompt-builder.ts +72 -0
- package/src/application/services/agent/prompts/core.md +9 -0
- package/src/application/services/agent/prompts/general-workflow.md +6 -0
- package/src/application/services/agent/prompts/modes/assistant.md +4 -0
- package/src/application/services/agent/prompts/modes/default.md +8 -0
- package/src/application/services/agent/prompts/modes/implementer.md +5 -0
- package/src/application/services/agent/prompts/modes/planner.md +4 -0
- package/src/application/services/agent/prompts/modes/researcher.md +5 -0
- package/src/application/services/agent/prompts/modes/reviewer.md +4 -0
- package/src/application/services/agent/prompts/response-guidelines.md +20 -0
- package/src/application/services/agent/prompts/runtime-tool-catalog-empty.md +3 -0
- package/src/application/services/agent/prompts/runtime-tool-catalog-header.md +3 -0
- package/src/application/services/agent/prompts/runtime-tool-catalog-selective.md +8 -0
- package/src/application/services/agent/prompts/skills/planning-structurer.en.md +1 -0
- package/src/application/services/agent/prompts/skills/planning-structurer.ja.md +1 -0
- package/src/application/services/agent/prompts/skills/repo-app-operator.en.md +1 -0
- package/src/application/services/agent/prompts/skills/repo-app-operator.ja.md +1 -0
- package/src/application/services/agent/prompts/skills/research-brief.en.md +1 -0
- package/src/application/services/agent/prompts/skills/research-brief.ja.md +1 -0
- package/src/application/services/agent/prompts/skills/slides-author.en.md +1 -0
- package/src/application/services/agent/prompts/skills/slides-author.ja.md +1 -0
- package/src/application/services/agent/prompts/skills/writing-draft.en.md +1 -0
- package/src/application/services/agent/prompts/skills/writing-draft.ja.md +1 -0
- package/src/application/services/agent/prompts/tool-runtime-rules.md +6 -0
- package/src/application/services/agent/providers/llm-providers.ts +484 -0
- package/src/application/services/agent/remote-tool-executor.ts +78 -0
- package/src/application/services/agent/run-lifecycle.ts +59 -0
- package/src/application/services/agent/runner-config.ts +77 -0
- package/src/application/services/agent/runner-events.ts +169 -0
- package/src/application/services/agent/runner-history.ts +368 -0
- package/src/application/services/agent/runner-types.ts +73 -0
- package/src/application/services/agent/runner.ts +682 -0
- package/src/application/services/agent/security/injection-detector.ts +145 -0
- package/src/application/services/agent/session-closer.ts +438 -0
- package/src/application/services/agent/simple-loop.ts +367 -0
- package/src/application/services/agent/skill-contracts.ts +21 -0
- package/src/application/services/agent/skill-loader.ts +319 -0
- package/src/application/services/agent/skill-plan.ts +67 -0
- package/src/application/services/agent/skill-resolution.ts +328 -0
- package/src/application/services/agent/skill-scoring.ts +261 -0
- package/src/application/services/agent/skill-templates.ts +51 -0
- package/src/application/services/agent/skills.ts +54 -0
- package/src/application/services/agent/thread-context.ts +472 -0
- package/src/application/services/agent/workflow-pr.ts +150 -0
- package/src/application/services/agent/workflow-review.ts +116 -0
- package/src/application/services/agent/workflow-session.ts +156 -0
- package/src/application/services/agent/workflow-types.ts +133 -0
- package/src/application/services/agent/workflow.ts +264 -0
- package/src/application/services/billing/billing-accounts.ts +165 -0
- package/src/application/services/billing/billing-plans.ts +252 -0
- package/src/application/services/billing/billing-run-usage.ts +89 -0
- package/src/application/services/billing/billing-types.ts +94 -0
- package/src/application/services/billing/billing-usage.ts +370 -0
- package/src/application/services/billing/billing.ts +64 -0
- package/src/application/services/billing/stripe.ts +331 -0
- package/src/application/services/cloudflare/api-client.ts +195 -0
- package/src/application/services/cloudflare/resources.ts +134 -0
- package/src/application/services/common-env/audit.ts +65 -0
- package/src/application/services/common-env/crypto.ts +184 -0
- package/src/application/services/common-env/db-helpers.ts +16 -0
- package/src/application/services/common-env/index.ts +4 -0
- package/src/application/services/common-env/link-state.ts +70 -0
- package/src/application/services/common-env/maintenance.ts +36 -0
- package/src/application/services/common-env/manual-link-ops.ts +385 -0
- package/src/application/services/common-env/orchestrator.ts +146 -0
- package/src/application/services/common-env/reconcile-jobs.ts +529 -0
- package/src/application/services/common-env/reconciler.ts +103 -0
- package/src/application/services/common-env/repository.ts +185 -0
- package/src/application/services/common-env/service-link-ops.ts +144 -0
- package/src/application/services/common-env/service.ts +355 -0
- package/src/application/services/common-env/space-env-ops.ts +245 -0
- package/src/application/services/common-env/takos-builtins.ts +386 -0
- package/src/application/services/deployment/artifacts.ts +105 -0
- package/src/application/services/deployment/deployment-artifacts.ts +143 -0
- package/src/application/services/deployment/execute.ts +364 -0
- package/src/application/services/deployment/group-deploy-manifest.ts +71 -0
- package/src/application/services/deployment/group-deploy-types.ts +116 -0
- package/src/application/services/deployment/group-deploy.ts +349 -0
- package/src/application/services/deployment/index.ts +7 -0
- package/src/application/services/deployment/models.ts +154 -0
- package/src/application/services/deployment/provider.ts +358 -0
- package/src/application/services/deployment/resource-provisioner.ts +175 -0
- package/src/application/services/deployment/rollback-orchestrator.ts +260 -0
- package/src/application/services/deployment/rollback.ts +110 -0
- package/src/application/services/deployment/routing.ts +311 -0
- package/src/application/services/deployment/service.ts +325 -0
- package/src/application/services/deployment/state.ts +85 -0
- package/src/application/services/deployment/store.ts +386 -0
- package/src/application/services/deployment/wrangler-config-gen.ts +182 -0
- package/src/application/services/execution/embeddings.ts +457 -0
- package/src/application/services/execution/run-creation.ts +138 -0
- package/src/application/services/execution/run-events.ts +127 -0
- package/src/application/services/execution/runtime-request-handler.ts +173 -0
- package/src/application/services/execution/sql-validation.ts +202 -0
- package/src/application/services/execution/workflow-engine-converters.ts +75 -0
- package/src/application/services/execution/workflow-engine-types.ts +77 -0
- package/src/application/services/execution/workflow-engine.ts +104 -0
- package/src/application/services/execution/workflow-job-scheduler.ts +344 -0
- package/src/application/services/execution/workflow-run-lifecycle.ts +389 -0
- package/src/application/services/execution/workflow-storage.ts +83 -0
- package/src/application/services/git-smart/client/fetch-pack.ts +167 -0
- package/src/application/services/git-smart/client/fetch-refs.ts +134 -0
- package/src/application/services/git-smart/client/index.ts +10 -0
- package/src/application/services/git-smart/core/commit-index.ts +436 -0
- package/src/application/services/git-smart/core/merge.ts +102 -0
- package/src/application/services/git-smart/core/object-store.ts +235 -0
- package/src/application/services/git-smart/core/object.ts +238 -0
- package/src/application/services/git-smart/core/readable-commit.ts +59 -0
- package/src/application/services/git-smart/core/refs.ts +364 -0
- package/src/application/services/git-smart/core/sha1.ts +40 -0
- package/src/application/services/git-smart/core/tree-ops.ts +228 -0
- package/src/application/services/git-smart/git-objects.ts +122 -0
- package/src/application/services/git-smart/index.ts +135 -0
- package/src/application/services/git-smart/operations.ts +154 -0
- package/src/application/services/git-smart/protocol/capabilities.ts +28 -0
- package/src/application/services/git-smart/protocol/packfile-reader.ts +368 -0
- package/src/application/services/git-smart/protocol/packfile-writer.ts +129 -0
- package/src/application/services/git-smart/protocol/pkt-line.ts +97 -0
- package/src/application/services/git-smart/smart-http/info-refs.ts +67 -0
- package/src/application/services/git-smart/smart-http/receive-pack.ts +485 -0
- package/src/application/services/git-smart/smart-http/upload-pack.ts +72 -0
- package/src/application/services/identity/auth-utils.ts +432 -0
- package/src/application/services/identity/locale.ts +19 -0
- package/src/application/services/identity/membership-resolver.ts +28 -0
- package/src/application/services/identity/principals.ts +76 -0
- package/src/application/services/identity/profile-activity.ts +248 -0
- package/src/application/services/identity/response-formatters.ts +88 -0
- package/src/application/services/identity/session.ts +221 -0
- package/src/application/services/identity/shortcut-groups.ts +421 -0
- package/src/application/services/identity/shortcuts.ts +216 -0
- package/src/application/services/identity/space-access.ts +128 -0
- package/src/application/services/identity/space-crud.ts +494 -0
- package/src/application/services/identity/space-members.ts +177 -0
- package/src/application/services/identity/space-models.ts +50 -0
- package/src/application/services/identity/spaces.ts +29 -0
- package/src/application/services/identity/takos-access-tokens.ts +149 -0
- package/src/application/services/identity/user-cache.ts +66 -0
- package/src/application/services/identity/user-settings.ts +146 -0
- package/src/application/services/maintenance/backup-maintenance.ts +453 -0
- package/src/application/services/maintenance/custom-domain-maintenance.ts +415 -0
- package/src/application/services/maintenance/index.ts +31 -0
- package/src/application/services/maintenance/resource-orphan-gc.ts +66 -0
- package/src/application/services/maintenance/session-maintenance.ts +50 -0
- package/src/application/services/maintenance/snapshot-maintenance.ts +147 -0
- package/src/application/services/memory/consolidation.ts +365 -0
- package/src/application/services/memory/extractor.ts +320 -0
- package/src/application/services/memory/index.ts +17 -0
- package/src/application/services/memory/llm-parser.ts +44 -0
- package/src/application/services/memory/memories.ts +392 -0
- package/src/application/services/memory-graph/activation.ts +60 -0
- package/src/application/services/memory-graph/claim-store.ts +306 -0
- package/src/application/services/memory-graph/graph-models.ts +119 -0
- package/src/application/services/memory-graph/memory-graph-runtime.ts +220 -0
- package/src/application/services/memory-graph/observer.ts +158 -0
- package/src/application/services/memory-graph/overlay.ts +101 -0
- package/src/application/services/notifications/notification-models.ts +58 -0
- package/src/application/services/notifications/service.ts +522 -0
- package/src/application/services/oauth/audit.ts +50 -0
- package/src/application/services/oauth/authorization.ts +286 -0
- package/src/application/services/oauth/client.ts +346 -0
- package/src/application/services/oauth/consent.ts +244 -0
- package/src/application/services/oauth/device.ts +295 -0
- package/src/application/services/oauth/pkce.ts +60 -0
- package/src/application/services/oauth/scopes.ts +61 -0
- package/src/application/services/oauth/token.ts +555 -0
- package/src/application/services/offload/index.ts +31 -0
- package/src/application/services/offload/messages.ts +67 -0
- package/src/application/services/offload/run-events.ts +128 -0
- package/src/application/services/offload/usage-client.ts +39 -0
- package/src/application/services/offload/usage-events.ts +100 -0
- package/src/application/services/platform/app-deployments.ts +397 -0
- package/src/application/services/platform/capabilities.ts +288 -0
- package/src/application/services/platform/custom-domains/access.ts +93 -0
- package/src/application/services/platform/custom-domains/cloudflare.ts +64 -0
- package/src/application/services/platform/custom-domains/dns.ts +55 -0
- package/src/application/services/platform/custom-domains/domain-crud.ts +230 -0
- package/src/application/services/platform/custom-domains/domain-models.ts +71 -0
- package/src/application/services/platform/custom-domains/domain-verification.ts +345 -0
- package/src/application/services/platform/custom-domains.ts +27 -0
- package/src/application/services/platform/desired-state-types.ts +111 -0
- package/src/application/services/platform/env-state-resolution.ts +249 -0
- package/src/application/services/platform/infra.ts +246 -0
- package/src/application/services/platform/mcp/crud.ts +343 -0
- package/src/application/services/platform/mcp/crypto.ts +63 -0
- package/src/application/services/platform/mcp/mcp-models.ts +119 -0
- package/src/application/services/platform/mcp/oauth.ts +375 -0
- package/src/application/services/platform/mcp/validation.ts +69 -0
- package/src/application/services/platform/mcp.ts +51 -0
- package/src/application/services/platform/resource-bindings.ts +172 -0
- package/src/application/services/platform/rollout-health.ts +48 -0
- package/src/application/services/platform/rollout.ts +358 -0
- package/src/application/services/platform/runtime-config.ts +155 -0
- package/src/application/services/platform/ui-extensions.ts +190 -0
- package/src/application/services/platform/worker-desired-state.ts +397 -0
- package/src/application/services/platform/workers.ts +426 -0
- package/src/application/services/platform/workflow-artifacts.ts +204 -0
- package/src/application/services/pull-requests/ai-review.ts +362 -0
- package/src/application/services/pull-requests/event-tasks.ts +67 -0
- package/src/application/services/pull-requests/index.ts +25 -0
- package/src/application/services/pull-requests/merge-resolution.ts +501 -0
- package/src/application/services/r2/orphaned-object-gc.ts +268 -0
- package/src/application/services/resources/access.ts +180 -0
- package/src/application/services/resources/bindings.ts +185 -0
- package/src/application/services/resources/format.ts +76 -0
- package/src/application/services/resources/index.ts +32 -0
- package/src/application/services/resources/lifecycle.ts +92 -0
- package/src/application/services/resources/store.ts +387 -0
- package/src/application/services/routing/cache.ts +176 -0
- package/src/application/services/routing/phase.ts +20 -0
- package/src/application/services/routing/resolver.ts +227 -0
- package/src/application/services/routing/routing-models.ts +46 -0
- package/src/application/services/routing/service.ts +298 -0
- package/src/application/services/routing/sharding.ts +41 -0
- package/src/application/services/run-notifier/client.ts +32 -0
- package/src/application/services/run-notifier/index.ts +20 -0
- package/src/application/services/run-notifier/run-events-contract.ts +114 -0
- package/src/application/services/run-notifier/run-failure-events.ts +62 -0
- package/src/application/services/run-notifier/run-notifier-payload.ts +28 -0
- package/src/application/services/runs/create-thread-run-store.ts +527 -0
- package/src/application/services/runs/create-thread-run-validation.ts +88 -0
- package/src/application/services/runs/run-serialization.ts +102 -0
- package/src/application/services/seed-repositories.ts +37 -0
- package/src/application/services/source/__tests__/app-manifest-template.test.ts +211 -0
- package/src/application/services/source/app-manifest-bundle.ts +427 -0
- package/src/application/services/source/app-manifest-parser.ts +375 -0
- package/src/application/services/source/app-manifest-template.ts +93 -0
- package/src/application/services/source/app-manifest-types.ts +241 -0
- package/src/application/services/source/app-manifest-validation.ts +212 -0
- package/src/application/services/source/app-manifest.ts +38 -0
- package/src/application/services/source/apps.ts +130 -0
- package/src/application/services/source/explore-catalog.ts +446 -0
- package/src/application/services/source/explore-packages.ts +612 -0
- package/src/application/services/source/explore-repos.ts +189 -0
- package/src/application/services/source/explore-types.ts +155 -0
- package/src/application/services/source/explore.ts +20 -0
- package/src/application/services/source/external-import-utils.ts +126 -0
- package/src/application/services/source/external-import.ts +430 -0
- package/src/application/services/source/fork.ts +349 -0
- package/src/application/services/source/git.ts +556 -0
- package/src/application/services/source/info-units.ts +383 -0
- package/src/application/services/source/official-packages.ts +50 -0
- package/src/application/services/source/repo-release-assets.ts +55 -0
- package/src/application/services/source/repos.ts +231 -0
- package/src/application/services/source/search.ts +247 -0
- package/src/application/services/source/skill-search.ts +315 -0
- package/src/application/services/source/skills.ts +584 -0
- package/src/application/services/source/source-exploration.ts +221 -0
- package/src/application/services/source/space-storage.ts +484 -0
- package/src/application/services/sync/git-sync-types.ts +35 -0
- package/src/application/services/sync/git-sync.ts +228 -0
- package/src/application/services/sync/index.ts +6 -0
- package/src/application/services/sync/models.ts +65 -0
- package/src/application/services/sync/runtime-session.ts +444 -0
- package/src/application/services/sync/session-files.ts +370 -0
- package/src/application/services/sync/snapshot-cleanup.ts +290 -0
- package/src/application/services/sync/snapshot-compressor.ts +79 -0
- package/src/application/services/sync/snapshot-storage.ts +136 -0
- package/src/application/services/sync/snapshot.ts +426 -0
- package/src/application/services/threads/thread-export.ts +140 -0
- package/src/application/services/threads/thread-history.ts +422 -0
- package/src/application/services/threads/thread-search.ts +299 -0
- package/src/application/services/threads/thread-service.ts +394 -0
- package/src/application/services/threads/thread-shares.ts +200 -0
- package/src/application/services/threads/thread-timeline.ts +44 -0
- package/src/application/services/wfp/assets.ts +218 -0
- package/src/application/services/wfp/bindings.ts +176 -0
- package/src/application/services/wfp/client.ts +199 -0
- package/src/application/services/wfp/d1.ts +133 -0
- package/src/application/services/wfp/index.ts +23 -0
- package/src/application/services/wfp/kv.ts +38 -0
- package/src/application/services/wfp/orchestrator.ts +339 -0
- package/src/application/services/wfp/queues.ts +77 -0
- package/src/application/services/wfp/r2.ts +131 -0
- package/src/application/services/wfp/service.ts +341 -0
- package/src/application/services/wfp/vectorize.ts +48 -0
- package/src/application/services/wfp/wfp-contracts.ts +102 -0
- package/src/application/services/wfp/worker-metadata.ts +54 -0
- package/src/application/services/wfp/workers.ts +307 -0
- package/src/application/services/workflow-runs/commands.ts +354 -0
- package/src/application/services/workflow-runs/read-model.ts +202 -0
- package/src/application/services/workflow-runs/stream.ts +54 -0
- package/src/application/tools/builtin/agent.ts +383 -0
- package/src/application/tools/builtin/artifact.ts +163 -0
- package/src/application/tools/builtin/browser/definitions.ts +167 -0
- package/src/application/tools/builtin/browser/handler-action.ts +76 -0
- package/src/application/tools/builtin/browser/handler-close.ts +31 -0
- package/src/application/tools/builtin/browser/handler-extract.ts +42 -0
- package/src/application/tools/builtin/browser/handler-goto.ts +41 -0
- package/src/application/tools/builtin/browser/handler-html.ts +38 -0
- package/src/application/tools/builtin/browser/handler-open.ts +68 -0
- package/src/application/tools/builtin/browser/handler-screenshot.ts +33 -0
- package/src/application/tools/builtin/browser/session.ts +51 -0
- package/src/application/tools/builtin/browser.ts +27 -0
- package/src/application/tools/builtin/container/availability.ts +65 -0
- package/src/application/tools/builtin/container/definitions.ts +119 -0
- package/src/application/tools/builtin/container/handler-commit.ts +182 -0
- package/src/application/tools/builtin/container/handler-create-repository.ts +54 -0
- package/src/application/tools/builtin/container/handler-start.ts +236 -0
- package/src/application/tools/builtin/container/handler-status.ts +108 -0
- package/src/application/tools/builtin/container/handler-stop.ts +64 -0
- package/src/application/tools/builtin/container/session.ts +116 -0
- package/src/application/tools/builtin/container.ts +39 -0
- package/src/application/tools/builtin/deploy.ts +65 -0
- package/src/application/tools/builtin/discovery.ts +142 -0
- package/src/application/tools/builtin/file/definitions.ts +220 -0
- package/src/application/tools/builtin/file/file-operations.ts +112 -0
- package/src/application/tools/builtin/file/handler-copy.ts +77 -0
- package/src/application/tools/builtin/file/handler-delete.ts +34 -0
- package/src/application/tools/builtin/file/handler-list.ts +26 -0
- package/src/application/tools/builtin/file/handler-mkdir.ts +25 -0
- package/src/application/tools/builtin/file/handler-read.ts +27 -0
- package/src/application/tools/builtin/file/handler-rename.ts +85 -0
- package/src/application/tools/builtin/file/handler-write-binary.ts +63 -0
- package/src/application/tools/builtin/file/handler-write.ts +41 -0
- package/src/application/tools/builtin/file/limits.ts +114 -0
- package/src/application/tools/builtin/file/session.ts +86 -0
- package/src/application/tools/builtin/file.ts +54 -0
- package/src/application/tools/builtin/index.ts +9 -0
- package/src/application/tools/builtin/info-unit.ts +403 -0
- package/src/application/tools/builtin/mcp.ts +232 -0
- package/src/application/tools/builtin/memory-graph.ts +97 -0
- package/src/application/tools/builtin/memory.ts +247 -0
- package/src/application/tools/builtin/platform/deployment-history.ts +185 -0
- package/src/application/tools/builtin/platform/deployments.ts +298 -0
- package/src/application/tools/builtin/platform/domains.ts +264 -0
- package/src/application/tools/builtin/platform/worker-settings.ts +482 -0
- package/src/application/tools/builtin/platform.ts +63 -0
- package/src/application/tools/builtin/registry.ts +133 -0
- package/src/application/tools/builtin/repo.ts +135 -0
- package/src/application/tools/builtin/runtime-tool-executor.ts +259 -0
- package/src/application/tools/builtin/space-app-deployments.ts +136 -0
- package/src/application/tools/builtin/space-common-env.ts +125 -0
- package/src/application/tools/builtin/space-files.ts +414 -0
- package/src/application/tools/builtin/space-skills.ts +482 -0
- package/src/application/tools/builtin/space-source.ts +193 -0
- package/src/application/tools/builtin/storage/d1.ts +309 -0
- package/src/application/tools/builtin/storage/kv.ts +201 -0
- package/src/application/tools/builtin/storage/r2.ts +344 -0
- package/src/application/tools/builtin/storage/resources.ts +288 -0
- package/src/application/tools/builtin/storage/validators.ts +35 -0
- package/src/application/tools/builtin/storage.ts +64 -0
- package/src/application/tools/builtin/web.ts +492 -0
- package/src/application/tools/candidate-selector.ts +131 -0
- package/src/application/tools/capabilities.ts +51 -0
- package/src/application/tools/capability-registry.ts +79 -0
- package/src/application/tools/capability-types.ts +44 -0
- package/src/application/tools/circuit-breaker.ts +149 -0
- package/src/application/tools/descriptor-builder.ts +185 -0
- package/src/application/tools/executor-setup.ts +195 -0
- package/src/application/tools/executor-utils.ts +21 -0
- package/src/application/tools/executor.ts +399 -0
- package/src/application/tools/idempotency.ts +137 -0
- package/src/application/tools/index.ts +61 -0
- package/src/application/tools/loaders/mcp-tools.ts +261 -0
- package/src/application/tools/mcp-client.ts +116 -0
- package/src/application/tools/namespace-map.ts +133 -0
- package/src/application/tools/resolver.ts +125 -0
- package/src/application/tools/tool-circuit-breaker.ts +84 -0
- package/src/application/tools/tool-definitions.ts +140 -0
- package/src/application/tools/tool-error-classifier.ts +115 -0
- package/src/application/tools/tool-permission.ts +103 -0
- package/src/application/tools/tool-policy-helpers.ts +107 -0
- package/src/application/tools/tool-policy-types.ts +98 -0
- package/src/application/tools/tool-policy.ts +579 -0
- package/src/dispatch.ts +183 -0
- package/src/index.ts +3 -0
- package/src/infra/db/client.ts +28 -0
- package/src/infra/db/index.ts +174 -0
- package/src/infra/db/schema-accounts.ts +198 -0
- package/src/infra/db/schema-agents.ts +305 -0
- package/src/infra/db/schema-auth.ts +58 -0
- package/src/infra/db/schema-billing.ts +120 -0
- package/src/infra/db/schema-oauth.ts +194 -0
- package/src/infra/db/schema-platform.ts +437 -0
- package/src/infra/db/schema-repos.ts +348 -0
- package/src/infra/db/schema-services.ts +74 -0
- package/src/infra/db/schema-workers.ts +359 -0
- package/src/infra/db/schema-workflows.ts +114 -0
- package/src/infra/db/schema.ts +172 -0
- package/src/local-platform/adapters/local.redis.test.ts +145 -0
- package/src/local-platform/bootstrap.test.ts +1374 -0
- package/src/local-platform/bootstrap.ts +1 -0
- package/src/local-platform/cloudflare-containers-shim.mjs +28 -0
- package/src/local-platform/cloudflare-workers-shim.mjs +8 -0
- package/src/local-platform/container-backend.ts +65 -0
- package/src/local-platform/d1-migrations.ts +338 -0
- package/src/local-platform/d1-prepared-statement.ts +104 -0
- package/src/local-platform/d1-shared.ts +131 -0
- package/src/local-platform/d1-sql-rewrite.ts +386 -0
- package/src/local-platform/docker-container-backend.ts +205 -0
- package/src/local-platform/execution-context.ts +24 -0
- package/src/local-platform/executor-control-rpc.ts +398 -0
- package/src/local-platform/fetch-server.ts +8 -0
- package/src/local-platform/in-memory-bindings.test.ts +49 -0
- package/src/local-platform/in-memory-bindings.ts +91 -0
- package/src/local-platform/in-memory-d1.ts +126 -0
- package/src/local-platform/in-memory-kv.ts +84 -0
- package/src/local-platform/in-memory-queue.ts +23 -0
- package/src/local-platform/in-memory-r2.ts +272 -0
- package/src/local-platform/k8s-container-backend.ts +364 -0
- package/src/local-platform/load-adapter.ts +42 -0
- package/src/local-platform/miniflare-bindings.ts +353 -0
- package/src/local-platform/miniflare-registry.ts +351 -0
- package/src/local-platform/node-fetch-server.ts +70 -0
- package/src/local-platform/node-resolve-loader.mjs +97 -0
- package/src/local-platform/oci-orchestrator-node.ts +23 -0
- package/src/local-platform/oci-orchestrator.test.ts +110 -0
- package/src/local-platform/oci-orchestrator.ts +529 -0
- package/src/local-platform/persistent-bindings.test.ts +173 -0
- package/src/local-platform/persistent-bindings.ts +6 -0
- package/src/local-platform/persistent-d1.ts +171 -0
- package/src/local-platform/persistent-durable-objects.ts +57 -0
- package/src/local-platform/persistent-kv.ts +121 -0
- package/src/local-platform/persistent-queue.ts +59 -0
- package/src/local-platform/persistent-r2.test.ts +72 -0
- package/src/local-platform/persistent-r2.ts +376 -0
- package/src/local-platform/persistent-shared.ts +27 -0
- package/src/local-platform/public-runtime-contract.test.ts +211 -0
- package/src/local-platform/queue-runtime.ts +85 -0
- package/src/local-platform/redis-bindings.ts +185 -0
- package/src/local-platform/routing-store.ts +118 -0
- package/src/local-platform/run-smoke-proxyless.ts +67 -0
- package/src/local-platform/run-smoke.ts +176 -0
- package/src/local-platform/runtime-env.ts +114 -0
- package/src/local-platform/runtime-gateway-stubs.ts +168 -0
- package/src/local-platform/runtime-host-fetch.ts +154 -0
- package/src/local-platform/runtime-http.ts +63 -0
- package/src/local-platform/runtime-types.ts +96 -0
- package/src/local-platform/runtime.ts +114 -0
- package/src/local-platform/tenant-binding-polyfills.ts +203 -0
- package/src/local-platform/tenant-binding-rpc.ts +216 -0
- package/src/local-platform/tenant-resource-limits.ts +32 -0
- package/src/local-platform/tenant-worker-runtime.ts +179 -0
- package/src/local-platform/url-registry.ts +75 -0
- package/src/local-platform/worker.test.ts +78 -0
- package/src/local-platform/worker.ts +186 -0
- package/src/node-platform/env-builder.ts +317 -0
- package/src/node-platform/index.ts +7 -0
- package/src/node-platform/resolvers/ai-resolver.ts +39 -0
- package/src/node-platform/resolvers/bucket-resolver.ts +89 -0
- package/src/node-platform/resolvers/db-resolver.ts +17 -0
- package/src/node-platform/resolvers/dispatch-resolver.ts +119 -0
- package/src/node-platform/resolvers/durable-object-resolver.ts +17 -0
- package/src/node-platform/resolvers/env-helpers.ts +47 -0
- package/src/node-platform/resolvers/kv-resolver.ts +39 -0
- package/src/node-platform/resolvers/queue-resolver.ts +99 -0
- package/src/node-platform/resolvers/routing-resolver.ts +103 -0
- package/src/platform/accessors.ts +100 -0
- package/src/platform/adapters/node.ts +236 -0
- package/src/platform/adapters/shared.ts +161 -0
- package/src/platform/adapters/workers.ts +133 -0
- package/src/platform/context.ts +26 -0
- package/src/platform/index.ts +43 -0
- package/src/platform/platform-config.ts +170 -0
- package/src/platform/providers/cloudflare/pdf-render.ts +30 -0
- package/src/platform/providers/cloudflare/resources.ts +19 -0
- package/src/platform/providers/cloudflare/wfp.ts +22 -0
- package/src/platform/providers/node/pdf-render.ts +123 -0
- package/src/runtime/container-hosts/browser-session-host.ts +359 -0
- package/src/runtime/container-hosts/browser-session-types.ts +33 -0
- package/src/runtime/container-hosts/container-runtime.ts +52 -0
- package/src/runtime/container-hosts/d1-raw.ts +22 -0
- package/src/runtime/container-hosts/executor-auth.ts +161 -0
- package/src/runtime/container-hosts/executor-control-rpc.ts +449 -0
- package/src/runtime/container-hosts/executor-dispatch.ts +84 -0
- package/src/runtime/container-hosts/executor-host.ts +447 -0
- package/src/runtime/container-hosts/executor-proxy-config.ts +38 -0
- package/src/runtime/container-hosts/executor-proxy-handlers.ts +427 -0
- package/src/runtime/container-hosts/executor-run-state.ts +389 -0
- package/src/runtime/container-hosts/executor-utils.ts +269 -0
- package/src/runtime/container-hosts/proxy-token-manager.ts +188 -0
- package/src/runtime/container-hosts/runtime-host.ts +241 -0
- package/src/runtime/durable-objects/do-header-utils.ts +160 -0
- package/src/runtime/durable-objects/git-push-lock.ts +94 -0
- package/src/runtime/durable-objects/notification-notifier.ts +257 -0
- package/src/runtime/durable-objects/rate-limiter.ts +268 -0
- package/src/runtime/durable-objects/routing.ts +339 -0
- package/src/runtime/durable-objects/run-notifier.ts +555 -0
- package/src/runtime/durable-objects/session.ts +167 -0
- package/src/runtime/executor-proxy-api.ts +211 -0
- package/src/runtime/indexer/handlers.ts +133 -0
- package/src/runtime/indexer/index.ts +103 -0
- package/src/runtime/queues/deploy-jobs.ts +89 -0
- package/src/runtime/queues/parallel-steps.ts +433 -0
- package/src/runtime/queues/workflow-dlq.ts +132 -0
- package/src/runtime/queues/workflow-events.ts +34 -0
- package/src/runtime/queues/workflow-expressions.ts +69 -0
- package/src/runtime/queues/workflow-job-handler.ts +193 -0
- package/src/runtime/queues/workflow-job-phases.ts +335 -0
- package/src/runtime/queues/workflow-jobs.ts +43 -0
- package/src/runtime/queues/workflow-runner.ts +87 -0
- package/src/runtime/queues/workflow-runtime-client.ts +180 -0
- package/src/runtime/queues/workflow-secrets.ts +78 -0
- package/src/runtime/queues/workflow-steps.ts +62 -0
- package/src/runtime/queues/workflow-types.ts +163 -0
- package/src/runtime/runner/cron-handler.ts +78 -0
- package/src/runtime/runner/index.ts +20 -0
- package/src/runtime/runner/queue-handler.ts +247 -0
- package/src/runtime/runner/runner-constants.ts +7 -0
- package/src/runtime/worker/egress.ts +375 -0
- package/src/runtime/worker/env.ts +63 -0
- package/src/runtime/worker/index.ts +11 -0
- package/src/runtime/worker/runtime-factory.ts +111 -0
- package/src/server/middleware/auth.ts +210 -0
- package/src/server/middleware/billing.ts +62 -0
- package/src/server/middleware/body-size.ts +59 -0
- package/src/server/middleware/cache.ts +192 -0
- package/src/server/middleware/content-type.ts +59 -0
- package/src/server/middleware/git-auth.ts +103 -0
- package/src/server/middleware/oauth-auth.ts +204 -0
- package/src/server/middleware/param-validation.ts +59 -0
- package/src/server/middleware/plan-gates.ts +71 -0
- package/src/server/middleware/space-access.ts +125 -0
- package/src/server/middleware/static-assets.ts +25 -0
- package/src/server/middleware/trust-tier.ts +42 -0
- package/src/server/middleware/turnstile.ts +50 -0
- package/src/server/routes/activitypub-store/activitypub-queries.ts +234 -0
- package/src/server/routes/activitypub-store/routes.ts +512 -0
- package/src/server/routes/agent-tasks-handlers.ts +211 -0
- package/src/server/routes/agent-tasks.ts +352 -0
- package/src/server/routes/api.ts +399 -0
- package/src/server/routes/app-deployments.ts +201 -0
- package/src/server/routes/apps.ts +393 -0
- package/src/server/routes/auth/cli.ts +226 -0
- package/src/server/routes/auth/external.ts +366 -0
- package/src/server/routes/auth/html.ts +398 -0
- package/src/server/routes/auth/link.ts +158 -0
- package/src/server/routes/auth/provisioning.ts +210 -0
- package/src/server/routes/auth/session.ts +277 -0
- package/src/server/routes/auth-api.ts +155 -0
- package/src/server/routes/billing/routes.ts +494 -0
- package/src/server/routes/billing/stripe.ts +128 -0
- package/src/server/routes/browser-sessions.ts +258 -0
- package/src/server/routes/common-env/handlers.ts +23 -0
- package/src/server/routes/custom-domains.ts +132 -0
- package/src/server/routes/explore/explore-filters.ts +262 -0
- package/src/server/routes/explore/index.ts +1 -0
- package/src/server/routes/explore/packages.ts +392 -0
- package/src/server/routes/explore/repos.ts +218 -0
- package/src/server/routes/explore/routes.ts +14 -0
- package/src/server/routes/explore/users.ts +139 -0
- package/src/server/routes/git.ts +218 -0
- package/src/server/routes/index/graph.ts +127 -0
- package/src/server/routes/index/handlers.ts +210 -0
- package/src/server/routes/index/index-context.ts +80 -0
- package/src/server/routes/index/index.ts +50 -0
- package/src/server/routes/index/jobs.ts +159 -0
- package/src/server/routes/mcp.ts +343 -0
- package/src/server/routes/me.ts +408 -0
- package/src/server/routes/memories.ts +366 -0
- package/src/server/routes/notifications-sse.ts +54 -0
- package/src/server/routes/notifications.ts +158 -0
- package/src/server/routes/oauth/authorize.ts +311 -0
- package/src/server/routes/oauth/device.ts +344 -0
- package/src/server/routes/oauth/introspect.ts +82 -0
- package/src/server/routes/oauth/register.ts +185 -0
- package/src/server/routes/oauth/request-utils.ts +94 -0
- package/src/server/routes/oauth/revoke.ts +69 -0
- package/src/server/routes/oauth/routes.ts +255 -0
- package/src/server/routes/oauth/token.ts +409 -0
- package/src/server/routes/oauth/userinfo.ts +101 -0
- package/src/server/routes/oauth-consent-api.ts +468 -0
- package/src/server/routes/profiles/api.ts +14 -0
- package/src/server/routes/profiles/block-follow-helpers.ts +166 -0
- package/src/server/routes/profiles/block-mute.ts +127 -0
- package/src/server/routes/profiles/dto.ts +42 -0
- package/src/server/routes/profiles/follow.ts +449 -0
- package/src/server/routes/profiles/index.ts +12 -0
- package/src/server/routes/profiles/profile-crud.ts +276 -0
- package/src/server/routes/profiles/profile-queries.ts +245 -0
- package/src/server/routes/profiles/register.ts +20 -0
- package/src/server/routes/profiles/repo.ts +382 -0
- package/src/server/routes/profiles/view.ts +213 -0
- package/src/server/routes/public-share.ts +143 -0
- package/src/server/routes/pull-requests/comments.ts +159 -0
- package/src/server/routes/pull-requests/diff.ts +309 -0
- package/src/server/routes/pull-requests/dto.ts +238 -0
- package/src/server/routes/pull-requests/git-store.ts +2 -0
- package/src/server/routes/pull-requests/index.ts +12 -0
- package/src/server/routes/pull-requests/merge-handlers.ts +266 -0
- package/src/server/routes/pull-requests/merge.ts +423 -0
- package/src/server/routes/pull-requests/read-model.ts +201 -0
- package/src/server/routes/pull-requests/reviews.ts +259 -0
- package/src/server/routes/pull-requests/routes.ts +305 -0
- package/src/server/routes/pull-requests/workflow-trigger.ts +61 -0
- package/src/server/routes/reminders.ts +173 -0
- package/src/server/routes/repos/actions/artifacts.ts +90 -0
- package/src/server/routes/repos/actions/jobs.ts +137 -0
- package/src/server/routes/repos/actions/logs.ts +74 -0
- package/src/server/routes/repos/actions/runs.ts +174 -0
- package/src/server/routes/repos/actions/secrets.ts +145 -0
- package/src/server/routes/repos/external-import.ts +158 -0
- package/src/server/routes/repos/forks.ts +196 -0
- package/src/server/routes/repos/git-advanced.ts +509 -0
- package/src/server/routes/repos/git-commits.ts +344 -0
- package/src/server/routes/repos/git-files.ts +218 -0
- package/src/server/routes/repos/git-refs.ts +203 -0
- package/src/server/routes/repos/git-shared.ts +57 -0
- package/src/server/routes/repos/git-write-operations.ts +217 -0
- package/src/server/routes/repos/git.ts +12 -0
- package/src/server/routes/repos/index.ts +30 -0
- package/src/server/routes/repos/release-assets.ts +299 -0
- package/src/server/routes/repos/release-crud.ts +419 -0
- package/src/server/routes/repos/release-shared.ts +59 -0
- package/src/server/routes/repos/releases.ts +8 -0
- package/src/server/routes/repos/repo-helpers.ts +168 -0
- package/src/server/routes/repos/routes.ts +338 -0
- package/src/server/routes/repos/shared.ts +110 -0
- package/src/server/routes/repos/stars.ts +200 -0
- package/src/server/routes/repos/sync.ts +500 -0
- package/src/server/routes/repos/workflows.ts +388 -0
- package/src/server/routes/resources/access.ts +109 -0
- package/src/server/routes/resources/bindings.ts +157 -0
- package/src/server/routes/resources/d1.ts +294 -0
- package/src/server/routes/resources/index.ts +16 -0
- package/src/server/routes/resources/r2.ts +181 -0
- package/src/server/routes/resources/routes.ts +407 -0
- package/src/server/routes/resources/tokens.ts +365 -0
- package/src/server/routes/rpc-types.ts +87 -0
- package/src/server/routes/runs/access.ts +34 -0
- package/src/server/routes/runs/create.ts +42 -0
- package/src/server/routes/runs/list.ts +120 -0
- package/src/server/routes/runs/observation.ts +161 -0
- package/src/server/routes/runs/routes.ts +274 -0
- package/src/server/routes/runs/sse.ts +62 -0
- package/src/server/routes/search.ts +220 -0
- package/src/server/routes/seed-repositories.ts +17 -0
- package/src/server/routes/sessions/auth.ts +33 -0
- package/src/server/routes/sessions/heartbeat.ts +120 -0
- package/src/server/routes/sessions/index.ts +57 -0
- package/src/server/routes/sessions/lifecycle.ts +337 -0
- package/src/server/routes/sessions/session-mappers.ts +49 -0
- package/src/server/routes/setup.ts +111 -0
- package/src/server/routes/shared/route-auth.ts +245 -0
- package/src/server/routes/shortcuts.ts +335 -0
- package/src/server/routes/skills.ts +443 -0
- package/src/server/routes/smart-http.ts +380 -0
- package/src/server/routes/spaces/common-env.ts +92 -0
- package/src/server/routes/spaces/members.ts +326 -0
- package/src/server/routes/spaces/repositories.ts +69 -0
- package/src/server/routes/spaces/routes.ts +386 -0
- package/src/server/routes/spaces/storage-downloads.ts +257 -0
- package/src/server/routes/spaces/storage-management.ts +354 -0
- package/src/server/routes/spaces/storage-operations.ts +46 -0
- package/src/server/routes/spaces/storage-uploads.ts +195 -0
- package/src/server/routes/spaces/storage.ts +10 -0
- package/src/server/routes/spaces/store-registry.ts +413 -0
- package/src/server/routes/spaces/stores.ts +139 -0
- package/src/server/routes/thread-messages.ts +141 -0
- package/src/server/routes/thread-shares.ts +113 -0
- package/src/server/routes/threads.ts +450 -0
- package/src/server/routes/well-known.ts +120 -0
- package/src/server/routes/workers/deployments.ts +339 -0
- package/src/server/routes/workers/index.ts +12 -0
- package/src/server/routes/workers/routes.ts +305 -0
- package/src/server/routes/workers/settings-bindings.ts +184 -0
- package/src/server/routes/workers/settings-common-env.ts +272 -0
- package/src/server/routes/workers/settings-config.ts +95 -0
- package/src/server/routes/workers/settings-env-vars.ts +107 -0
- package/src/server/routes/workers/settings.ts +14 -0
- package/src/server/routes/workers/slug.ts +149 -0
- package/src/server/routes/zod-validator.ts +24 -0
- package/src/shared/config/index.ts +38 -0
- package/src/shared/config/limits.ts +104 -0
- package/src/shared/config/timeouts.ts +71 -0
- package/src/shared/constants/app.ts +62 -0
- package/src/shared/constants/dns.ts +12 -0
- package/src/shared/constants/index.ts +11 -0
- package/src/shared/constants/roles.ts +45 -0
- package/src/shared/types/bindings.ts +71 -0
- package/src/shared/types/drizzle-helpers.ts +5 -0
- package/src/shared/types/env.ts +151 -0
- package/src/shared/types/index.ts +172 -0
- package/src/shared/types/models.ts +506 -0
- package/src/shared/types/oauth.ts +216 -0
- package/src/shared/types/queue-messages.ts +140 -0
- package/src/shared/types/routing.ts +54 -0
- package/src/shared/utils/content-type.ts +39 -0
- package/src/shared/utils/crypto.ts +181 -0
- package/src/shared/utils/date-utils.ts +16 -0
- package/src/shared/utils/db-guards.ts +39 -0
- package/src/shared/utils/db-transaction.ts +157 -0
- package/src/shared/utils/device-auth-rate-limit.ts +40 -0
- package/src/shared/utils/domain-validation.ts +428 -0
- package/src/shared/utils/encoding-utils.ts +77 -0
- package/src/shared/utils/error-response.ts +51 -0
- package/src/shared/utils/gzip.ts +67 -0
- package/src/shared/utils/hash.ts +36 -0
- package/src/shared/utils/http-response.ts +37 -0
- package/src/shared/utils/index.ts +65 -0
- package/src/shared/utils/lcs-diff.ts +65 -0
- package/src/shared/utils/logger.ts +220 -0
- package/src/shared/utils/naming-utils.ts +16 -0
- package/src/shared/utils/path-validation.ts +124 -0
- package/src/shared/utils/rate-limiter.ts +149 -0
- package/src/shared/utils/service-client.ts +109 -0
- package/src/shared/utils/sliding-window.ts +103 -0
- package/src/shared/utils/spa-fallback.ts +26 -0
- package/src/shared/utils/token-bucket.ts +106 -0
- package/src/shared/utils/unified-diff.ts +109 -0
- package/src/shared/utils/url-utils.ts +18 -0
- package/src/shared/utils/validate-env.ts +126 -0
- package/src/shared/utils/with-timeout.ts +32 -0
- package/src/shared/utils/zip-stream.ts +226 -0
- package/src/web.ts +505 -0
- package/src/worker-emulation/redis-durable-object.ts +246 -0
- package/src/worker-emulation/sse-notifier.ts +316 -0
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
import type { D1Database, R2Bucket } from '../../../shared/types/bindings.ts';
|
|
2
|
+
import { getDb, blobs, sessionFiles, sessions, snapshots } from '../../../infra/db';
|
|
3
|
+
import { eq, and, inArray } from 'drizzle-orm';
|
|
4
|
+
|
|
5
|
+
type OffloadEnv = {
|
|
6
|
+
DB: D1Database;
|
|
7
|
+
TENANT_SOURCE?: R2Bucket;
|
|
8
|
+
TAKOS_OFFLOAD?: R2Bucket;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
type CursorState = {
|
|
12
|
+
version: 1;
|
|
13
|
+
last_success_at: string;
|
|
14
|
+
cursors: { blobs?: string; trees?: string };
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export interface R2OrphanedObjectGcSummary {
|
|
18
|
+
skipped: boolean;
|
|
19
|
+
reason?: string;
|
|
20
|
+
dry_run: boolean;
|
|
21
|
+
started_at: string;
|
|
22
|
+
min_age_minutes: number;
|
|
23
|
+
scanned: { blobs: number; trees: number };
|
|
24
|
+
candidates: { blobs: number; trees: number };
|
|
25
|
+
deleted: { blobs: number; trees: number };
|
|
26
|
+
next_cursors: { blobs?: string; trees?: string };
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const STATE_KEY = 'ops/job-state/r2-orphaned-object-gc.json';
|
|
30
|
+
const AUDIT_PREFIX = 'ops/r2-orphaned-object-gc';
|
|
31
|
+
|
|
32
|
+
function stableIsoNoMillis(date: Date): string {
|
|
33
|
+
return date.toISOString().replace(/\.\d{3}Z$/, 'Z');
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function safeKeyTimestamp(iso: string): string {
|
|
37
|
+
return iso.replace(/:/g, '-');
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
async function readJson<T>(bucket: R2Bucket, key: string): Promise<T | null> {
|
|
41
|
+
const obj = await bucket.get(key);
|
|
42
|
+
if (!obj) return null;
|
|
43
|
+
try {
|
|
44
|
+
return await obj.json<T>();
|
|
45
|
+
} catch {
|
|
46
|
+
return null;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
async function writeJson(bucket: R2Bucket, key: string, value: unknown): Promise<void> {
|
|
51
|
+
await bucket.put(key, JSON.stringify(value), {
|
|
52
|
+
httpMetadata: { contentType: 'application/json; charset=utf-8' },
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function uploadedMs(obj: { uploaded?: Date }): number | null {
|
|
57
|
+
if (!(obj.uploaded instanceof Date)) return null;
|
|
58
|
+
const ms = obj.uploaded.getTime();
|
|
59
|
+
return Number.isFinite(ms) ? ms : null;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const WORKSPACE_ID_RE = /^[a-zA-Z0-9_-]{6,128}$/;
|
|
63
|
+
|
|
64
|
+
function parseBlobKey(key: string): { spaceId: string; hash: string } | null {
|
|
65
|
+
if (!key.startsWith('blobs/')) return null;
|
|
66
|
+
const parts = key.slice(6).split('/');
|
|
67
|
+
if (parts.length !== 2) return null;
|
|
68
|
+
const [spaceId, hash] = parts;
|
|
69
|
+
if (!WORKSPACE_ID_RE.test(spaceId) || !/^[0-9a-f]{64}$/.test(hash)) return null;
|
|
70
|
+
return { spaceId, hash };
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function parseTreeKey(key: string): { spaceId: string; snapshotId: string } | null {
|
|
74
|
+
if (!key.startsWith('trees/') || !key.endsWith('.json.gz')) return null;
|
|
75
|
+
const parts = key.slice(6).split('/');
|
|
76
|
+
if (parts.length !== 2) return null;
|
|
77
|
+
const [spaceId, name] = parts;
|
|
78
|
+
const snapshotId = name.slice(0, -8);
|
|
79
|
+
if (!WORKSPACE_ID_RE.test(spaceId) || !WORKSPACE_ID_RE.test(snapshotId)) return null;
|
|
80
|
+
return { spaceId, snapshotId };
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
function groupBySpaceId<T extends { spaceId: string }>(items: T[]): Map<string, T[]> {
|
|
84
|
+
const map = new Map<string, T[]>();
|
|
85
|
+
for (const item of items) {
|
|
86
|
+
let list = map.get(item.spaceId);
|
|
87
|
+
if (!list) {
|
|
88
|
+
list = [];
|
|
89
|
+
map.set(item.spaceId, list);
|
|
90
|
+
}
|
|
91
|
+
list.push(item);
|
|
92
|
+
}
|
|
93
|
+
return map;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
function skippedSummary(reason: string): R2OrphanedObjectGcSummary {
|
|
97
|
+
return {
|
|
98
|
+
skipped: true,
|
|
99
|
+
reason,
|
|
100
|
+
dry_run: true,
|
|
101
|
+
started_at: stableIsoNoMillis(new Date()),
|
|
102
|
+
min_age_minutes: 0,
|
|
103
|
+
scanned: { blobs: 0, trees: 0 },
|
|
104
|
+
candidates: { blobs: 0, trees: 0 },
|
|
105
|
+
deleted: { blobs: 0, trees: 0 },
|
|
106
|
+
next_cursors: {},
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function clamp(value: number, min: number, max: number): number {
|
|
111
|
+
return Math.max(min, Math.min(value, max));
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export async function runR2OrphanedObjectGcBatch(
|
|
115
|
+
env: OffloadEnv,
|
|
116
|
+
options?: {
|
|
117
|
+
dryRun?: boolean;
|
|
118
|
+
listLimit?: number;
|
|
119
|
+
maxDeletes?: number;
|
|
120
|
+
minAgeMinutes?: number;
|
|
121
|
+
}
|
|
122
|
+
): Promise<R2OrphanedObjectGcSummary> {
|
|
123
|
+
const source = env.TENANT_SOURCE;
|
|
124
|
+
if (!source) return skippedSummary('TENANT_SOURCE bucket not configured');
|
|
125
|
+
|
|
126
|
+
const offload = env.TAKOS_OFFLOAD;
|
|
127
|
+
if (!offload) return skippedSummary('TAKOS_OFFLOAD bucket not configured');
|
|
128
|
+
|
|
129
|
+
const dryRun = options?.dryRun ?? false;
|
|
130
|
+
const listLimit = clamp(options?.listLimit ?? 200, 1, 1000);
|
|
131
|
+
const maxDeletes = clamp(options?.maxDeletes ?? 200, 0, 1000);
|
|
132
|
+
const minAgeMinutes = clamp(options?.minAgeMinutes ?? 24 * 60, 0, 30 * 24 * 60);
|
|
133
|
+
|
|
134
|
+
const startedAt = stableIsoNoMillis(new Date());
|
|
135
|
+
const cutoffMs = Date.now() - minAgeMinutes * 60_000;
|
|
136
|
+
|
|
137
|
+
const prior = await readJson<CursorState>(offload, STATE_KEY);
|
|
138
|
+
const cursors = prior?.version === 1 && prior.cursors ? { ...prior.cursors } : {};
|
|
139
|
+
|
|
140
|
+
const db = getDb(env.DB);
|
|
141
|
+
|
|
142
|
+
const summary: R2OrphanedObjectGcSummary = {
|
|
143
|
+
skipped: false,
|
|
144
|
+
dry_run: dryRun,
|
|
145
|
+
started_at: startedAt,
|
|
146
|
+
min_age_minutes: minAgeMinutes,
|
|
147
|
+
scanned: { blobs: 0, trees: 0 },
|
|
148
|
+
candidates: { blobs: 0, trees: 0 },
|
|
149
|
+
deleted: { blobs: 0, trees: 0 },
|
|
150
|
+
next_cursors: {},
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
const deletedKeys: { blobs: string[]; trees: string[] } = { blobs: [], trees: [] };
|
|
154
|
+
|
|
155
|
+
// Blob GC: delete objects whose DB blob row is missing AND not referenced by any session_file.
|
|
156
|
+
const blobsPage = await source.list({ prefix: 'blobs/', cursor: cursors.blobs, limit: listLimit });
|
|
157
|
+
summary.next_cursors.blobs = blobsPage.truncated ? blobsPage.cursor : undefined;
|
|
158
|
+
|
|
159
|
+
const blobCandidates: Array<{ key: string; spaceId: string; hash: string }> = [];
|
|
160
|
+
for (const obj of blobsPage.objects) {
|
|
161
|
+
summary.scanned.blobs += 1;
|
|
162
|
+
if (minAgeMinutes > 0) {
|
|
163
|
+
const ms = uploadedMs(obj);
|
|
164
|
+
if (ms === null || ms > cutoffMs) continue;
|
|
165
|
+
}
|
|
166
|
+
const parsed = parseBlobKey(obj.key);
|
|
167
|
+
if (parsed) blobCandidates.push({ key: obj.key, ...parsed });
|
|
168
|
+
}
|
|
169
|
+
summary.candidates.blobs = blobCandidates.length;
|
|
170
|
+
|
|
171
|
+
const blobDeletes: string[] = [];
|
|
172
|
+
for (const [spaceId, items] of groupBySpaceId(blobCandidates)) {
|
|
173
|
+
const hashes = [...new Set(items.map((i) => i.hash))];
|
|
174
|
+
if (hashes.length === 0) continue;
|
|
175
|
+
|
|
176
|
+
const existing = new Set(
|
|
177
|
+
(await db.select({ hash: blobs.hash }).from(blobs)
|
|
178
|
+
.where(and(eq(blobs.accountId, spaceId), inArray(blobs.hash, hashes)))
|
|
179
|
+
.all()
|
|
180
|
+
).map((b) => b.hash)
|
|
181
|
+
);
|
|
182
|
+
|
|
183
|
+
const referenced = new Set(
|
|
184
|
+
(await db.selectDistinct({ hash: sessionFiles.hash })
|
|
185
|
+
.from(sessionFiles)
|
|
186
|
+
.innerJoin(sessions, eq(sessionFiles.sessionId, sessions.id))
|
|
187
|
+
.where(and(inArray(sessionFiles.hash, hashes), eq(sessions.accountId, spaceId)))
|
|
188
|
+
.all()
|
|
189
|
+
).map((r) => r.hash)
|
|
190
|
+
);
|
|
191
|
+
|
|
192
|
+
for (const item of items) {
|
|
193
|
+
if (!existing.has(item.hash) && !referenced.has(item.hash)) {
|
|
194
|
+
blobDeletes.push(item.key);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
const blobDeletesLimited = blobDeletes.slice(0, maxDeletes);
|
|
200
|
+
if (!dryRun && blobDeletesLimited.length > 0) {
|
|
201
|
+
await source.delete(blobDeletesLimited);
|
|
202
|
+
}
|
|
203
|
+
summary.deleted.blobs = blobDeletesLimited.length;
|
|
204
|
+
deletedKeys.blobs.push(...blobDeletesLimited);
|
|
205
|
+
|
|
206
|
+
// Tree GC: delete objects whose DB snapshot row is missing.
|
|
207
|
+
const treesPage = await source.list({ prefix: 'trees/', cursor: cursors.trees, limit: listLimit });
|
|
208
|
+
summary.next_cursors.trees = treesPage.truncated ? treesPage.cursor : undefined;
|
|
209
|
+
|
|
210
|
+
const treeCandidates: Array<{ key: string; spaceId: string; snapshotId: string }> = [];
|
|
211
|
+
for (const obj of treesPage.objects) {
|
|
212
|
+
summary.scanned.trees += 1;
|
|
213
|
+
if (minAgeMinutes > 0) {
|
|
214
|
+
const ms = uploadedMs(obj);
|
|
215
|
+
if (ms === null || ms > cutoffMs) continue;
|
|
216
|
+
}
|
|
217
|
+
const parsed = parseTreeKey(obj.key);
|
|
218
|
+
if (parsed) treeCandidates.push({ key: obj.key, ...parsed });
|
|
219
|
+
}
|
|
220
|
+
summary.candidates.trees = treeCandidates.length;
|
|
221
|
+
|
|
222
|
+
const treeDeletes: string[] = [];
|
|
223
|
+
for (const [spaceId, items] of groupBySpaceId(treeCandidates)) {
|
|
224
|
+
const ids = [...new Set(items.map((i) => i.snapshotId))];
|
|
225
|
+
if (ids.length === 0) continue;
|
|
226
|
+
|
|
227
|
+
const existingIds = new Set(
|
|
228
|
+
(await db.select({ id: snapshots.id }).from(snapshots)
|
|
229
|
+
.where(and(eq(snapshots.accountId, spaceId), inArray(snapshots.id, ids)))
|
|
230
|
+
.all()
|
|
231
|
+
).map((s) => s.id)
|
|
232
|
+
);
|
|
233
|
+
|
|
234
|
+
for (const item of items) {
|
|
235
|
+
if (!existingIds.has(item.snapshotId)) {
|
|
236
|
+
treeDeletes.push(item.key);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
const treeDeletesLimited = treeDeletes.slice(0, maxDeletes);
|
|
242
|
+
if (!dryRun && treeDeletesLimited.length > 0) {
|
|
243
|
+
await source.delete(treeDeletesLimited);
|
|
244
|
+
}
|
|
245
|
+
summary.deleted.trees = treeDeletesLimited.length;
|
|
246
|
+
deletedKeys.trees.push(...treeDeletesLimited);
|
|
247
|
+
|
|
248
|
+
const nextCursors: CursorState['cursors'] = {};
|
|
249
|
+
if (summary.next_cursors.blobs) nextCursors.blobs = summary.next_cursors.blobs;
|
|
250
|
+
if (summary.next_cursors.trees) nextCursors.trees = summary.next_cursors.trees;
|
|
251
|
+
|
|
252
|
+
await writeJson(offload, STATE_KEY, {
|
|
253
|
+
version: 1,
|
|
254
|
+
last_success_at: stableIsoNoMillis(new Date()),
|
|
255
|
+
cursors: nextCursors,
|
|
256
|
+
} satisfies CursorState);
|
|
257
|
+
|
|
258
|
+
if (deletedKeys.blobs.length > 0 || deletedKeys.trees.length > 0) {
|
|
259
|
+
await writeJson(offload, `${AUDIT_PREFIX}/deleted/${safeKeyTimestamp(startedAt)}.json`, {
|
|
260
|
+
started_at: startedAt,
|
|
261
|
+
dry_run: dryRun,
|
|
262
|
+
min_age_minutes: minAgeMinutes,
|
|
263
|
+
deleted: deletedKeys,
|
|
264
|
+
});
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
return summary;
|
|
268
|
+
}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
import type { D1Database } from '../../../shared/types/bindings.ts';
|
|
2
|
+
import type { ResourcePermission } from '../../../shared/types';
|
|
3
|
+
import { getDb, resourceAccess } from '../../../infra/db';
|
|
4
|
+
import { eq, and, inArray } from 'drizzle-orm';
|
|
5
|
+
import { generateId, now, toRequiredIsoString } from '../../../shared/utils';
|
|
6
|
+
import { toApiResourceAccess } from './format';
|
|
7
|
+
import { getResourceById } from './store';
|
|
8
|
+
import { resolveAccessibleAccountIds } from '../identity/membership-resolver';
|
|
9
|
+
|
|
10
|
+
const RESOURCE_PERMISSIONS: readonly string[] = ['read', 'write', 'admin'];
|
|
11
|
+
|
|
12
|
+
function isResourcePermission(value: string): value is ResourcePermission {
|
|
13
|
+
return RESOURCE_PERMISSIONS.includes(value);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export async function listResourceAccess(db: D1Database, resourceId: string) {
|
|
17
|
+
const drizzle = getDb(db);
|
|
18
|
+
|
|
19
|
+
// We need account name, so join with accounts
|
|
20
|
+
const { accounts } = await import('../../../infra/db');
|
|
21
|
+
const accessGrants = await drizzle.select({
|
|
22
|
+
id: resourceAccess.id,
|
|
23
|
+
resourceId: resourceAccess.resourceId,
|
|
24
|
+
accountId: resourceAccess.accountId,
|
|
25
|
+
permission: resourceAccess.permission,
|
|
26
|
+
grantedByAccountId: resourceAccess.grantedByAccountId,
|
|
27
|
+
createdAt: resourceAccess.createdAt,
|
|
28
|
+
accountName: accounts.name,
|
|
29
|
+
}).from(resourceAccess)
|
|
30
|
+
.leftJoin(accounts, eq(resourceAccess.accountId, accounts.id))
|
|
31
|
+
.where(eq(resourceAccess.resourceId, resourceId))
|
|
32
|
+
.orderBy(resourceAccess.createdAt)
|
|
33
|
+
.all();
|
|
34
|
+
|
|
35
|
+
return accessGrants.map((ra) => ({
|
|
36
|
+
...toApiResourceAccess({
|
|
37
|
+
id: ra.id,
|
|
38
|
+
resourceId: ra.resourceId,
|
|
39
|
+
accountId: ra.accountId,
|
|
40
|
+
permission: ra.permission,
|
|
41
|
+
grantedByAccountId: ra.grantedByAccountId,
|
|
42
|
+
createdAt: toRequiredIsoString(ra.createdAt),
|
|
43
|
+
}),
|
|
44
|
+
workspace_name: ra.accountName,
|
|
45
|
+
}));
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export async function upsertResourceAccess(
|
|
49
|
+
db: D1Database,
|
|
50
|
+
input: { resource_id: string; space_id: string; permission: ResourcePermission; granted_by: string }
|
|
51
|
+
) {
|
|
52
|
+
const drizzle = getDb(db);
|
|
53
|
+
const id = generateId();
|
|
54
|
+
const timestamp = now();
|
|
55
|
+
|
|
56
|
+
try {
|
|
57
|
+
await drizzle.insert(resourceAccess).values({
|
|
58
|
+
id,
|
|
59
|
+
resourceId: input.resource_id,
|
|
60
|
+
accountId: input.space_id,
|
|
61
|
+
permission: input.permission,
|
|
62
|
+
grantedByAccountId: input.granted_by,
|
|
63
|
+
createdAt: timestamp,
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
return {
|
|
67
|
+
created: true,
|
|
68
|
+
access: {
|
|
69
|
+
id,
|
|
70
|
+
resource_id: input.resource_id,
|
|
71
|
+
space_id: input.space_id,
|
|
72
|
+
permission: input.permission,
|
|
73
|
+
granted_by: input.granted_by,
|
|
74
|
+
created_at: timestamp,
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
} catch (err) {
|
|
78
|
+
if (String(err).includes('UNIQUE constraint')) {
|
|
79
|
+
await drizzle.update(resourceAccess)
|
|
80
|
+
.set({ permission: input.permission })
|
|
81
|
+
.where(and(
|
|
82
|
+
eq(resourceAccess.resourceId, input.resource_id),
|
|
83
|
+
eq(resourceAccess.accountId, input.space_id),
|
|
84
|
+
));
|
|
85
|
+
|
|
86
|
+
return {
|
|
87
|
+
created: false,
|
|
88
|
+
permission: input.permission,
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
throw err;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export async function deleteResourceAccess(db: D1Database, resourceId: string, spaceId: string) {
|
|
96
|
+
const drizzle = getDb(db);
|
|
97
|
+
await drizzle.delete(resourceAccess)
|
|
98
|
+
.where(and(
|
|
99
|
+
eq(resourceAccess.resourceId, resourceId),
|
|
100
|
+
eq(resourceAccess.accountId, spaceId),
|
|
101
|
+
));
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
export async function checkResourceAccess(
|
|
105
|
+
db: D1Database,
|
|
106
|
+
resourceId: string,
|
|
107
|
+
userId: string,
|
|
108
|
+
requiredPermissions?: ResourcePermission[]
|
|
109
|
+
): Promise<boolean> {
|
|
110
|
+
const drizzle = getDb(db);
|
|
111
|
+
|
|
112
|
+
// Find accounts the user is a member of
|
|
113
|
+
const accountIds = await resolveAccessibleAccountIds(db, userId, { activeOnly: true });
|
|
114
|
+
|
|
115
|
+
const access = await drizzle.select({ permission: resourceAccess.permission })
|
|
116
|
+
.from(resourceAccess)
|
|
117
|
+
.where(and(
|
|
118
|
+
eq(resourceAccess.resourceId, resourceId),
|
|
119
|
+
inArray(resourceAccess.accountId, accountIds),
|
|
120
|
+
))
|
|
121
|
+
.get();
|
|
122
|
+
|
|
123
|
+
if (!access) return false;
|
|
124
|
+
|
|
125
|
+
if (!requiredPermissions || requiredPermissions.length === 0) return true;
|
|
126
|
+
|
|
127
|
+
if (!isResourcePermission(access.permission)) return false;
|
|
128
|
+
|
|
129
|
+
return requiredPermissions.includes(access.permission);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export async function canAccessResource(
|
|
133
|
+
db: D1Database,
|
|
134
|
+
resourceId: string,
|
|
135
|
+
userId: string,
|
|
136
|
+
requiredPermissions?: ResourcePermission[]
|
|
137
|
+
): Promise<{ canAccess: boolean; isOwner: boolean; permission?: ResourcePermission }> {
|
|
138
|
+
const resource = await getResourceById(db, resourceId);
|
|
139
|
+
|
|
140
|
+
if (!resource) {
|
|
141
|
+
return { canAccess: false, isOwner: false };
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
if (resource.owner_id === userId) {
|
|
145
|
+
return { canAccess: true, isOwner: true, permission: 'admin' };
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
const drizzle = getDb(db);
|
|
149
|
+
|
|
150
|
+
// Find accounts the user is a member of
|
|
151
|
+
const accountIds = await resolveAccessibleAccountIds(db, userId, { activeOnly: true });
|
|
152
|
+
|
|
153
|
+
const access = await drizzle.select({ permission: resourceAccess.permission })
|
|
154
|
+
.from(resourceAccess)
|
|
155
|
+
.where(and(
|
|
156
|
+
eq(resourceAccess.resourceId, resourceId),
|
|
157
|
+
inArray(resourceAccess.accountId, accountIds),
|
|
158
|
+
))
|
|
159
|
+
.get();
|
|
160
|
+
|
|
161
|
+
if (!access) {
|
|
162
|
+
return { canAccess: false, isOwner: false };
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
if (!isResourcePermission(access.permission)) {
|
|
166
|
+
return { canAccess: false, isOwner: false };
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
const permission = access.permission;
|
|
170
|
+
|
|
171
|
+
if (!requiredPermissions || requiredPermissions.length === 0) {
|
|
172
|
+
return { canAccess: true, isOwner: false, permission };
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
return {
|
|
176
|
+
canAccess: requiredPermissions.includes(permission),
|
|
177
|
+
isOwner: false,
|
|
178
|
+
permission,
|
|
179
|
+
};
|
|
180
|
+
}
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
import type { D1Database } from '../../../shared/types/bindings.ts';
|
|
2
|
+
import { getDb, serviceBindings, services } from '../../../infra/db';
|
|
3
|
+
import { eq, and } from 'drizzle-orm';
|
|
4
|
+
import { toRequiredIsoString } from '../../../shared/utils';
|
|
5
|
+
import { toApiServiceBinding } from './format';
|
|
6
|
+
import { getResourceById } from './store';
|
|
7
|
+
|
|
8
|
+
export async function listServiceBindings(db: D1Database, resourceId: string) {
|
|
9
|
+
const drizzle = getDb(db);
|
|
10
|
+
|
|
11
|
+
const bindingsResult = await drizzle.select({
|
|
12
|
+
id: serviceBindings.id,
|
|
13
|
+
serviceId: serviceBindings.serviceId,
|
|
14
|
+
resourceId: serviceBindings.resourceId,
|
|
15
|
+
bindingName: serviceBindings.bindingName,
|
|
16
|
+
bindingType: serviceBindings.bindingType,
|
|
17
|
+
config: serviceBindings.config,
|
|
18
|
+
createdAt: serviceBindings.createdAt,
|
|
19
|
+
serviceHostname: services.hostname,
|
|
20
|
+
serviceSlug: services.slug,
|
|
21
|
+
serviceStatus: services.status,
|
|
22
|
+
}).from(serviceBindings)
|
|
23
|
+
.leftJoin(services, eq(serviceBindings.serviceId, services.id))
|
|
24
|
+
.where(eq(serviceBindings.resourceId, resourceId))
|
|
25
|
+
.orderBy(serviceBindings.createdAt)
|
|
26
|
+
.all();
|
|
27
|
+
|
|
28
|
+
return bindingsResult.map((wb) => ({
|
|
29
|
+
...toApiServiceBinding({
|
|
30
|
+
id: wb.id,
|
|
31
|
+
serviceId: wb.serviceId,
|
|
32
|
+
resourceId: wb.resourceId,
|
|
33
|
+
bindingName: wb.bindingName,
|
|
34
|
+
bindingType: wb.bindingType,
|
|
35
|
+
config: wb.config,
|
|
36
|
+
createdAt: toRequiredIsoString(wb.createdAt),
|
|
37
|
+
}),
|
|
38
|
+
service_hostname: wb.serviceHostname,
|
|
39
|
+
service_slug: wb.serviceSlug,
|
|
40
|
+
service_status: wb.serviceStatus,
|
|
41
|
+
}));
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export async function countServiceBindings(db: D1Database, resourceId: string) {
|
|
45
|
+
const drizzle = getDb(db);
|
|
46
|
+
const { count } = await import('drizzle-orm');
|
|
47
|
+
const result = await drizzle.select({ count: count() }).from(serviceBindings)
|
|
48
|
+
.where(eq(serviceBindings.resourceId, resourceId))
|
|
49
|
+
.get();
|
|
50
|
+
return { count: result?.count ?? 0 };
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export async function createServiceBinding(
|
|
54
|
+
db: D1Database,
|
|
55
|
+
input: {
|
|
56
|
+
id: string;
|
|
57
|
+
service_id: string;
|
|
58
|
+
resource_id: string;
|
|
59
|
+
binding_name: string;
|
|
60
|
+
binding_type: string;
|
|
61
|
+
config: Record<string, unknown>;
|
|
62
|
+
created_at: string;
|
|
63
|
+
}
|
|
64
|
+
) {
|
|
65
|
+
const drizzle = getDb(db);
|
|
66
|
+
await drizzle.insert(serviceBindings).values({
|
|
67
|
+
id: input.id,
|
|
68
|
+
serviceId: input.service_id,
|
|
69
|
+
resourceId: input.resource_id,
|
|
70
|
+
bindingName: input.binding_name,
|
|
71
|
+
bindingType: input.binding_type,
|
|
72
|
+
config: JSON.stringify(input.config || {}),
|
|
73
|
+
createdAt: input.created_at,
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export async function deleteServiceBinding(db: D1Database, resourceId: string, serviceId: string) {
|
|
78
|
+
const drizzle = getDb(db);
|
|
79
|
+
await drizzle.delete(serviceBindings)
|
|
80
|
+
.where(and(
|
|
81
|
+
eq(serviceBindings.resourceId, resourceId),
|
|
82
|
+
eq(serviceBindings.serviceId, serviceId),
|
|
83
|
+
));
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export const listResourceBindings = listServiceBindings;
|
|
87
|
+
export const countResourceBindings = countServiceBindings;
|
|
88
|
+
export const createWorkerBinding = createServiceBinding;
|
|
89
|
+
export const deleteWorkerBinding = deleteServiceBinding;
|
|
90
|
+
|
|
91
|
+
export async function buildBindingFromResource(
|
|
92
|
+
db: D1Database,
|
|
93
|
+
resourceId: string,
|
|
94
|
+
bindingName: string
|
|
95
|
+
): Promise<{
|
|
96
|
+
type: 'd1' | 'r2' | 'kv' | 'queue' | 'analytics_engine' | 'workflow' | 'vectorize' | 'durable_object_namespace';
|
|
97
|
+
name: string;
|
|
98
|
+
id?: string;
|
|
99
|
+
bucket_name?: string;
|
|
100
|
+
namespace_id?: string;
|
|
101
|
+
queue_name?: string;
|
|
102
|
+
dataset?: string;
|
|
103
|
+
workflow_name?: string;
|
|
104
|
+
index_name?: string;
|
|
105
|
+
class_name?: string;
|
|
106
|
+
script_name?: string;
|
|
107
|
+
} | null> {
|
|
108
|
+
const resource = await getResourceById(db, resourceId);
|
|
109
|
+
|
|
110
|
+
if (!resource || resource.status !== 'active') {
|
|
111
|
+
return null;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
switch (resource.type) {
|
|
115
|
+
case 'd1':
|
|
116
|
+
return {
|
|
117
|
+
type: 'd1',
|
|
118
|
+
name: bindingName,
|
|
119
|
+
id: resource.cf_id || undefined,
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
case 'r2':
|
|
123
|
+
return {
|
|
124
|
+
type: 'r2',
|
|
125
|
+
name: bindingName,
|
|
126
|
+
bucket_name: resource.cf_name || undefined,
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
case 'kv':
|
|
130
|
+
return {
|
|
131
|
+
type: 'kv',
|
|
132
|
+
name: bindingName,
|
|
133
|
+
namespace_id: resource.cf_id || undefined,
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
case 'vectorize':
|
|
137
|
+
return {
|
|
138
|
+
type: 'vectorize',
|
|
139
|
+
name: bindingName,
|
|
140
|
+
index_name: resource.cf_name || undefined,
|
|
141
|
+
};
|
|
142
|
+
case 'queue':
|
|
143
|
+
return {
|
|
144
|
+
type: 'queue',
|
|
145
|
+
name: bindingName,
|
|
146
|
+
queue_name: resource.cf_name || resource.cf_id || undefined,
|
|
147
|
+
};
|
|
148
|
+
case 'analytics_engine':
|
|
149
|
+
case 'analyticsEngine':
|
|
150
|
+
return {
|
|
151
|
+
type: 'analytics_engine',
|
|
152
|
+
name: bindingName,
|
|
153
|
+
dataset: resource.cf_name || resource.cf_id || undefined,
|
|
154
|
+
};
|
|
155
|
+
case 'workflow':
|
|
156
|
+
return {
|
|
157
|
+
type: 'workflow',
|
|
158
|
+
name: bindingName,
|
|
159
|
+
workflow_name: resource.cf_name || resource.cf_id || undefined,
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
case 'durable_object': {
|
|
163
|
+
let config: Record<string, unknown> = {};
|
|
164
|
+
if (resource.config) {
|
|
165
|
+
try {
|
|
166
|
+
config = (typeof resource.config === 'string' ? JSON.parse(resource.config) : resource.config) as Record<string, unknown>;
|
|
167
|
+
} catch {
|
|
168
|
+
config = {};
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
const className = (config.className as string) || resource.cf_name || undefined;
|
|
172
|
+
if (!className) return null;
|
|
173
|
+
const scriptName = config.scriptName as string | undefined;
|
|
174
|
+
return {
|
|
175
|
+
type: 'durable_object_namespace',
|
|
176
|
+
name: bindingName,
|
|
177
|
+
class_name: className,
|
|
178
|
+
...(scriptName ? { script_name: scriptName } : {}),
|
|
179
|
+
};
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
default:
|
|
183
|
+
return null;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import type { Resource, ResourceAccess, ResourcePermission, ResourceStatus, ResourceType, ServiceBinding } from '../../../shared/types';
|
|
2
|
+
import { toIsoString } from '../../../shared/utils';
|
|
3
|
+
|
|
4
|
+
export function toApiResource(r: {
|
|
5
|
+
id: string;
|
|
6
|
+
ownerId: string;
|
|
7
|
+
spaceId: string | null;
|
|
8
|
+
name: string;
|
|
9
|
+
type: string;
|
|
10
|
+
status: string;
|
|
11
|
+
cfId: string | null;
|
|
12
|
+
cfName: string | null;
|
|
13
|
+
config: string;
|
|
14
|
+
metadata: string;
|
|
15
|
+
sizeBytes: number | null;
|
|
16
|
+
itemCount: number | null;
|
|
17
|
+
lastUsedAt: string | Date | null;
|
|
18
|
+
createdAt: string | Date;
|
|
19
|
+
updatedAt: string | Date;
|
|
20
|
+
}): Resource {
|
|
21
|
+
return {
|
|
22
|
+
id: r.id,
|
|
23
|
+
owner_id: r.ownerId,
|
|
24
|
+
space_id: r.spaceId,
|
|
25
|
+
name: r.name,
|
|
26
|
+
type: r.type as ResourceType,
|
|
27
|
+
status: r.status as ResourceStatus,
|
|
28
|
+
cf_id: r.cfId,
|
|
29
|
+
cf_name: r.cfName,
|
|
30
|
+
config: r.config,
|
|
31
|
+
metadata: r.metadata,
|
|
32
|
+
size_bytes: r.sizeBytes,
|
|
33
|
+
item_count: r.itemCount,
|
|
34
|
+
last_used_at: toIsoString(r.lastUsedAt),
|
|
35
|
+
created_at: toIsoString(r.createdAt) ?? new Date(0).toISOString(),
|
|
36
|
+
updated_at: toIsoString(r.updatedAt) ?? new Date(0).toISOString(),
|
|
37
|
+
} as Resource;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export function toApiResourceAccess(ra: {
|
|
41
|
+
id: string;
|
|
42
|
+
resourceId: string;
|
|
43
|
+
accountId: string;
|
|
44
|
+
permission: string;
|
|
45
|
+
grantedByAccountId: string | null;
|
|
46
|
+
createdAt: string | Date;
|
|
47
|
+
}): ResourceAccess {
|
|
48
|
+
return {
|
|
49
|
+
id: ra.id,
|
|
50
|
+
resource_id: ra.resourceId,
|
|
51
|
+
space_id: ra.accountId,
|
|
52
|
+
permission: ra.permission as ResourcePermission,
|
|
53
|
+
granted_by: ra.grantedByAccountId,
|
|
54
|
+
created_at: toIsoString(ra.createdAt) ?? new Date(0).toISOString(),
|
|
55
|
+
} as ResourceAccess;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function toApiServiceBinding(wb: {
|
|
59
|
+
id: string;
|
|
60
|
+
serviceId: string;
|
|
61
|
+
resourceId: string;
|
|
62
|
+
bindingName: string;
|
|
63
|
+
bindingType: string;
|
|
64
|
+
config: string;
|
|
65
|
+
createdAt: string | Date;
|
|
66
|
+
}): ServiceBinding {
|
|
67
|
+
return {
|
|
68
|
+
id: wb.id,
|
|
69
|
+
service_id: wb.serviceId,
|
|
70
|
+
resource_id: wb.resourceId,
|
|
71
|
+
binding_name: wb.bindingName,
|
|
72
|
+
binding_type: wb.bindingType,
|
|
73
|
+
config: wb.config,
|
|
74
|
+
created_at: toIsoString(wb.createdAt) ?? new Date(0).toISOString(),
|
|
75
|
+
} as ServiceBinding;
|
|
76
|
+
}
|