@beechcms/api 0.6.0-preview.1 → 0.6.0-preview.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/assets/dashboard/BeechLogo.svg +18 -18
- package/assets/dashboard/BeechLogoLIght.svg +48 -48
- package/assets/dashboard/assets/chart-Cws4Yj6K.js +39 -0
- package/assets/dashboard/assets/geist-cyrillic-ext-wght-normal-DjL33-gN.woff2 +0 -0
- package/assets/dashboard/assets/geist-cyrillic-wght-normal-BEAKL7Jp.woff2 +0 -0
- package/assets/dashboard/assets/geist-latin-ext-wght-normal-DC-KSUi6.woff2 +0 -0
- package/assets/dashboard/assets/geist-latin-wght-normal-BgDaEnEv.woff2 +0 -0
- package/assets/dashboard/assets/geist-vietnamese-wght-normal-6IgcOCM7.woff2 +0 -0
- package/assets/dashboard/assets/index-BjPpppHe.css +1 -0
- package/assets/dashboard/assets/index-CrW-zhkA.js +642 -0
- package/assets/dashboard/assets/lora-cyrillic-ext-wght-normal-YcVxMP-u.woff2 +0 -0
- package/assets/dashboard/assets/lora-cyrillic-wght-normal-UWPuZLjM.woff2 +0 -0
- package/assets/dashboard/assets/lora-latin-ext-wght-normal-C2Wlntb9.woff2 +0 -0
- package/assets/dashboard/assets/lora-latin-wght-normal-BiLcIKcI.woff2 +0 -0
- package/assets/dashboard/assets/lora-math-wght-normal-sOy7rEfW.woff2 +0 -0
- package/assets/dashboard/assets/lora-symbols-wght-normal-DQ5VrUkH.woff2 +0 -0
- package/assets/dashboard/assets/lora-vietnamese-wght-normal-CfJ7gtf3.woff2 +0 -0
- package/assets/dashboard/assets/pie-chart-recharts-CAxoDQp2.js +1 -0
- package/assets/dashboard/assets/timeseries-chart-recharts-CixDW-LM.js +1 -0
- package/assets/dashboard/beechLogoDark.svg +48 -48
- package/assets/dashboard/index.html +18 -18
- package/assets/dashboard/noResult.svg +42 -42
- package/assets/dashboard/sol.svg +3 -3
- package/assets/dashboard/undraw_enter_nwx3.svg +36 -36
- package/dist/auth/__fixtures__/in-memory-hash-provider.d.ts +5 -0
- package/dist/auth/__fixtures__/static-token-service.d.ts +6 -0
- package/dist/auth/bcrypt-hash-provider.d.ts +8 -0
- package/dist/auth/constants.d.ts +10 -0
- package/dist/auth/jose-token-service.d.ts +14 -0
- package/dist/auth/login.d.ts +32 -0
- package/dist/auth/refresh.d.ts +1 -0
- package/dist/factory.d.ts +39 -0
- package/dist/features/automations/action-executors/create-entry.executor.d.ts +7 -0
- package/dist/features/automations/action-executors/edit-field.executor.d.ts +7 -0
- package/dist/features/automations/action-executors/index.d.ts +13 -0
- package/dist/features/automations/action-executors/send-mail.executor.d.ts +7 -0
- package/dist/features/automations/action-executors/set-variable.executor.d.ts +15 -0
- package/dist/features/automations/action-executors/webhook.executor.d.ts +7 -0
- package/dist/features/automations/automation-runner.d.ts +13 -0
- package/dist/features/automations/automation-runner.utils.d.ts +3 -0
- package/dist/features/automations/automations.handler.d.ts +7 -0
- package/dist/features/automations/automations.schema.d.ts +191 -0
- package/dist/features/automations/context-resolver.d.ts +8 -0
- package/dist/features/automations/cron-runner.d.ts +9 -0
- package/dist/features/automations/cron-runner.utils.d.ts +1 -0
- package/dist/features/automations/filter-translation.d.ts +9 -0
- package/dist/features/automations/index.d.ts +7 -0
- package/dist/features/automations/template-grammar.d.ts +73 -0
- package/dist/features/automations/var-access-resolver.d.ts +6 -0
- package/dist/features/automations/when-evaluator.d.ts +3 -0
- package/dist/features/automations/when-pushdown.d.ts +2 -0
- package/dist/features/backrefs/backrefs.handler.d.ts +3 -0
- package/dist/features/backrefs/d1-backref.repository.d.ts +17 -0
- package/dist/features/backrefs/index.d.ts +1 -0
- package/dist/features/content/constants.d.ts +12 -0
- package/dist/features/content/handlers/bulk.handler.d.ts +3 -0
- package/dist/features/content/handlers/create.d.ts +3 -0
- package/dist/features/content/handlers/delete.d.ts +3 -0
- package/dist/features/content/handlers/facets.d.ts +3 -0
- package/dist/features/content/handlers/get.d.ts +4 -0
- package/dist/features/content/handlers/helpers.d.ts +12 -0
- package/dist/features/content/handlers/list.d.ts +3 -0
- package/dist/features/content/handlers/update.d.ts +3 -0
- package/dist/features/content/index.d.ts +4 -0
- package/dist/features/dashboard-layout/dashboard-layout.handler.d.ts +7 -0
- package/dist/features/dashboard-layout/index.d.ts +1 -0
- package/dist/features/draft/draft.handler.d.ts +4 -0
- package/dist/features/draft/draft.middleware.d.ts +9 -0
- package/dist/features/draft/index.d.ts +1 -0
- package/{src/features/email/email.provider.ts → dist/features/email/email.provider.d.ts} +37 -42
- package/dist/features/email/email.service.d.ts +13 -0
- package/dist/features/email/email.types.d.ts +94 -0
- package/{src/features/email/index.ts → dist/features/email/index.d.ts} +20 -33
- package/dist/features/email/providers/resend.d.ts +36 -0
- package/dist/features/email/providers/smtp.d.ts +11 -0
- package/dist/features/email/templates/automation-mail.d.ts +8 -0
- package/dist/features/email/templates/password-changed.d.ts +15 -0
- package/dist/features/email/templates/password-reset.d.ts +18 -0
- package/dist/features/email/templates/shell.d.ts +58 -0
- package/dist/features/notifications/index.d.ts +1 -0
- package/dist/features/notifications/notifications.handler.d.ts +15 -0
- package/dist/features/password-reset/index.d.ts +6 -0
- package/dist/features/password-reset/request.d.ts +10 -0
- package/dist/features/password-reset/reset.d.ts +9 -0
- package/dist/features/rotate-field/index.d.ts +1 -0
- package/dist/features/rotate-field/rotate-field.handler.d.ts +7 -0
- package/dist/features/rotate-field/rotate-field.schema.d.ts +11 -0
- package/dist/features/schema/schema.handler.d.ts +7 -0
- package/dist/features/seeds/index.d.ts +1 -0
- package/dist/features/seeds/seeds.handler.d.ts +6 -0
- package/dist/features/settings/settings.handler.d.ts +7 -0
- package/dist/features/setup/index.d.ts +7 -0
- package/dist/features/stats/index.d.ts +1 -0
- package/dist/features/stats/stats.handler.d.ts +7 -0
- package/dist/features/webhooks/index.d.ts +3 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +9666 -0
- package/dist/media-utils.d.ts +25 -0
- package/dist/middleware/auth-providers.middleware.d.ts +8 -0
- package/dist/middleware/observability.middleware.d.ts +20 -0
- package/dist/middleware/rate-limit.middleware.d.ts +9 -0
- package/dist/middleware/repository.middleware.d.ts +34 -0
- package/dist/middleware/seed-registry.middleware.d.ts +10 -0
- package/dist/middleware/storage.middleware.d.ts +7 -0
- package/dist/middleware.d.ts +11 -0
- package/dist/public/access-policy.d.ts +12 -0
- package/dist/public/api-key-middleware.d.ts +6 -0
- package/dist/public/cache-utils.d.ts +10 -0
- package/dist/public/entry-projection.d.ts +2 -0
- package/dist/public/idempotency.d.ts +9 -0
- package/dist/public/index.d.ts +11 -0
- package/dist/public/problem-details.d.ts +31 -0
- package/dist/public/public-add.d.ts +3 -0
- package/dist/public/public-edit.d.ts +5 -0
- package/dist/public/public-errors.d.ts +13 -0
- package/dist/public/public-read.d.ts +3 -0
- package/dist/public/public-routes.d.ts +3 -0
- package/dist/public/query-builder.d.ts +28 -0
- package/dist/public/rate-limit-middleware.d.ts +3 -0
- package/dist/public/read-list.d.ts +26 -0
- package/dist/public/read-single.d.ts +22 -0
- package/dist/public/response-builder.d.ts +22 -0
- package/dist/public/sanitize.d.ts +23 -0
- package/dist/public/slug-utils.d.ts +11 -0
- package/dist/rate-limit/cloudflare-rate-limiter.d.ts +6 -0
- package/dist/rate-limit/in-memory-rate-limiter.d.ts +7 -0
- package/dist/rate-limit/no-op-rate-limiter.d.ts +4 -0
- package/dist/search-utils.d.ts +54 -0
- package/dist/search.d.ts +6 -0
- package/dist/shared/apply-policies.d.ts +10 -0
- package/dist/shared/automations.repository.d1.d.ts +12 -0
- package/dist/shared/background-notification-service.d.ts +18 -0
- package/dist/shared/base.repository.d1.d.ts +18 -0
- package/dist/shared/content-utils.d.ts +21 -0
- package/dist/shared/content.repository.d1.d.ts +68 -0
- package/dist/shared/d1-activity-log.repository.d.ts +13 -0
- package/dist/shared/d1-activity-logger.d.ts +20 -0
- package/dist/shared/d1-analytics.repository.d.ts +20 -0
- package/dist/shared/d1-content-scan.repository.d.ts +7 -0
- package/dist/shared/d1-notification.repository.d.ts +17 -0
- package/dist/shared/d1-password-reset-token.repository.d.ts +10 -0
- package/dist/shared/d1-search.repository.d.ts +14 -0
- package/dist/shared/d1-session.repository.d.ts +12 -0
- package/dist/shared/d1-setup-checklist.repository.d.ts +12 -0
- package/dist/shared/d1-user.repository.d.ts +18 -0
- package/dist/shared/d1-widget.repository.d.ts +31 -0
- package/dist/shared/dashboard-layout.repository.d1.d.ts +9 -0
- package/dist/shared/demo-data-sql.d.ts +1 -0
- package/dist/shared/demo-data.repository.d1.d.ts +6 -0
- package/dist/shared/execution-context-scheduler.d.ts +6 -0
- package/dist/shared/fixed-clock.d.ts +13 -0
- package/dist/shared/fts-sync.d.ts +1 -0
- package/dist/shared/idempotency.repository.d1.d.ts +16 -0
- package/dist/shared/in-memory-activity-logger.d.ts +11 -0
- package/dist/shared/in-memory-notification-service.d.ts +11 -0
- package/dist/shared/in-memory-seed.repository.d.ts +18 -0
- package/dist/shared/media.repository.d1.d.ts +35 -0
- package/dist/shared/qstash-notification-service.d.ts +18 -0
- package/dist/shared/query-utils.d.ts +36 -0
- package/dist/shared/request-utils.d.ts +13 -0
- package/dist/shared/schema-mutator.d1.d.ts +12 -0
- package/dist/shared/seed-layout.repository.d1.d.ts +9 -0
- package/dist/shared/seed-registry-cache.d.ts +12 -0
- package/dist/shared/seed.repository.d1.d.ts +13 -0
- package/dist/shared/sequential-id-generator.d.ts +13 -0
- package/dist/shared/site-settings.repository.d1.d.ts +7 -0
- package/dist/shared/storage/factory.d.ts +8 -0
- package/dist/shared/storage/s3-bucket.d.ts +43 -0
- package/dist/shared/storage-utils.d.ts +7 -0
- package/dist/shared/system-stats.repository.d1.d.ts +25 -0
- package/dist/types.d.ts +85 -0
- package/dist/upload.d.ts +16 -0
- package/dist/widget.d.ts +7 -0
- package/migrations/0000_v040_base.sql +265 -265
- package/migrations/0029_automations.sql +14 -14
- package/migrations/0030_test_seeds.sql +125 -125
- package/package.json +27 -18
- package/assets/dashboard/assets/index-BSjk0Sx9.js +0 -634
- package/assets/dashboard/assets/index-kRCYVN2B.css +0 -1
- package/src/auth/__fixtures__/in-memory-hash-provider.ts +0 -17
- package/src/auth/__fixtures__/static-token-service.ts +0 -22
- package/src/auth/bcrypt-hash-provider.ts +0 -24
- package/src/auth/constants.ts +0 -14
- package/src/auth/generate-refresh-token.test.ts +0 -23
- package/src/auth/hash-provider.test.ts +0 -55
- package/src/auth/jose-token-service.ts +0 -62
- package/src/auth/jwt-claims-passthrough.test.ts +0 -87
- package/src/auth/login.test.ts +0 -100
- package/src/auth/login.ts +0 -78
- package/src/auth/refresh.ts +0 -11
- package/src/auth/token-service.test.ts +0 -90
- package/src/factory.ts +0 -368
- package/src/features/automations/__tests__/action-executors.test.ts +0 -255
- package/src/features/automations/__tests__/automation-runner.test.ts +0 -196
- package/src/features/automations/__tests__/automation-runner.utils.test.ts +0 -60
- package/src/features/automations/__tests__/automations.handler.test.ts +0 -264
- package/src/features/automations/__tests__/automations.repository.test.ts +0 -163
- package/src/features/automations/__tests__/automations.schema.test.ts +0 -224
- package/src/features/automations/__tests__/context-resolver.test.ts +0 -126
- package/src/features/automations/__tests__/cron-runner.test.ts +0 -267
- package/src/features/automations/__tests__/cron-runner.utils.test.ts +0 -144
- package/src/features/automations/__tests__/set-variable.executor.test.ts +0 -383
- package/src/features/automations/__tests__/template-grammar.test.ts +0 -308
- package/src/features/automations/__tests__/webhook.executor.test.ts +0 -142
- package/src/features/automations/__tests__/when-evaluator.test.ts +0 -274
- package/src/features/automations/__tests__/when-pushdown.test.ts +0 -281
- package/src/features/automations/action-executors/create-entry.executor.ts +0 -27
- package/src/features/automations/action-executors/edit-field.executor.ts +0 -26
- package/src/features/automations/action-executors/index.ts +0 -37
- package/src/features/automations/action-executors/send-mail.executor.ts +0 -53
- package/src/features/automations/action-executors/set-variable.executor.ts +0 -159
- package/src/features/automations/action-executors/webhook.executor.ts +0 -67
- package/src/features/automations/automation-runner.ts +0 -85
- package/src/features/automations/automation-runner.utils.ts +0 -47
- package/src/features/automations/automations.handler.ts +0 -197
- package/src/features/automations/automations.schema.ts +0 -177
- package/src/features/automations/context-resolver.ts +0 -152
- package/src/features/automations/cron-runner.ts +0 -140
- package/src/features/automations/cron-runner.utils.ts +0 -44
- package/src/features/automations/filter-translation.ts +0 -46
- package/src/features/automations/index.ts +0 -16
- package/src/features/automations/template-grammar.ts +0 -245
- package/src/features/automations/var-access-resolver.ts +0 -140
- package/src/features/automations/when-evaluator.ts +0 -87
- package/src/features/automations/when-pushdown.ts +0 -57
- package/src/features/backrefs/__tests__/backrefs.handler.test.ts +0 -359
- package/src/features/backrefs/backrefs.handler.ts +0 -168
- package/src/features/backrefs/d1-backref.repository.ts +0 -84
- package/src/features/backrefs/index.ts +0 -5
- package/src/features/content/constants.ts +0 -16
- package/src/features/content/handlers/bulk.handler.ts +0 -185
- package/src/features/content/handlers/create.ts +0 -129
- package/src/features/content/handlers/delete.ts +0 -62
- package/src/features/content/handlers/facets.ts +0 -49
- package/src/features/content/handlers/get.ts +0 -120
- package/src/features/content/handlers/helpers.test.ts +0 -180
- package/src/features/content/handlers/helpers.ts +0 -93
- package/src/features/content/handlers/list.ts +0 -174
- package/src/features/content/handlers/update.ts +0 -174
- package/src/features/content/index.ts +0 -26
- package/src/features/draft/draft.handler.ts +0 -195
- package/src/features/draft/draft.middleware.ts +0 -66
- package/src/features/draft/index.ts +0 -5
- package/src/features/email/email.service.ts +0 -98
- package/src/features/email/email.types.ts +0 -119
- package/src/features/email/providers/resend.ts +0 -67
- package/src/features/email/providers/smtp.ts +0 -55
- package/src/features/email/templates/automation-mail.ts +0 -19
- package/src/features/email/templates/password-changed.ts +0 -63
- package/src/features/email/templates/password-reset.ts +0 -68
- package/src/features/email/templates/shell.ts +0 -96
- package/src/features/notifications/index.ts +0 -5
- package/src/features/notifications/notifications.handler.ts +0 -105
- package/src/features/password-reset/index.ts +0 -19
- package/src/features/password-reset/request.ts +0 -92
- package/src/features/password-reset/reset.ts +0 -102
- package/src/features/rotate-field/index.ts +0 -5
- package/src/features/rotate-field/rotate-field.handler.ts +0 -132
- package/src/features/rotate-field/rotate-field.schema.ts +0 -17
- package/src/features/schema/schema.handler.ts +0 -131
- package/src/features/seeds/index.ts +0 -5
- package/src/features/seeds/seeds.handler.test.ts +0 -632
- package/src/features/seeds/seeds.handler.ts +0 -693
- package/src/features/settings/__tests__/settings.handler.test.ts +0 -555
- package/src/features/settings/settings.handler.ts +0 -392
- package/src/features/setup/index.ts +0 -204
- package/src/features/stats/index.ts +0 -5
- package/src/features/stats/stats.handler.ts +0 -420
- package/src/features/webhooks/index.ts +0 -63
- package/src/index.ts +0 -65
- package/src/media-utils.ts +0 -82
- package/src/middleware/auth-providers.middleware.ts +0 -45
- package/src/middleware/observability.middleware.ts +0 -70
- package/src/middleware/rate-limit.middleware.ts +0 -45
- package/src/middleware/repository.middleware.ts +0 -114
- package/src/middleware/seed-registry.middleware.test.ts +0 -97
- package/src/middleware/seed-registry.middleware.ts +0 -21
- package/src/middleware/storage.middleware.ts +0 -25
- package/src/middleware.ts +0 -45
- package/src/public/access-policy.ts +0 -27
- package/src/public/api-key-middleware.ts +0 -57
- package/src/public/cache-utils.ts +0 -38
- package/src/public/entry-projection.ts +0 -46
- package/src/public/idempotency.ts +0 -23
- package/src/public/index.ts +0 -16
- package/src/public/problem-details.ts +0 -124
- package/src/public/public-add.ts +0 -114
- package/src/public/public-edit.ts +0 -163
- package/src/public/public-errors.ts +0 -19
- package/src/public/public-read.ts +0 -63
- package/src/public/public-routes.ts +0 -88
- package/src/public/query-builder.test.ts +0 -224
- package/src/public/query-builder.ts +0 -156
- package/src/public/rate-limit-middleware.ts +0 -34
- package/src/public/read-list.ts +0 -54
- package/src/public/read-single.ts +0 -48
- package/src/public/response-builder.ts +0 -30
- package/src/public/sanitize.ts +0 -69
- package/src/public/slug-utils.ts +0 -18
- package/src/rate-limit/cloudflare-rate-limiter.test.ts +0 -30
- package/src/rate-limit/cloudflare-rate-limiter.ts +0 -15
- package/src/rate-limit/in-memory-rate-limiter.test.ts +0 -37
- package/src/rate-limit/in-memory-rate-limiter.ts +0 -17
- package/src/rate-limit/no-op-rate-limiter.test.ts +0 -22
- package/src/rate-limit/no-op-rate-limiter.ts +0 -11
- package/src/search-utils.test.ts +0 -211
- package/src/search-utils.ts +0 -213
- package/src/search.ts +0 -65
- package/src/shared/apply-policies.test.ts +0 -81
- package/src/shared/apply-policies.ts +0 -67
- package/src/shared/automations.repository.d1.ts +0 -150
- package/src/shared/background-notification-service.test.ts +0 -62
- package/src/shared/background-notification-service.ts +0 -52
- package/src/shared/base.repository.d1.ts +0 -32
- package/src/shared/content-utils.test.ts +0 -165
- package/src/shared/content-utils.ts +0 -86
- package/src/shared/content.repository.d1.test.ts +0 -458
- package/src/shared/content.repository.d1.ts +0 -851
- package/src/shared/d1-activity-log.repository.test.ts +0 -140
- package/src/shared/d1-activity-log.repository.ts +0 -105
- package/src/shared/d1-activity-logger.test.ts +0 -86
- package/src/shared/d1-activity-logger.ts +0 -67
- package/src/shared/d1-analytics.repository.test.ts +0 -78
- package/src/shared/d1-analytics.repository.ts +0 -85
- package/src/shared/d1-content-scan.repository.test.ts +0 -80
- package/src/shared/d1-content-scan.repository.ts +0 -37
- package/src/shared/d1-notification.repository.test.ts +0 -128
- package/src/shared/d1-notification.repository.ts +0 -118
- package/src/shared/d1-password-reset-token.repository.test.ts +0 -81
- package/src/shared/d1-password-reset-token.repository.ts +0 -56
- package/src/shared/d1-search.repository.test.ts +0 -87
- package/src/shared/d1-search.repository.ts +0 -88
- package/src/shared/d1-session.repository.test.ts +0 -125
- package/src/shared/d1-session.repository.ts +0 -102
- package/src/shared/d1-setup-checklist.repository.ts +0 -36
- package/src/shared/d1-user.repository.test.ts +0 -151
- package/src/shared/d1-user.repository.ts +0 -119
- package/src/shared/d1-widget.repository.test.ts +0 -221
- package/src/shared/d1-widget.repository.ts +0 -341
- package/src/shared/demo-data-sql.ts +0 -54
- package/src/shared/demo-data.repository.d1.ts +0 -20
- package/src/shared/execution-context-scheduler.ts +0 -13
- package/src/shared/fixed-clock.ts +0 -25
- package/src/shared/fts-sync.ts +0 -8
- package/src/shared/idempotency.repository.d1.test.ts +0 -83
- package/src/shared/idempotency.repository.d1.ts +0 -60
- package/src/shared/in-memory-activity-logger.ts +0 -19
- package/src/shared/in-memory-notification-service.ts +0 -19
- package/src/shared/in-memory-seed.repository.ts +0 -51
- package/src/shared/media.repository.d1.test.ts +0 -107
- package/src/shared/media.repository.d1.ts +0 -68
- package/src/shared/qstash-notification-service.test.ts +0 -67
- package/src/shared/qstash-notification-service.ts +0 -55
- package/src/shared/query-utils.ts +0 -141
- package/src/shared/request-utils.ts +0 -26
- package/src/shared/schema-mutator.d1.ts +0 -64
- package/src/shared/seed-layout.repository.d1.test.ts +0 -114
- package/src/shared/seed-layout.repository.d1.ts +0 -62
- package/src/shared/seed-registry-cache.test.ts +0 -68
- package/src/shared/seed-registry-cache.ts +0 -49
- package/src/shared/seed.repository.d1.test.ts +0 -143
- package/src/shared/seed.repository.d1.ts +0 -98
- package/src/shared/sequential-id-generator.ts +0 -33
- package/src/shared/site-settings.repository.d1.ts +0 -53
- package/src/shared/storage/factory.ts +0 -41
- package/src/shared/storage/s3-bucket.ts +0 -195
- package/src/shared/storage-utils.ts +0 -40
- package/src/shared/system-stats.repository.d1.test.ts +0 -58
- package/src/shared/system-stats.repository.d1.ts +0 -48
- package/src/types.ts +0 -87
- package/src/upload.ts +0 -198
- package/src/widget.ts +0 -212
package/src/factory.ts
DELETED
|
@@ -1,368 +0,0 @@
|
|
|
1
|
-
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
-
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
-
// See LICENSE in the repository root for license terms.
|
|
4
|
-
|
|
5
|
-
/// <reference types="@cloudflare/workers-types" />
|
|
6
|
-
import { Hono } from 'hono'
|
|
7
|
-
import { cors } from 'hono/cors'
|
|
8
|
-
import { getCookie, setCookie, deleteCookie } from 'hono/cookie'
|
|
9
|
-
import type { Seed, ContentRepository, IdempotencyRepository, BeechBucket, MediaRepository, SystemStatsRepository } from '@beechcms/core'
|
|
10
|
-
import { sha256hex, SystemClock, SystemIdGenerator } from '@beechcms/core'
|
|
11
|
-
import type { Env, Variables } from './types'
|
|
12
|
-
import { getClientIp } from './shared/request-utils'
|
|
13
|
-
|
|
14
|
-
// Imports delle rotte e middleware
|
|
15
|
-
import { AUTH_ERRORS } from './auth/constants'
|
|
16
|
-
import {
|
|
17
|
-
parseLoginBody,
|
|
18
|
-
validateLoginInput,
|
|
19
|
-
verifyPassword,
|
|
20
|
-
DUMMY_PASSWORD_HASH,
|
|
21
|
-
} from './auth/login'
|
|
22
|
-
import { generateRefreshToken } from './auth/refresh'
|
|
23
|
-
import { authMiddleware } from './middleware'
|
|
24
|
-
import contentFeature from './features/content'
|
|
25
|
-
import { widgetApp } from './widget'
|
|
26
|
-
import { rotateFieldApp } from './features/rotate-field'
|
|
27
|
-
import { passwordResetApp } from './features/password-reset'
|
|
28
|
-
import { setupApp } from './features/setup'
|
|
29
|
-
import { draftApp } from './features/draft'
|
|
30
|
-
import { settingsApp } from './features/settings/settings.handler'
|
|
31
|
-
import { schemaApp } from './features/schema/schema.handler'
|
|
32
|
-
import { seedsApp } from './features/seeds'
|
|
33
|
-
import { notificationsApp } from './features/notifications'
|
|
34
|
-
import { automationsApp } from './features/automations'
|
|
35
|
-
import { statsApp } from './features/stats'
|
|
36
|
-
import { backrefsApp } from './features/backrefs'
|
|
37
|
-
import { webhooksApp } from './features/webhooks'
|
|
38
|
-
import { uploadRoutes, serveMediaHandler } from './upload'
|
|
39
|
-
import { publicRoutes, apiKeyMiddleware, publicRateLimitMiddleware } from './public'
|
|
40
|
-
import { searchRouter } from "./search"
|
|
41
|
-
import type { ISeedRepository } from '@beechcms/core'
|
|
42
|
-
import { repositoryMiddleware } from './middleware/repository.middleware'
|
|
43
|
-
import { seedRegistryMiddleware } from './middleware/seed-registry.middleware'
|
|
44
|
-
import { storageMiddleware } from './middleware/storage.middleware'
|
|
45
|
-
import { InMemorySeedRepository } from './shared/in-memory-seed.repository'
|
|
46
|
-
import { authProvidersMiddleware } from './middleware/auth-providers.middleware'
|
|
47
|
-
import { rateLimiterMiddleware } from './middleware/rate-limit.middleware'
|
|
48
|
-
import { observabilityMiddleware } from './middleware/observability.middleware'
|
|
49
|
-
|
|
50
|
-
export interface BeechConfig {
|
|
51
|
-
seeds: Seed[] | Record<string, Seed>
|
|
52
|
-
repository?: ContentRepository
|
|
53
|
-
idempotencyRepository?: IdempotencyRepository
|
|
54
|
-
bucket?: BeechBucket
|
|
55
|
-
mediaRepository?: MediaRepository
|
|
56
|
-
systemStatsRepository?: SystemStatsRepository
|
|
57
|
-
// Optional override: inject a custom ISeedRepository (e.g. InMemorySeedRepository for tests).
|
|
58
|
-
// When omitted and seeds is non-empty, an InMemorySeedRepository is created automatically
|
|
59
|
-
// for backward compatibility.
|
|
60
|
-
seedRepository?: ISeedRepository
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
// --- Costanti e helper ---
|
|
64
|
-
const REFRESH_TOKEN_EXPIRY_DAYS = 7
|
|
65
|
-
const SECONDS_PER_DAY = 24 * 60 * 60
|
|
66
|
-
|
|
67
|
-
function isRequestSecure(url: string): boolean {
|
|
68
|
-
return new URL(url).protocol === 'https:'
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
function getRefreshTokenCookieOptions(secure: boolean) {
|
|
72
|
-
return {
|
|
73
|
-
httpOnly: true,
|
|
74
|
-
secure,
|
|
75
|
-
sameSite: 'Strict' as const,
|
|
76
|
-
maxAge: REFRESH_TOKEN_EXPIRY_DAYS * SECONDS_PER_DAY,
|
|
77
|
-
path: '/auth',
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
function getRefreshTokenDeleteCookieOptions(secure: boolean) {
|
|
82
|
-
return {
|
|
83
|
-
httpOnly: true,
|
|
84
|
-
secure,
|
|
85
|
-
sameSite: 'Strict' as const,
|
|
86
|
-
path: '/auth',
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
function handleAuthError(context: any, error: unknown, operationName: string): Response {
|
|
91
|
-
if (context.env.ENV !== 'production') {
|
|
92
|
-
console.error(`${operationName} error:`, error)
|
|
93
|
-
}
|
|
94
|
-
return context.json({ error: AUTH_ERRORS.GENERIC_ERROR }, 500)
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
function extractPublicSeed(path: string): string {
|
|
98
|
-
const match = path.match(/^\/api\/v1\/public\/([^/?]+)/)
|
|
99
|
-
return match ? match[1] : ''
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* Builds a fully configured Hono app. Seeds are hydrated from D1 at runtime via
|
|
104
|
-
* seedRegistryMiddleware; config.seeds is retained for back-compat but no longer
|
|
105
|
-
* drives request handling.
|
|
106
|
-
*/
|
|
107
|
-
export function createBeechApp(config: BeechConfig): Hono<{ Bindings: Env; Variables: Variables }> {
|
|
108
|
-
// Back-compat shim: when callers (e.g. existing tests) pass seeds without a custom
|
|
109
|
-
// seedRepository, wrap them in an InMemorySeedRepository so the middleware can serve
|
|
110
|
-
// them without touching D1. Production index.ts passes seeds:[] so D1SeedRepository
|
|
111
|
-
// is used as the live path.
|
|
112
|
-
const seedsArray = Array.isArray(config.seeds) ? config.seeds : Object.values(config.seeds)
|
|
113
|
-
const seedRepository = config.seedRepository
|
|
114
|
-
?? (seedsArray.length > 0 ? new InMemorySeedRepository(seedsArray) : undefined)
|
|
115
|
-
|
|
116
|
-
const app = new Hono<{ Bindings: Env; Variables: Variables }>()
|
|
117
|
-
|
|
118
|
-
// 1. Repository Injection (must be first — seedRegistryMiddleware depends on seedRepository)
|
|
119
|
-
app.use('*', repositoryMiddleware({
|
|
120
|
-
repository: config.repository,
|
|
121
|
-
idempotencyRepository: config.idempotencyRepository,
|
|
122
|
-
mediaRepository: config.mediaRepository,
|
|
123
|
-
systemStatsRepository: config.systemStatsRepository,
|
|
124
|
-
seedRepository,
|
|
125
|
-
}))
|
|
126
|
-
|
|
127
|
-
// 2. Seed Registry Hydration (D1-backed, version-token-cached per isolate)
|
|
128
|
-
app.use('*', seedRegistryMiddleware())
|
|
129
|
-
|
|
130
|
-
// 3. Storage / Auth / Rate Limiting / Observability
|
|
131
|
-
app.use('*', storageMiddleware({
|
|
132
|
-
bucket: config.bucket,
|
|
133
|
-
}))
|
|
134
|
-
|
|
135
|
-
app.use('*', authProvidersMiddleware())
|
|
136
|
-
app.use('*', rateLimiterMiddleware())
|
|
137
|
-
app.use('*', observabilityMiddleware())
|
|
138
|
-
|
|
139
|
-
app.use('*', async (context, next) => {
|
|
140
|
-
const isDev = context.env.ENV !== 'production'
|
|
141
|
-
|
|
142
|
-
return cors({
|
|
143
|
-
origin: (origin) => {
|
|
144
|
-
if (!origin) return origin ?? ''
|
|
145
|
-
|
|
146
|
-
// In dev, allow all localhost/127.0.0.1 origins regardless of port
|
|
147
|
-
if (isDev) {
|
|
148
|
-
try {
|
|
149
|
-
const { hostname } = new URL(origin)
|
|
150
|
-
if (hostname === 'localhost' || hostname === '127.0.0.1') return origin
|
|
151
|
-
} catch {}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
const origins = (context.env.CORS_ORIGINS ?? 'http://localhost:5173')
|
|
155
|
-
.split(',')
|
|
156
|
-
.map((o) => o.trim())
|
|
157
|
-
.filter(Boolean)
|
|
158
|
-
|
|
159
|
-
if (origins.includes(origin)) return origin
|
|
160
|
-
|
|
161
|
-
// Allow same-origin requests
|
|
162
|
-
try {
|
|
163
|
-
const originUrl = new URL(origin)
|
|
164
|
-
const requestUrl = new URL(context.req.url)
|
|
165
|
-
if (originUrl.hostname === requestUrl.hostname && originUrl.port === requestUrl.port) {
|
|
166
|
-
return origin
|
|
167
|
-
}
|
|
168
|
-
} catch {}
|
|
169
|
-
|
|
170
|
-
return null
|
|
171
|
-
},
|
|
172
|
-
allowMethods: ['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS'],
|
|
173
|
-
allowHeaders: ['Content-Type', 'Authorization', 'X-API-Key'],
|
|
174
|
-
credentials: true,
|
|
175
|
-
})(context, next)
|
|
176
|
-
})
|
|
177
|
-
|
|
178
|
-
app.use('*', async (context, next) => {
|
|
179
|
-
await next()
|
|
180
|
-
if (context.req.path.startsWith('/admin')) return
|
|
181
|
-
context.header('X-Frame-Options', 'DENY')
|
|
182
|
-
context.header('X-Content-Type-Options', 'nosniff')
|
|
183
|
-
context.header('Referrer-Policy', 'strict-origin-when-cross-origin')
|
|
184
|
-
context.header('Permissions-Policy', 'geolocation=(), microphone=(), camera=()')
|
|
185
|
-
context.header('Content-Security-Policy', "default-src 'self'; frame-ancestors 'none'")
|
|
186
|
-
})
|
|
187
|
-
|
|
188
|
-
// 2. Analytics Middleware
|
|
189
|
-
app.use('/api/*', async (context, next) => {
|
|
190
|
-
await next()
|
|
191
|
-
if (context.req.method === 'OPTIONS') return
|
|
192
|
-
if (context.res.status < 200 || context.res.status >= 300) return
|
|
193
|
-
|
|
194
|
-
let executionCtx: any
|
|
195
|
-
try { executionCtx = context.executionCtx } catch {}
|
|
196
|
-
if (!executionCtx) return
|
|
197
|
-
|
|
198
|
-
const analyticsRepository = context.get('analyticsRepository')
|
|
199
|
-
if (!analyticsRepository) return
|
|
200
|
-
|
|
201
|
-
const seedSlug = extractPublicSeed(context.req.path)
|
|
202
|
-
|
|
203
|
-
executionCtx.waitUntil(
|
|
204
|
-
analyticsRepository.recordRequest(seedSlug).catch((error: unknown) => {
|
|
205
|
-
console.error('Analytics middleware error:', error)
|
|
206
|
-
})
|
|
207
|
-
)
|
|
208
|
-
})
|
|
209
|
-
|
|
210
|
-
// 3. Auth Routes
|
|
211
|
-
app.post('/auth/login', async (context) => {
|
|
212
|
-
try {
|
|
213
|
-
let body: any
|
|
214
|
-
try { body = await context.req.json() } catch { return context.json({ error: AUTH_ERRORS.INVALID_REQUEST }, 400) }
|
|
215
|
-
const credentials = parseLoginBody(body)
|
|
216
|
-
if (!credentials) return context.json({ error: AUTH_ERRORS.INVALID_REQUEST }, 400)
|
|
217
|
-
const { email, password } = credentials
|
|
218
|
-
if (!validateLoginInput(email, password)) return context.json({ error: AUTH_ERRORS.INVALID_REQUEST }, 400)
|
|
219
|
-
|
|
220
|
-
const clientIp = getClientIp(context.req)
|
|
221
|
-
const loginRateLimit = await context.get('rateLimiters').getLimiter('login').checkLimit(clientIp)
|
|
222
|
-
if (!loginRateLimit.isAllowed) return context.json({ error: AUTH_ERRORS.RATE_LIMIT_EXCEEDED }, 429)
|
|
223
|
-
|
|
224
|
-
const user = await context.get('userRepository').findByEmail(email)
|
|
225
|
-
const hashToCompare = user?.passwordHash ?? DUMMY_PASSWORD_HASH
|
|
226
|
-
const isValid = await verifyPassword(password, hashToCompare, context.get('hashProvider'))
|
|
227
|
-
|
|
228
|
-
if (!user || !isValid) return context.json({ error: AUTH_ERRORS.INVALID_CREDENTIALS }, 401)
|
|
229
|
-
|
|
230
|
-
const accessToken = await context.get('tokenService').issue({ sub: user.id, email: user.email, name: user.name ?? undefined, surname: user.surname ?? undefined, role: user.role })
|
|
231
|
-
const refreshToken = generateRefreshToken()
|
|
232
|
-
const refreshTokenHash = await sha256hex(refreshToken)
|
|
233
|
-
const nowSeconds = SystemClock.nowSeconds()
|
|
234
|
-
|
|
235
|
-
await context.get('sessionRepository').saveRefreshToken({
|
|
236
|
-
id: SystemIdGenerator.uuid(),
|
|
237
|
-
userId: user.id,
|
|
238
|
-
tokenHash: refreshTokenHash,
|
|
239
|
-
expiresAt: nowSeconds + REFRESH_TOKEN_EXPIRY_DAYS * SECONDS_PER_DAY,
|
|
240
|
-
})
|
|
241
|
-
setCookie(context, 'refresh_token', refreshToken, getRefreshTokenCookieOptions(isRequestSecure(context.req.url)))
|
|
242
|
-
return context.json({ token: accessToken, expiresIn: '15m' }, 200)
|
|
243
|
-
} catch (error) {
|
|
244
|
-
return handleAuthError(context, error, 'Login')
|
|
245
|
-
}
|
|
246
|
-
})
|
|
247
|
-
|
|
248
|
-
app.post('/auth/refresh', async (context) => {
|
|
249
|
-
try {
|
|
250
|
-
const refreshClientIp = getClientIp(context.req)
|
|
251
|
-
const refreshRateLimit = await context.get('rateLimiters').getLimiter('tokenRefresh').checkLimit(refreshClientIp)
|
|
252
|
-
if (!refreshRateLimit.isAllowed) return context.json({ error: AUTH_ERRORS.RATE_LIMIT_EXCEEDED }, 429)
|
|
253
|
-
|
|
254
|
-
const refreshToken = getCookie(context, 'refresh_token')
|
|
255
|
-
if (!refreshToken) return context.json({ error: 'Refresh token missing' }, 401)
|
|
256
|
-
|
|
257
|
-
const nowSeconds = SystemClock.nowSeconds()
|
|
258
|
-
const tokenHash = await sha256hex(refreshToken)
|
|
259
|
-
const activeSession = await context.get('sessionRepository').findActiveByHash(tokenHash, nowSeconds)
|
|
260
|
-
if (!activeSession) return context.json({ error: 'Invalid refresh token' }, 401)
|
|
261
|
-
|
|
262
|
-
const user = await context.get('userRepository').findById(activeSession.userId)
|
|
263
|
-
if (!user) {
|
|
264
|
-
await context.get('sessionRepository').revokeByHash(tokenHash, nowSeconds)
|
|
265
|
-
return context.json({ error: 'User not found' }, 401)
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
// Issue new tokens before revoking the old one: if saveRefreshToken fails,
|
|
269
|
-
// the old token stays valid and the user is not locked out.
|
|
270
|
-
const newAccessToken = await context.get('tokenService').issue({ sub: user.id, email: user.email, name: user.name ?? undefined, surname: user.surname ?? undefined, role: user.role })
|
|
271
|
-
const newRefreshToken = generateRefreshToken()
|
|
272
|
-
const newRefreshTokenHash = await sha256hex(newRefreshToken)
|
|
273
|
-
|
|
274
|
-
await context.get('sessionRepository').saveRefreshToken({
|
|
275
|
-
id: SystemIdGenerator.uuid(),
|
|
276
|
-
userId: user.id,
|
|
277
|
-
tokenHash: newRefreshTokenHash,
|
|
278
|
-
expiresAt: nowSeconds + REFRESH_TOKEN_EXPIRY_DAYS * SECONDS_PER_DAY,
|
|
279
|
-
})
|
|
280
|
-
|
|
281
|
-
const revoked = await context.get('sessionRepository').revokeByHash(tokenHash, nowSeconds)
|
|
282
|
-
if (!revoked) return context.json({ error: 'Invalid refresh token' }, 401)
|
|
283
|
-
|
|
284
|
-
setCookie(context, 'refresh_token', newRefreshToken, getRefreshTokenCookieOptions(isRequestSecure(context.req.url)))
|
|
285
|
-
return context.json({ token: newAccessToken, expiresIn: '15m' }, 200)
|
|
286
|
-
} catch (error) {
|
|
287
|
-
return handleAuthError(context, error, 'Refresh')
|
|
288
|
-
}
|
|
289
|
-
})
|
|
290
|
-
|
|
291
|
-
app.post('/auth/logout', async (context) => {
|
|
292
|
-
try {
|
|
293
|
-
const refreshToken = getCookie(context, 'refresh_token')
|
|
294
|
-
if (refreshToken) {
|
|
295
|
-
const nowSeconds = SystemClock.nowSeconds()
|
|
296
|
-
const tokenHash = await sha256hex(refreshToken)
|
|
297
|
-
await context.get('sessionRepository').revokeByHash(tokenHash, nowSeconds)
|
|
298
|
-
}
|
|
299
|
-
deleteCookie(context, 'refresh_token', getRefreshTokenDeleteCookieOptions(isRequestSecure(context.req.url)))
|
|
300
|
-
return context.json({ message: 'Logged out' }, 200)
|
|
301
|
-
} catch (error) {
|
|
302
|
-
return handleAuthError(context, error, 'Logout')
|
|
303
|
-
}
|
|
304
|
-
})
|
|
305
|
-
|
|
306
|
-
// 4. Setup & Password Reset
|
|
307
|
-
app.route('/', setupApp)
|
|
308
|
-
app.route('/', passwordResetApp)
|
|
309
|
-
|
|
310
|
-
// 5. Protected CMS API
|
|
311
|
-
const apiProtected = new Hono<{ Bindings: Env; Variables: Variables }>()
|
|
312
|
-
apiProtected.use('*', authMiddleware())
|
|
313
|
-
|
|
314
|
-
apiProtected.route('/settings', settingsApp)
|
|
315
|
-
apiProtected.route('/schema', schemaApp)
|
|
316
|
-
apiProtected.route('/seeds', seedsApp)
|
|
317
|
-
apiProtected.route('/content', notificationsApp)
|
|
318
|
-
apiProtected.route('/content', statsApp)
|
|
319
|
-
apiProtected.route('/content', rotateFieldApp)
|
|
320
|
-
apiProtected.route('/content', draftApp)
|
|
321
|
-
apiProtected.route('/content', backrefsApp)
|
|
322
|
-
apiProtected.route('/content', contentFeature)
|
|
323
|
-
apiProtected.route('/widget', widgetApp)
|
|
324
|
-
apiProtected.route('/automations', automationsApp)
|
|
325
|
-
apiProtected.route('/', uploadRoutes)
|
|
326
|
-
|
|
327
|
-
// 6. Public API (must be registered before apiProtected to avoid auth middleware interception)
|
|
328
|
-
const apiPublic = new Hono<{ Bindings: Env; Variables: Variables }>()
|
|
329
|
-
apiPublic.use('*', publicRateLimitMiddleware())
|
|
330
|
-
apiPublic.use('*', apiKeyMiddleware())
|
|
331
|
-
apiPublic.route('/', publicRoutes)
|
|
332
|
-
app.route('/api/v1/public', apiPublic)
|
|
333
|
-
|
|
334
|
-
// Webhooks API (public, verified via signature)
|
|
335
|
-
app.route('/api/webhooks', webhooksApp)
|
|
336
|
-
|
|
337
|
-
app.get('/api/media/:key', (context) => serveMediaHandler(context))
|
|
338
|
-
app.route('/api', apiProtected)
|
|
339
|
-
app.route('/api/search', searchRouter)
|
|
340
|
-
|
|
341
|
-
// 7. Dashboard SPA — serve static assets from Workers Assets binding
|
|
342
|
-
app.get('/admin', (context) => context.redirect('/admin/', 301))
|
|
343
|
-
app.get('/admin/*', async (context) => {
|
|
344
|
-
if (!context.env.ASSETS) {
|
|
345
|
-
return context.text('Dashboard not configured. Set up the ASSETS binding in wrangler.toml pointing to node_modules/@beechcms/api/assets/dashboard', 503)
|
|
346
|
-
}
|
|
347
|
-
const url = new URL(context.req.url)
|
|
348
|
-
const originalPath = url.pathname
|
|
349
|
-
url.pathname = originalPath.replace(/^\/admin/, '') || '/'
|
|
350
|
-
|
|
351
|
-
let assetResponse = await context.env.ASSETS.fetch(new Request(url.toString(), context.req.raw))
|
|
352
|
-
if (assetResponse.status === 404) {
|
|
353
|
-
// SPA fallback: any unmatched /admin/* route serves index.html
|
|
354
|
-
assetResponse = await context.env.ASSETS.fetch(new Request(new URL('/index.html', context.req.url)))
|
|
355
|
-
}
|
|
356
|
-
// ASSETS returns an immutable Response — wrap it to inject security headers
|
|
357
|
-
const headers = new Headers(assetResponse.headers)
|
|
358
|
-
headers.set('Content-Security-Policy',
|
|
359
|
-
"default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: https:; connect-src 'self'; frame-ancestors 'none'"
|
|
360
|
-
)
|
|
361
|
-
headers.set('X-Frame-Options', 'DENY')
|
|
362
|
-
headers.set('X-Content-Type-Options', 'nosniff')
|
|
363
|
-
headers.set('Referrer-Policy', 'strict-origin-when-cross-origin')
|
|
364
|
-
return new Response(assetResponse.body, { status: assetResponse.status, headers })
|
|
365
|
-
})
|
|
366
|
-
|
|
367
|
-
return app
|
|
368
|
-
}
|
|
@@ -1,255 +0,0 @@
|
|
|
1
|
-
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
-
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
-
// See LICENSE in the repository root for license terms.
|
|
4
|
-
|
|
5
|
-
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
6
|
-
import { executeAction } from '../action-executors'
|
|
7
|
-
import type { ActionContext } from '../action-executors'
|
|
8
|
-
import type { ContentRepository, Seed, IIdGenerator } from '@beechcms/core'
|
|
9
|
-
import { deleteAllMessages, listMessages, waitForMessage, getMessageHtml } from '../../../../test/helpers/mailpit-client'
|
|
10
|
-
import { newBucket, waitForRequest } from '../../../../test/helpers/webhook-tester-client'
|
|
11
|
-
|
|
12
|
-
// ── Shared mock context factory ───────────────────────────────────────────────
|
|
13
|
-
|
|
14
|
-
function makeCtx(overrides: Partial<ActionContext> = {}): ActionContext {
|
|
15
|
-
const { entry: entryOverride, context: contextOverride, ...rest } = overrides
|
|
16
|
-
const entry: Record<string, unknown> = entryOverride ?? { id: 'entry-1', title: 'Test Entry', status: 'published' }
|
|
17
|
-
const context = contextOverride ?? {
|
|
18
|
-
triggerEntry: entry,
|
|
19
|
-
lookup(parsed: import('../template-grammar').ParsedKey, onMissing?: (f: string) => void) {
|
|
20
|
-
if (parsed.kind === 'simple') {
|
|
21
|
-
const val = entry[parsed.path]
|
|
22
|
-
if (val == null && onMissing) onMissing(parsed.path)
|
|
23
|
-
return val
|
|
24
|
-
}
|
|
25
|
-
if (parsed.kind === 'scoped' && parsed.scope === 'this' && parsed.field) {
|
|
26
|
-
return entry[parsed.field]
|
|
27
|
-
}
|
|
28
|
-
return undefined
|
|
29
|
-
},
|
|
30
|
-
}
|
|
31
|
-
return {
|
|
32
|
-
entry,
|
|
33
|
-
env: { RESEND_API_KEY: 'test-key', EMAIL_FROM: 'test@example.com' },
|
|
34
|
-
repository: {
|
|
35
|
-
update: vi.fn().mockResolvedValue(undefined),
|
|
36
|
-
create: vi.fn().mockResolvedValue(undefined),
|
|
37
|
-
} as unknown as ContentRepository,
|
|
38
|
-
getSeed: vi.fn().mockReturnValue({ branches: [] } as unknown as Seed),
|
|
39
|
-
seed: { slug: 'posts', branches: [] } as unknown as Seed,
|
|
40
|
-
idGenerator: { uuid: vi.fn().mockReturnValue('new-id-123') } as unknown as IIdGenerator,
|
|
41
|
-
context,
|
|
42
|
-
variables: {},
|
|
43
|
-
...rest,
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
// ── webhook ───────────────────────────────────────────────────────────────────
|
|
48
|
-
|
|
49
|
-
describe('webhook executor', () => {
|
|
50
|
-
it('POSTs to URL with interpolated body_template', async () => {
|
|
51
|
-
const { url, uuid } = await newBucket()
|
|
52
|
-
const ctx = makeCtx()
|
|
53
|
-
await executeAction({ type: 'webhook', url, body_template: '{"id":"{{id}}","title":"{{title}}"}' }, ctx)
|
|
54
|
-
const req = await waitForRequest(uuid)
|
|
55
|
-
expect(req.method).toBe('POST')
|
|
56
|
-
expect(JSON.parse(req.body)).toMatchObject({ id: 'entry-1', title: 'Test Entry' })
|
|
57
|
-
})
|
|
58
|
-
|
|
59
|
-
it('interpolates body_template with entry values', async () => {
|
|
60
|
-
const { url, uuid } = await newBucket()
|
|
61
|
-
const ctx = makeCtx()
|
|
62
|
-
await executeAction({ type: 'webhook', url, body_template: '{"t":"{{title}}"}' }, ctx)
|
|
63
|
-
const req = await waitForRequest(uuid)
|
|
64
|
-
expect(req.body).toBe('{"t":"Test Entry"}')
|
|
65
|
-
})
|
|
66
|
-
|
|
67
|
-
it('merges custom headers', async () => {
|
|
68
|
-
const { url, uuid } = await newBucket()
|
|
69
|
-
const ctx = makeCtx()
|
|
70
|
-
await executeAction({ type: 'webhook', url, headers: { 'X-Token': 'abc' } }, ctx)
|
|
71
|
-
const req = await waitForRequest(uuid)
|
|
72
|
-
expect(req.headers['x-token']).toBe('abc')
|
|
73
|
-
})
|
|
74
|
-
|
|
75
|
-
it('throws when webhook endpoint is unreachable', async () => {
|
|
76
|
-
const ctx = makeCtx()
|
|
77
|
-
await expect(executeAction({ type: 'webhook', url: 'http://localhost:19999/nope' }, ctx)).rejects.toThrow()
|
|
78
|
-
})
|
|
79
|
-
|
|
80
|
-
it('uses custom HTTP method', async () => {
|
|
81
|
-
const { url, uuid } = await newBucket()
|
|
82
|
-
const ctx = makeCtx()
|
|
83
|
-
await executeAction({ type: 'webhook', url, method: 'PUT' }, ctx)
|
|
84
|
-
const req = await waitForRequest(uuid)
|
|
85
|
-
expect(req.method).toBe('PUT')
|
|
86
|
-
})
|
|
87
|
-
})
|
|
88
|
-
|
|
89
|
-
// ── send_mail ─────────────────────────────────────────────────────────────────
|
|
90
|
-
|
|
91
|
-
describe('send_mail executor', () => {
|
|
92
|
-
beforeEach(() => deleteAllMessages())
|
|
93
|
-
|
|
94
|
-
it('interpolates to/subject/body and delivers to Mailpit', async () => {
|
|
95
|
-
const ctx = makeCtx({
|
|
96
|
-
entry: { id: '1', email: 'user@example.com', title: 'Hello' },
|
|
97
|
-
env: { EMAIL_PROVIDER: 'smtp', SMTP_HOST: 'localhost', SMTP_PORT: '8025', EMAIL_FROM: 'Beech <test@beech.local>' },
|
|
98
|
-
})
|
|
99
|
-
|
|
100
|
-
await executeAction(
|
|
101
|
-
{
|
|
102
|
-
type: 'send_mail',
|
|
103
|
-
to: '{{email}}',
|
|
104
|
-
subject_template: 'Re: {{title}}',
|
|
105
|
-
body_template: 'Your entry {{title}} was created.',
|
|
106
|
-
},
|
|
107
|
-
ctx,
|
|
108
|
-
)
|
|
109
|
-
|
|
110
|
-
const msg = await waitForMessage(m => m.To.some(t => t.Address === 'user@example.com'))
|
|
111
|
-
expect(msg.Subject).toBe('Re: Hello')
|
|
112
|
-
const html = await getMessageHtml(msg.ID)
|
|
113
|
-
expect(html).toContain('Hello')
|
|
114
|
-
})
|
|
115
|
-
|
|
116
|
-
it('substitutes [missing] for absent fields and logs a warning', async () => {
|
|
117
|
-
const warnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {})
|
|
118
|
-
// email is present (needed for a valid To address) but title and desc are absent
|
|
119
|
-
const ctx = makeCtx({
|
|
120
|
-
entry: { id: '1', email: 'warn-test@example.com' },
|
|
121
|
-
env: { EMAIL_PROVIDER: 'smtp', SMTP_HOST: 'localhost', SMTP_PORT: '8025', EMAIL_FROM: 'Beech <test@beech.local>' },
|
|
122
|
-
})
|
|
123
|
-
|
|
124
|
-
await executeAction(
|
|
125
|
-
{
|
|
126
|
-
type: 'send_mail',
|
|
127
|
-
to: '{{email}}',
|
|
128
|
-
subject_template: 'Re: {{title}}',
|
|
129
|
-
body_template: 'Content: {{desc}}',
|
|
130
|
-
},
|
|
131
|
-
ctx,
|
|
132
|
-
)
|
|
133
|
-
|
|
134
|
-
expect(warnSpy).toHaveBeenCalledWith(
|
|
135
|
-
expect.stringContaining('missing concrete data'),
|
|
136
|
-
expect.arrayContaining(['title', 'desc']),
|
|
137
|
-
)
|
|
138
|
-
const msg = await waitForMessage(m => m.Subject === 'Re: [missing]')
|
|
139
|
-
expect(msg.Subject).toBe('Re: [missing]')
|
|
140
|
-
const html = await getMessageHtml(msg.ID)
|
|
141
|
-
expect(html).toContain('[missing]')
|
|
142
|
-
warnSpy.mockRestore()
|
|
143
|
-
})
|
|
144
|
-
|
|
145
|
-
it('skips execution and logs an error when provider is resend and apiKey is missing', async () => {
|
|
146
|
-
const errSpy = vi.spyOn(console, 'error').mockImplementation(() => {})
|
|
147
|
-
const ctx = makeCtx({ env: {} })
|
|
148
|
-
|
|
149
|
-
await executeAction(
|
|
150
|
-
{
|
|
151
|
-
type: 'send_mail',
|
|
152
|
-
to: 'user@beech.io',
|
|
153
|
-
subject_template: 'Hello',
|
|
154
|
-
body_template: 'World',
|
|
155
|
-
},
|
|
156
|
-
ctx,
|
|
157
|
-
)
|
|
158
|
-
|
|
159
|
-
expect(errSpy).toHaveBeenCalledWith(expect.stringContaining('Execution skipped'))
|
|
160
|
-
const msgs = await listMessages()
|
|
161
|
-
expect(msgs).toHaveLength(0)
|
|
162
|
-
errSpy.mockRestore()
|
|
163
|
-
})
|
|
164
|
-
|
|
165
|
-
it('logs error and rethrows when SMTP provider is unreachable', async () => {
|
|
166
|
-
const errSpy = vi.spyOn(console, 'error').mockImplementation(() => {})
|
|
167
|
-
const ctx = makeCtx({
|
|
168
|
-
env: { EMAIL_PROVIDER: 'smtp', SMTP_HOST: 'localhost', SMTP_PORT: '19999', EMAIL_FROM: 'Beech <test@beech.local>' },
|
|
169
|
-
})
|
|
170
|
-
|
|
171
|
-
await expect(
|
|
172
|
-
executeAction(
|
|
173
|
-
{
|
|
174
|
-
type: 'send_mail',
|
|
175
|
-
to: 'test@beech.io',
|
|
176
|
-
subject_template: 'Hello',
|
|
177
|
-
body_template: 'World',
|
|
178
|
-
},
|
|
179
|
-
ctx,
|
|
180
|
-
),
|
|
181
|
-
).rejects.toThrow()
|
|
182
|
-
|
|
183
|
-
expect(errSpy).toHaveBeenCalledWith(
|
|
184
|
-
expect.stringContaining('failed to send automation email'),
|
|
185
|
-
expect.any(Error),
|
|
186
|
-
)
|
|
187
|
-
errSpy.mockRestore()
|
|
188
|
-
})
|
|
189
|
-
})
|
|
190
|
-
|
|
191
|
-
// ── edit_field ────────────────────────────────────────────────────────────────
|
|
192
|
-
|
|
193
|
-
describe('edit_field executor', () => {
|
|
194
|
-
it('calls repository.update with interpolated string value', async () => {
|
|
195
|
-
const ctx = makeCtx({ entry: { id: 'entry-1', title: 'Old Title' } })
|
|
196
|
-
await executeAction({ type: 'edit_field', field: 'summary', value: 'Based on {{title}}' }, ctx)
|
|
197
|
-
expect(ctx.repository.update).toHaveBeenCalledWith(ctx.seed, 'entry-1', { summary: 'Based on Old Title' })
|
|
198
|
-
})
|
|
199
|
-
|
|
200
|
-
it('calls repository.update with raw non-string value', async () => {
|
|
201
|
-
const ctx = makeCtx({ entry: { id: 'entry-1', title: 'T' } })
|
|
202
|
-
await executeAction({ type: 'edit_field', field: 'count', value: 42 }, ctx)
|
|
203
|
-
expect(ctx.repository.update).toHaveBeenCalledWith(ctx.seed, 'entry-1', { count: 42 })
|
|
204
|
-
})
|
|
205
|
-
|
|
206
|
-
it('throws when entry.id is missing', async () => {
|
|
207
|
-
const ctx = makeCtx({ entry: { title: 'No ID' } })
|
|
208
|
-
await expect(executeAction({ type: 'edit_field', field: 'x', value: 'y' }, ctx)).rejects.toThrow('entry.id missing')
|
|
209
|
-
})
|
|
210
|
-
})
|
|
211
|
-
|
|
212
|
-
// ── create_entry ──────────────────────────────────────────────────────────────
|
|
213
|
-
|
|
214
|
-
describe('create_entry executor', () => {
|
|
215
|
-
it('creates a new entry with field_map values from trigger entry', async () => {
|
|
216
|
-
const ctx = makeCtx({ entry: { id: 'e1', author: 'Alice' } })
|
|
217
|
-
await executeAction(
|
|
218
|
-
{ type: 'create_entry', seed_slug: 'comments', field_map: { writer: 'author', fixed: 'literal-value' } },
|
|
219
|
-
ctx,
|
|
220
|
-
)
|
|
221
|
-
expect(ctx.idGenerator.uuid).toHaveBeenCalled()
|
|
222
|
-
expect(ctx.repository.create).toHaveBeenCalledWith(
|
|
223
|
-
expect.anything(),
|
|
224
|
-
'new-id-123',
|
|
225
|
-
'new-id-123',
|
|
226
|
-
'draft',
|
|
227
|
-
{ writer: 'Alice', fixed: 'literal-value' },
|
|
228
|
-
)
|
|
229
|
-
})
|
|
230
|
-
|
|
231
|
-
it('uses literal string when source field is not in entry', async () => {
|
|
232
|
-
const ctx = makeCtx({ entry: { id: 'e1' } })
|
|
233
|
-
await executeAction(
|
|
234
|
-
{ type: 'create_entry', seed_slug: 'comments', field_map: { tag: 'missing-field' } },
|
|
235
|
-
ctx,
|
|
236
|
-
)
|
|
237
|
-
expect(ctx.repository.create).toHaveBeenCalledWith(
|
|
238
|
-
expect.anything(), 'new-id-123', 'new-id-123', 'draft',
|
|
239
|
-
{ tag: 'missing-field' },
|
|
240
|
-
)
|
|
241
|
-
})
|
|
242
|
-
|
|
243
|
-
it('throws when seed not found', async () => {
|
|
244
|
-
const ctx = makeCtx({ getSeed: vi.fn().mockReturnValue(null) })
|
|
245
|
-
await expect(
|
|
246
|
-
executeAction({ type: 'create_entry', seed_slug: 'unknown', field_map: {} }, ctx),
|
|
247
|
-
).rejects.toThrow('unknown seed unknown')
|
|
248
|
-
})
|
|
249
|
-
|
|
250
|
-
it('throws error for unknown action type to cover exhaustive default check', async () => {
|
|
251
|
-
const ctx = makeCtx()
|
|
252
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
253
|
-
await expect(executeAction({ type: 'unknown_custom_action' } as any, ctx)).rejects.toThrow('unknown action type')
|
|
254
|
-
})
|
|
255
|
-
})
|