9
2
Fork
You've already forked platform
2

feat: add Paddle-backed BYOC subscriptions #378

Open
caution-bot wants to merge 2 commits from feat/paddle-byoc-subscriptions into main
pull from: feat/paddle-byoc-subscriptions
merge into: caution:main
caution:main
caution:anton/feat/multi-user
caution:feat/legal-publish-doc
caution:fix/issue-119-logout-confirmation
caution:fix/paddle-customdata-credit-mint
caution:fix/issue-116-duplicate-ssh-key
caution:fix/issue-265-http-port-private
caution:fix/issue-330-remove-build-binary
caution:fix/issue-307-remove-apps
caution:feat/issue-164-account-id
caution:feat/add-tofu-lockfile-cache
caution:feat/webauthn-discoverable-login
caution:docs/issue-339-install-instructions
caution:fix/issue-336-split-qr-login-tokens
caution:fix/verify-app-source-preflight
caution:fix/many-git-push-deploy
caution:fix/issue-334-email-verification-throttle
caution:fix/issue-273-billing-url
caution:fix/issue-333-final-usage-collection
caution:fix/issue-270-low-credit-email
caution:fix/issue-301-remove-auto-topup
caution:fix/issue-320-byoc-auth-first
caution:fix/issue-348-git-progress-checklist
caution:fix/issue-321-byoc-caution-hcl
caution:fix/issue-332-resource-id-suspension
caution:fix/eif-app-mode-normalization
caution:feat/cli-stagex-container
caution:fix/eif-s3-layer-cache
caution:fix/authz-role-checks
caution:fix/cli-hangs-unsupported-ssh-url
caution:feat/print-platform-commit-dashboard
caution:fix/config-domain-validation
caution:anton/support-ssh-destroy-get
caution:fix/cli-config-dir
caution:feat/publish-build-inputs
caution:feat/locksmith-polishing
caution:fix/procfile-run-command-no-split
caution:anton/byoc-require-login
caution:fix/hcl-init-template
caution:feat/egress-default-deny
caution:ryansquared/hcl
caution:quotas
caution:anton/feat/region-routing-resource-unavailable-alert
caution:fix/attestation-502-dashboard
caution:ryansquared/systemdize
caution:fix/verify-git-credential-hang
caution:anton/fix-low-credits-alert
caution:xenushka/rename-byoc
caution:ryansquared/add-download-eif
caution:add-debug-flag
caution:test/pr1-integration-harness
caution:anton/fix/only-pass-required-env-vars
caution:ryansquared/add-database-bucket

Summary

  • add monthly Paddle-backed BYOC tiers for one through five enclaves, with six or more routed to enterprise handling
  • treat Paddle as the commercial source of truth while projecting fail-closed deployment entitlements locally
  • preserve grandfathered credit-backed BYOC and support operator-managed enterprise limits
  • add provider idempotency keys, durable subscription intents, stale-event ordering, catalog validation, and guarded production catalog provisioning
  • add a signed-webhook E2E test covering activation, API visibility, stale events, cancellation precedence, duplicate delivery, and entitlement removal

Related to #315.

Test plan

  • cargo test --workspace --all-targets
  • cargo check -p api
  • cargo check -p metering
  • cargo test -p caution-config pricing -- --nocapture — 10 passed
  • cargo test -p metering webhooks -- --nocapture — 6 passed
  • bash tests/test_provision_paddle.sh
  • bash -n utils/provision-paddle.sh tests/test_provision_paddle.sh tests/e2e/test_paddle_subscriptions.sh
  • make test-e2e-paddle-subscriptions — passed
  • git diff --check
  • Paddle sandbox authentication and five-tier catalog reconciliation — passed

Production rollout

The feature flag should remain off until the database, Paddle catalog, shared pricing file, and webhook are ready.

  1. Back up the production database and the deployed prices.json.
  2. Deploy migration 045_paddle_byoc_subscriptions.sql before enabling the feature. It preserves legacy subscriptions and fails explicitly if duplicate non-canceled legacy rows need reconciliation.
  3. Prepare the production pricing document with catalog version 1 and the five monthly tiers from prices.json.example, initially leaving Paddle IDs null.
  4. Reconcile without mutations first:
    PADDLE_API_KEY=... utils/provision-paddle.sh sync-catalog \
     --environment production \
     --config /secure/path/prices.json
    
  5. After reviewing the plan, create/reuse the product and prices and atomically write their IDs into the pricing document:
    PADDLE_API_KEY=... utils/provision-paddle.sh sync-catalog \
     --environment production \
     --config /secure/path/prices.json \
     --apply --confirm-production
    
  6. Configure Paddle's production notification destination for /webhooks/paddle and subscribe it to the subscription lifecycle events used here (subscription.created, updated, activated, resumed, paused, and canceled). Keep the existing transaction events enabled.
  7. Mount the same generated prices.json into API and metering. Configure secrets through the deployment secret store, never the image or repository:
    • API: PADDLE_API_URL=https://api.paddle.com, PADDLE_API_KEY, PADDLE_CLIENT_TOKEN
    • Metering: PADDLE_API_URL=https://api.paddle.com, PADDLE_API_KEY, PADDLE_WEBHOOK_SECRET
  8. Set BYOC_PADDLE_SUBSCRIPTIONS_ENABLED=true for both API and metering, then restart metering and API.
  9. Verify health, inspect the subscription tiers endpoint, perform one controlled checkout, and confirm the signed webhook projects an active entitlement with the expected enclave limit before broad availability.

Rollback is to unset BYOC_PADDLE_SUBSCRIPTIONS_ENABLED and restart the services. Do not delete Paddle products/prices or projected subscription rows during rollback; retaining them preserves reconciliation and audit history.

Deferred follow-ups

  • Historical catalog lookup is not yet a general multi-version registry. Keep version-1 Paddle price IDs stable; introduce retained historical mappings before rotating IDs for a later catalog version.
  • Existing transaction-email handlers would benefit from a transactional notification outbox; that broader billing concern predates this subscription path.
## Summary - add monthly Paddle-backed BYOC tiers for one through five enclaves, with six or more routed to enterprise handling - treat Paddle as the commercial source of truth while projecting fail-closed deployment entitlements locally - preserve grandfathered credit-backed BYOC and support operator-managed enterprise limits - add provider idempotency keys, durable subscription intents, stale-event ordering, catalog validation, and guarded production catalog provisioning - add a signed-webhook E2E test covering activation, API visibility, stale events, cancellation precedence, duplicate delivery, and entitlement removal Related to #315. ## Test plan - `cargo test --workspace --all-targets` - `cargo check -p api` - `cargo check -p metering` - `cargo test -p caution-config pricing -- --nocapture` — 10 passed - `cargo test -p metering webhooks -- --nocapture` — 6 passed - `bash tests/test_provision_paddle.sh` - `bash -n utils/provision-paddle.sh tests/test_provision_paddle.sh tests/e2e/test_paddle_subscriptions.sh` - `make test-e2e-paddle-subscriptions` — passed - `git diff --check` - Paddle sandbox authentication and five-tier catalog reconciliation — passed ## Production rollout The feature flag should remain off until the database, Paddle catalog, shared pricing file, and webhook are ready. 1. Back up the production database and the deployed `prices.json`. 2. Deploy migration `045_paddle_byoc_subscriptions.sql` before enabling the feature. It preserves legacy subscriptions and fails explicitly if duplicate non-canceled legacy rows need reconciliation. 3. Prepare the production pricing document with catalog version `1` and the five monthly tiers from `prices.json.example`, initially leaving Paddle IDs null. 4. Reconcile without mutations first: ```bash PADDLE_API_KEY=... utils/provision-paddle.sh sync-catalog \ --environment production \ --config /secure/path/prices.json ``` 5. After reviewing the plan, create/reuse the product and prices and atomically write their IDs into the pricing document: ```bash PADDLE_API_KEY=... utils/provision-paddle.sh sync-catalog \ --environment production \ --config /secure/path/prices.json \ --apply --confirm-production ``` 6. Configure Paddle's production notification destination for `/webhooks/paddle` and subscribe it to the subscription lifecycle events used here (`subscription.created`, `updated`, `activated`, `resumed`, `paused`, and `canceled`). Keep the existing transaction events enabled. 7. Mount the same generated `prices.json` into API and metering. Configure secrets through the deployment secret store, never the image or repository: - API: `PADDLE_API_URL=https://api.paddle.com`, `PADDLE_API_KEY`, `PADDLE_CLIENT_TOKEN` - Metering: `PADDLE_API_URL=https://api.paddle.com`, `PADDLE_API_KEY`, `PADDLE_WEBHOOK_SECRET` 8. Set `BYOC_PADDLE_SUBSCRIPTIONS_ENABLED=true` for both API and metering, then restart metering and API. 9. Verify health, inspect the subscription tiers endpoint, perform one controlled checkout, and confirm the signed webhook projects an active entitlement with the expected enclave limit before broad availability. Rollback is to unset `BYOC_PADDLE_SUBSCRIPTIONS_ENABLED` and restart the services. Do not delete Paddle products/prices or projected subscription rows during rollback; retaining them preserves reconciliation and audit history. ## Deferred follow-ups - Historical catalog lookup is not yet a general multi-version registry. Keep version-1 Paddle price IDs stable; introduce retained historical mappings before rotating IDs for a later catalog version. - Existing transaction-email handlers would benefit from a transactional notification outbox; that broader billing concern predates this subscription path.
This pull request can be merged automatically.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin feat/paddle-byoc-subscriptions:feat/paddle-byoc-subscriptions
git switch feat/paddle-byoc-subscriptions

Merge

Merge the changes and update on Forgejo.
git switch main
git merge --no-ff feat/paddle-byoc-subscriptions
git switch feat/paddle-byoc-subscriptions
git rebase main
git switch main
git merge --ff-only feat/paddle-byoc-subscriptions
git switch feat/paddle-byoc-subscriptions
git rebase main
git switch main
git merge --no-ff feat/paddle-byoc-subscriptions
git switch main
git merge --squash feat/paddle-byoc-subscriptions
git switch main
git merge --ff-only feat/paddle-byoc-subscriptions
git switch main
git merge feat/paddle-byoc-subscriptions
git push origin main
Sign in to join this conversation.
No reviewers
Labels
Clear labels
Compat/Breaking
Breaking change that won't be backward compatible
Component/Enclave-Builder
This issue affects Enclave Builder (git-push and CLI)
Component/Infrastructure
This issue affects generic Caution hosted infra components
Deploy/BYOC
Relates to Caution Bring-your-own-compute
Deploy/Full-managed
Relates to Caution fully managed cloud
Deploy/Self-hosted
Relates to Caution deployed on self-hosted infra
Interface/API
This issue affects the API
Interface/CLI
This issue affects the command line interface
Interface/Git
This issue affects the Git `push` interface
Interface/Web
This issue affects the web dashboard
Kind/Bug
Something is not working
Kind/Documentation
Documentation changes
Kind/Enhancement
Improve existing functionality
Kind/Feature
New functionality
Kind/Security
This is security issue
Kind/Testing
Issue or pull request related to testing
Priority
Critical
The priority is critical
Priority
High
The priority is high
Priority
Low
The priority is low
Priority
Medium
The priority is medium
Reviewed
Confirmed
Issue has been confirmed
Reviewed
Duplicate
This issue or pull request already exists
Reviewed
Invalid
Invalid issue
Reviewed
Won't Fix
This issue won't be fixed
Status
Abandoned
Somebody has started to work on this but abandoned work
Status
Blocked
Something is blocking this issue or pull request
Status
Need More Info
Feedback is required to reproduce issue or to continue work
Milestone
Clear milestone
No items
No milestone
Projects
Clear projects
No items
No project
Assignees
Clear assignees
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
caution/platform!378
Reference in a new issue
caution/platform
No description provided.
Delete branch "feat/paddle-byoc-subscriptions"

Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?