@beechcms/api 0.6.0-preview.2 → 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/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/index.html +2 -2
- 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} +19 -24
- 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} +3 -16
- 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/{src/public/slug-utils.ts → dist/public/slug-utils.d.ts} +3 -10
- 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/package.json +27 -18
- package/assets/dashboard/assets/chart-BrJFdsGZ.js +0 -39
- package/assets/dashboard/assets/index-CIaoMxuB.css +0 -1
- package/assets/dashboard/assets/index-wTKgygsg.js +0 -636
- package/assets/dashboard/assets/pie-chart-recharts-BEaE1FOE.js +0 -1
- package/assets/dashboard/assets/timeseries-chart-recharts-DmWM6imF.js +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 -370
- 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/dashboard-layout/__tests__/dashboard-layout.handler.test.ts +0 -388
- package/src/features/dashboard-layout/dashboard-layout.handler.ts +0 -206
- package/src/features/dashboard-layout/index.ts +0 -5
- 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 -1199
- package/src/features/seeds/seeds.handler.ts +0 -558
- 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 -288
- 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.test.ts +0 -85
- package/src/middleware/auth-providers.middleware.ts +0 -45
- package/src/middleware/observability.middleware.test.ts +0 -93
- package/src/middleware/observability.middleware.ts +0 -70
- package/src/middleware/rate-limit.middleware.ts +0 -45
- package/src/middleware/repository.middleware.ts +0 -117
- 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/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 -507
- 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 -267
- package/src/shared/d1-widget.repository.ts +0 -385
- package/src/shared/dashboard-layout.repository.d1.test.ts +0 -135
- package/src/shared/dashboard-layout.repository.d1.ts +0 -58
- package/src/shared/demo-data-sql.ts +0 -216
- 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 -58
- 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.test.ts +0 -142
- 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 -90
- package/src/upload.ts +0 -198
- package/src/widget.test.ts +0 -85
- package/src/widget.ts +0 -251
|
@@ -1,27 +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 type { AutomationAction, ContentRepository, Seed, IIdGenerator } from '@beechcms/core'
|
|
6
|
-
|
|
7
|
-
type CreateEntryAction = Extract<AutomationAction, { type: 'create_entry' }>
|
|
8
|
-
type SeedResolver = (slug: string) => Seed | null
|
|
9
|
-
|
|
10
|
-
export async function executeCreateEntry(
|
|
11
|
-
action: CreateEntryAction,
|
|
12
|
-
entry: Record<string, unknown>,
|
|
13
|
-
repository: ContentRepository,
|
|
14
|
-
getSeed: SeedResolver,
|
|
15
|
-
idGenerator: IIdGenerator,
|
|
16
|
-
): Promise<void> {
|
|
17
|
-
const targetSeed = getSeed(action.seed_slug)
|
|
18
|
-
if (!targetSeed) throw new Error(`create_entry: unknown seed ${action.seed_slug}`)
|
|
19
|
-
|
|
20
|
-
const payload: Record<string, unknown> = {}
|
|
21
|
-
for (const [targetField, sourceField] of Object.entries(action.field_map)) {
|
|
22
|
-
payload[targetField] = (sourceField as string) in entry ? entry[sourceField as string] : sourceField
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
const newId = idGenerator.uuid()
|
|
26
|
-
await repository.create(targetSeed, newId, newId, 'draft', payload)
|
|
27
|
-
}
|
|
@@ -1,26 +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 type { AutomationAction, ContentRepository, Seed } from '@beechcms/core'
|
|
6
|
-
import type { ResolvedContext } from '../context-resolver'
|
|
7
|
-
import { interpolate } from '../automation-runner.utils'
|
|
8
|
-
|
|
9
|
-
type EditFieldAction = Extract<AutomationAction, { type: 'edit_field' }>
|
|
10
|
-
|
|
11
|
-
export async function executeEditField(
|
|
12
|
-
action: EditFieldAction,
|
|
13
|
-
entry: Record<string, unknown>,
|
|
14
|
-
context: ResolvedContext,
|
|
15
|
-
repository: ContentRepository,
|
|
16
|
-
seed: Seed,
|
|
17
|
-
): Promise<void> {
|
|
18
|
-
const id = entry.id
|
|
19
|
-
if (typeof id !== 'string') {
|
|
20
|
-
throw new Error('edit_field: entry.id missing')
|
|
21
|
-
}
|
|
22
|
-
const resolved = typeof action.value === 'string'
|
|
23
|
-
? interpolate(action.value, context)
|
|
24
|
-
: action.value
|
|
25
|
-
await repository.update(seed, id, { [action.field]: resolved })
|
|
26
|
-
}
|
|
@@ -1,37 +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 type { AutomationAction, ContentRepository, Seed, IIdGenerator } from '@beechcms/core'
|
|
6
|
-
import type { ResolvedContext } from '../context-resolver'
|
|
7
|
-
import { executeWebhook } from './webhook.executor'
|
|
8
|
-
import { executeSendMail } from './send-mail.executor'
|
|
9
|
-
import { executeEditField } from './edit-field.executor'
|
|
10
|
-
import { executeCreateEntry } from './create-entry.executor'
|
|
11
|
-
import { executeSetVariable } from './set-variable.executor'
|
|
12
|
-
|
|
13
|
-
export interface ActionContext {
|
|
14
|
-
entry: Record<string, unknown>
|
|
15
|
-
env: Record<string, string | undefined>
|
|
16
|
-
repository: ContentRepository
|
|
17
|
-
getSeed: (slug: string) => Seed | null
|
|
18
|
-
seed: Seed
|
|
19
|
-
idGenerator: IIdGenerator
|
|
20
|
-
context: ResolvedContext
|
|
21
|
-
variables: Record<string, unknown>
|
|
22
|
-
// TODO Sprint 8: context will also power evaluateWhen() for per-action when-guards
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export async function executeAction(action: AutomationAction, ctx: ActionContext): Promise<void> {
|
|
26
|
-
switch (action.type) {
|
|
27
|
-
case 'set_variable': return executeSetVariable(action, ctx)
|
|
28
|
-
case 'webhook': return executeWebhook(action, ctx.context, ctx.env)
|
|
29
|
-
case 'send_mail': return executeSendMail(action, ctx.context, ctx.env)
|
|
30
|
-
case 'edit_field': return executeEditField(action, ctx.entry, ctx.context, ctx.repository, ctx.seed)
|
|
31
|
-
case 'create_entry': return executeCreateEntry(action, ctx.entry, ctx.repository, ctx.getSeed, ctx.idGenerator)
|
|
32
|
-
default: {
|
|
33
|
-
const _exhaustive: never = action
|
|
34
|
-
throw new Error(`unknown action type: ${(action as { type: string }).type}`)
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
@@ -1,53 +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 type { AutomationAction } from '@beechcms/core'
|
|
6
|
-
import type { ResolvedContext } from '../context-resolver'
|
|
7
|
-
import { sendAutomationMail } from '../../email'
|
|
8
|
-
import { interpolate } from '../automation-runner.utils'
|
|
9
|
-
|
|
10
|
-
type SendMailAction = Extract<AutomationAction, { type: 'send_mail' }>
|
|
11
|
-
|
|
12
|
-
export async function executeSendMail(
|
|
13
|
-
action: SendMailAction,
|
|
14
|
-
context: ResolvedContext,
|
|
15
|
-
env: Record<string, string | undefined>,
|
|
16
|
-
): Promise<void> {
|
|
17
|
-
const missingFields: string[] = []
|
|
18
|
-
const logMissing = (field: string) => missingFields.push(field)
|
|
19
|
-
|
|
20
|
-
const to = interpolate(action.to, context, '[missing]', logMissing)
|
|
21
|
-
const subject = interpolate(action.subject_template, context, '[missing]', logMissing)
|
|
22
|
-
const body = interpolate(action.body_template, context, '[missing]', logMissing)
|
|
23
|
-
|
|
24
|
-
if (missingFields.length > 0) {
|
|
25
|
-
console.warn('[automations:send_mail] placeholders evaluated to default value due to missing concrete data:', missingFields)
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
const useSmtp = env.EMAIL_PROVIDER === 'smtp'
|
|
29
|
-
const apiKey = env.EMAIL_API_KEY ?? env.RESEND_API_KEY
|
|
30
|
-
if (!useSmtp && !apiKey) {
|
|
31
|
-
console.error('[automations:send_mail] Execution skipped: Email API key is missing from the environment configuration.')
|
|
32
|
-
return
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
const smtpBaseUrl = env.SMTP_HOST
|
|
36
|
-
? `http://${env.SMTP_HOST}:${env.SMTP_PORT ?? '8025'}`
|
|
37
|
-
: undefined
|
|
38
|
-
|
|
39
|
-
try {
|
|
40
|
-
await sendAutomationMail({
|
|
41
|
-
to,
|
|
42
|
-
subject,
|
|
43
|
-
body,
|
|
44
|
-
apiKey: apiKey ?? '',
|
|
45
|
-
from: env.EMAIL_FROM,
|
|
46
|
-
provider: env.EMAIL_PROVIDER as 'smtp' | 'resend' | undefined,
|
|
47
|
-
smtpBaseUrl,
|
|
48
|
-
})
|
|
49
|
-
} catch (error) {
|
|
50
|
-
console.error('[automations:send_mail] failed to send automation email via provider:', error)
|
|
51
|
-
throw error
|
|
52
|
-
}
|
|
53
|
-
}
|
|
@@ -1,159 +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 type { AutomationAction, ContentRepository, Seed } from '@beechcms/core'
|
|
6
|
-
import type { ResolvedContext } from '../context-resolver'
|
|
7
|
-
import { conditionToFilterGroup } from '../filter-translation'
|
|
8
|
-
import { interpolate } from '../automation-runner.utils'
|
|
9
|
-
|
|
10
|
-
type SetVariableAction = Extract<AutomationAction, { type: 'set_variable' }>
|
|
11
|
-
|
|
12
|
-
export async function executeSetVariable(
|
|
13
|
-
action: SetVariableAction,
|
|
14
|
-
ctx: {
|
|
15
|
-
entry: Record<string, unknown>
|
|
16
|
-
variables: Record<string, unknown>
|
|
17
|
-
repository: ContentRepository
|
|
18
|
-
getSeed: (slug: string) => Seed | null
|
|
19
|
-
seed: Seed
|
|
20
|
-
context: ResolvedContext
|
|
21
|
-
},
|
|
22
|
-
): Promise<void> {
|
|
23
|
-
const seedSlug = action.seed_slug ?? ctx.seed.slug
|
|
24
|
-
const targetSeed = ctx.getSeed(seedSlug)
|
|
25
|
-
if (!targetSeed) {
|
|
26
|
-
console.warn(`[set_variable] seed "${seedSlug}" not found; "${action.name}" → null`)
|
|
27
|
-
ctx.variables[action.name] = null
|
|
28
|
-
return
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// ── legacy read normalisation ─────────────────────────────────────────────
|
|
32
|
-
let effectiveFixedId = action.fixed_id
|
|
33
|
-
if (effectiveFixedId === undefined && action.load_type === 'fruit') {
|
|
34
|
-
const idFilter = (action.filters ?? []).find(
|
|
35
|
-
(f) => f.field === 'id' && f.op === 'eq' && typeof f.value === 'string',
|
|
36
|
-
)
|
|
37
|
-
if (idFilter) effectiveFixedId = String(idFilter.value)
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
if (effectiveFixedId !== undefined) {
|
|
41
|
-
const resolvedId = interpolate(effectiveFixedId, ctx.context)
|
|
42
|
-
const { items } = await ctx.repository.findMany(targetSeed, {
|
|
43
|
-
filters: [{ column: 'id', type: 'system', conditions: [{ op: 'eq', value: resolvedId }] }],
|
|
44
|
-
status: null,
|
|
45
|
-
pagination: { limit: 1, offset: 0 },
|
|
46
|
-
})
|
|
47
|
-
const item = items[0] ?? null
|
|
48
|
-
if (!item) console.warn(`[set_variable] "${action.name}": id "${resolvedId}" not found`)
|
|
49
|
-
if (action.column) {
|
|
50
|
-
ctx.variables[action.name] = item ? { _value: item[action.column] } : null
|
|
51
|
-
} else {
|
|
52
|
-
ctx.variables[action.name] = item
|
|
53
|
-
}
|
|
54
|
-
return
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
const resolvedFilters = (action.filters ?? []).map((f) => {
|
|
58
|
-
const value = typeof f.value === 'string' ? interpolate(f.value, ctx.context) : f.value
|
|
59
|
-
return conditionToFilterGroup({ ...f, value }, targetSeed)
|
|
60
|
-
})
|
|
61
|
-
|
|
62
|
-
const orderDir: 'ASC' | 'DESC' = action.order === 'asc' ? 'ASC' : 'DESC'
|
|
63
|
-
const { items } = await ctx.repository.findMany(targetSeed, {
|
|
64
|
-
filters: resolvedFilters,
|
|
65
|
-
status: null,
|
|
66
|
-
pagination: { limit: 1000, offset: 0 },
|
|
67
|
-
orderBy: action.order_by ? { column: action.order_by, dir: orderDir } : undefined,
|
|
68
|
-
})
|
|
69
|
-
|
|
70
|
-
ctx.variables[action.name] = materializeCollection(targetSeed, items, action.column ?? null)
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
export function materializeCollection(
|
|
74
|
-
seed: Seed,
|
|
75
|
-
items: Array<Record<string, unknown>>,
|
|
76
|
-
pinned: string | null,
|
|
77
|
-
): Record<string, unknown> {
|
|
78
|
-
const firstone = items.length > 0
|
|
79
|
-
? items.reduce((best, r) => (Number(r['created_at']) < Number(best['created_at']) ? r : best), items[0])
|
|
80
|
-
: null
|
|
81
|
-
const lastone = items.length > 0
|
|
82
|
-
? items.reduce((best, r) => (Number(r['created_at']) > Number(best['created_at']) ? r : best), items[0])
|
|
83
|
-
: null
|
|
84
|
-
|
|
85
|
-
let out: Record<string, unknown>
|
|
86
|
-
|
|
87
|
-
if (pinned === null) {
|
|
88
|
-
out = calculateGeneralStats(seed, items)
|
|
89
|
-
out.firstone = firstone
|
|
90
|
-
out.lastone = lastone
|
|
91
|
-
} else {
|
|
92
|
-
out = calculatePinnedStats(items, pinned)
|
|
93
|
-
out.firstone = firstone
|
|
94
|
-
out.lastone = lastone
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
Object.defineProperty(out, '_items', { value: items, enumerable: false })
|
|
98
|
-
return out
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
function formatPluckValues(items: Array<Record<string, unknown>>, key: string): string {
|
|
102
|
-
const vals = items.slice(0, 100).map((r) => String(r[key] ?? ''))
|
|
103
|
-
return vals.join(', ') + (items.length > 100 ? ' …' : '')
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
function calculatePinnedStats(items: Array<Record<string, unknown>>, pinned: string): Record<string, unknown> {
|
|
107
|
-
const nonNull = items.filter((r) => r[pinned] != null)
|
|
108
|
-
const nums = nonNull.map((r) => Number(r[pinned]))
|
|
109
|
-
const validNums = nums.filter((n) => !Number.isNaN(n))
|
|
110
|
-
const total = validNums.reduce((a, n) => a + n, 0)
|
|
111
|
-
const pluck = formatPluckValues(items, pinned)
|
|
112
|
-
|
|
113
|
-
return {
|
|
114
|
-
count: nonNull.length,
|
|
115
|
-
sum: validNums.length > 0 ? total : 0,
|
|
116
|
-
avg: validNums.length > 0 ? total / validNums.length : 0,
|
|
117
|
-
min: validNums.length > 0 ? Math.min(...validNums) : 0,
|
|
118
|
-
max: validNums.length > 0 ? Math.max(...validNums) : 0,
|
|
119
|
-
pluck,
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
function extractValidNumbers(items: Array<Record<string, unknown>>, key: string): number[] {
|
|
124
|
-
return items
|
|
125
|
-
.map((r) => {
|
|
126
|
-
const v = r[key]
|
|
127
|
-
const n = Number(v)
|
|
128
|
-
if (!Number.isNaN(n)) return n
|
|
129
|
-
if (typeof v === 'string') {
|
|
130
|
-
const d = Date.parse(v)
|
|
131
|
-
return Number.isNaN(d) ? Number.NaN : d / 1000
|
|
132
|
-
}
|
|
133
|
-
return Number.NaN
|
|
134
|
-
})
|
|
135
|
-
.filter((n) => !Number.isNaN(n))
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
function calculateGeneralStats(seed: Seed, items: Array<Record<string, unknown>>): Record<string, unknown> {
|
|
139
|
-
const sum: Record<string, number> = {}
|
|
140
|
-
const avg: Record<string, number> = {}
|
|
141
|
-
const min: Record<string, number> = {}
|
|
142
|
-
const max: Record<string, number> = {}
|
|
143
|
-
const pluck: Record<string, string> = {}
|
|
144
|
-
|
|
145
|
-
for (const branch of seed.branches) {
|
|
146
|
-
if (branch.type === 'number' || branch.type === 'date') {
|
|
147
|
-
const nums = extractValidNumbers(items, branch.alias)
|
|
148
|
-
const total = nums.reduce((a, n) => a + n, 0)
|
|
149
|
-
sum[branch.alias] = total
|
|
150
|
-
avg[branch.alias] = items.length > 0 ? total / items.length : 0
|
|
151
|
-
min[branch.alias] = nums.length > 0 ? Math.min(...nums) : 0
|
|
152
|
-
max[branch.alias] = nums.length > 0 ? Math.max(...nums) : 0
|
|
153
|
-
} else {
|
|
154
|
-
pluck[branch.alias] = formatPluckValues(items, branch.alias)
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
return { count: items.length, sum, avg, min, max, pluck }
|
|
159
|
-
}
|
|
@@ -1,67 +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 type { AutomationAction } from '@beechcms/core'
|
|
6
|
-
import type { ResolvedContext } from '../context-resolver'
|
|
7
|
-
import { interpolate } from '../automation-runner.utils'
|
|
8
|
-
|
|
9
|
-
type WebhookAction = Extract<AutomationAction, { type: 'webhook' }>
|
|
10
|
-
|
|
11
|
-
const WEBHOOK_TIMEOUT_MS = 8_000
|
|
12
|
-
|
|
13
|
-
let warnedNoSecret = false
|
|
14
|
-
|
|
15
|
-
async function signBody(body: string, secret: string): Promise<string> {
|
|
16
|
-
const encoder = new TextEncoder()
|
|
17
|
-
const key = await crypto.subtle.importKey(
|
|
18
|
-
'raw',
|
|
19
|
-
encoder.encode(secret),
|
|
20
|
-
{ name: 'HMAC', hash: 'SHA-256' },
|
|
21
|
-
false,
|
|
22
|
-
['sign'],
|
|
23
|
-
)
|
|
24
|
-
const sig = await crypto.subtle.sign('HMAC', key, encoder.encode(body))
|
|
25
|
-
return 'sha256=' + Array.from(new Uint8Array(sig))
|
|
26
|
-
.map((b) => b.toString(16).padStart(2, '0'))
|
|
27
|
-
.join('')
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export async function executeWebhook(
|
|
31
|
-
action: WebhookAction,
|
|
32
|
-
context: ResolvedContext,
|
|
33
|
-
env: Record<string, string | undefined>,
|
|
34
|
-
): Promise<void> {
|
|
35
|
-
const body = interpolate(action.body_template ?? '{}', context)
|
|
36
|
-
|
|
37
|
-
const secret = env.WEBHOOK_SECRET
|
|
38
|
-
let signatureHeader: Record<string, string> = {}
|
|
39
|
-
if (secret) {
|
|
40
|
-
signatureHeader = { 'X-BeechCMS-Signature': await signBody(body, secret) }
|
|
41
|
-
} else if (!warnedNoSecret) {
|
|
42
|
-
warnedNoSecret = true
|
|
43
|
-
console.warn('[webhook] WEBHOOK_SECRET not set — outgoing webhooks are unsigned')
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
try {
|
|
47
|
-
const response = await fetch(action.url, {
|
|
48
|
-
method: action.method ?? 'POST',
|
|
49
|
-
headers: {
|
|
50
|
-
'Content-Type': 'application/json',
|
|
51
|
-
...(action.headers ?? {}),
|
|
52
|
-
...signatureHeader,
|
|
53
|
-
},
|
|
54
|
-
body,
|
|
55
|
-
signal: AbortSignal.timeout(WEBHOOK_TIMEOUT_MS),
|
|
56
|
-
})
|
|
57
|
-
|
|
58
|
-
if (!response.ok) {
|
|
59
|
-
throw new Error(`Webhook ${action.url} responded ${response.status}`)
|
|
60
|
-
}
|
|
61
|
-
} catch (err) {
|
|
62
|
-
if (err instanceof Error && err.name === 'TimeoutError') {
|
|
63
|
-
throw new Error(`Webhook ${action.url} timed out after ${WEBHOOK_TIMEOUT_MS}ms`)
|
|
64
|
-
}
|
|
65
|
-
throw err
|
|
66
|
-
}
|
|
67
|
-
}
|
|
@@ -1,85 +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 type {
|
|
6
|
-
IAutomationRunner,
|
|
7
|
-
IAutomationRepository,
|
|
8
|
-
AutomationEventPayload,
|
|
9
|
-
ContentRepository,
|
|
10
|
-
Seed,
|
|
11
|
-
IIdGenerator,
|
|
12
|
-
} from '@beechcms/core'
|
|
13
|
-
import { resolvePath } from './automation-runner.utils'
|
|
14
|
-
import { resolveAutomationContext, type ResolvedContext } from './context-resolver'
|
|
15
|
-
import type { ParsedKey } from './template-grammar'
|
|
16
|
-
import { executeAction } from './action-executors'
|
|
17
|
-
import { evaluateWhen } from './when-evaluator'
|
|
18
|
-
import { resolveVarAccess } from './var-access-resolver'
|
|
19
|
-
|
|
20
|
-
export interface AutomationRunnerDeps {
|
|
21
|
-
automationRepository: IAutomationRepository
|
|
22
|
-
contentRepository: ContentRepository
|
|
23
|
-
getSeed: (slug: string) => Seed | null
|
|
24
|
-
idGenerator: IIdGenerator
|
|
25
|
-
env: Record<string, string | undefined>
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
function withVariables(base: ResolvedContext, variables: Record<string, unknown>): ResolvedContext {
|
|
29
|
-
return {
|
|
30
|
-
triggerEntry: base.triggerEntry,
|
|
31
|
-
lookup(parsed: ParsedKey, onMissing?: (field: string) => void): unknown {
|
|
32
|
-
if (parsed.kind === 'simple') {
|
|
33
|
-
const varVal = resolvePath(variables, parsed.path)
|
|
34
|
-
if (varVal !== undefined) return varVal
|
|
35
|
-
} else if (parsed.kind === 'var_access') {
|
|
36
|
-
return resolveVarAccess(parsed, variables, onMissing)
|
|
37
|
-
}
|
|
38
|
-
return base.lookup(parsed, onMissing)
|
|
39
|
-
},
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export class AutomationRunner implements IAutomationRunner {
|
|
44
|
-
constructor(private readonly deps: AutomationRunnerDeps) {}
|
|
45
|
-
|
|
46
|
-
async run(payload: AutomationEventPayload): Promise<void> {
|
|
47
|
-
const { seedSlug, event, entry } = payload
|
|
48
|
-
const seed = this.deps.getSeed(seedSlug)
|
|
49
|
-
if (!seed) return
|
|
50
|
-
|
|
51
|
-
const automations = await this.deps.automationRepository.findActive(seedSlug, event)
|
|
52
|
-
|
|
53
|
-
for (const automation of automations) {
|
|
54
|
-
const resolved = await resolveAutomationContext(automation, entry, [entry])
|
|
55
|
-
|
|
56
|
-
// Evaluate conditions with the resolved context (this + batch scopes available).
|
|
57
|
-
// Variables from set_variable actions are not yet available here; use inline refs
|
|
58
|
-
// like {{customers:byid({{this.id}}):field}} for cross-seed conditions in v1.
|
|
59
|
-
if (!evaluateWhen(automation.trigger_conditions, resolved)) continue
|
|
60
|
-
|
|
61
|
-
const variables: Record<string, unknown> = {}
|
|
62
|
-
|
|
63
|
-
for (const action of automation.actions) {
|
|
64
|
-
try {
|
|
65
|
-
await executeAction(action, {
|
|
66
|
-
entry,
|
|
67
|
-
env: this.deps.env,
|
|
68
|
-
repository: this.deps.contentRepository,
|
|
69
|
-
getSeed: this.deps.getSeed,
|
|
70
|
-
seed,
|
|
71
|
-
idGenerator: this.deps.idGenerator,
|
|
72
|
-
context: withVariables(resolved, variables),
|
|
73
|
-
variables,
|
|
74
|
-
})
|
|
75
|
-
} catch (error) {
|
|
76
|
-
console.error('[automations] action failed', {
|
|
77
|
-
automationId: automation.id,
|
|
78
|
-
actionType: action.type,
|
|
79
|
-
error,
|
|
80
|
-
})
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
@@ -1,47 +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 type { ResolvedContext } from './context-resolver'
|
|
6
|
-
import { parseTemplateKey } from './template-grammar'
|
|
7
|
-
|
|
8
|
-
export function interpolate(
|
|
9
|
-
template: string,
|
|
10
|
-
context: ResolvedContext,
|
|
11
|
-
defaultValue = '',
|
|
12
|
-
onMissing?: (field: string) => void,
|
|
13
|
-
): string {
|
|
14
|
-
if (!template) return ''
|
|
15
|
-
|
|
16
|
-
const replacer = (_: string, key: string) => {
|
|
17
|
-
const trimmedKey = key.trim()
|
|
18
|
-
const parsed = parseTemplateKey(trimmedKey)
|
|
19
|
-
if (!parsed) {
|
|
20
|
-
if (onMissing) onMissing(trimmedKey)
|
|
21
|
-
return defaultValue
|
|
22
|
-
}
|
|
23
|
-
const val = context.lookup(parsed, onMissing)
|
|
24
|
-
if (val == null || val === '') {
|
|
25
|
-
return defaultValue
|
|
26
|
-
}
|
|
27
|
-
return String(val)
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
return template.replace(/\{\{\s*([^{}]+?)\s*\}\}/g, replacer)
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export function resolvePath(obj: Record<string, unknown>, path: string): unknown {
|
|
34
|
-
if (path in obj && obj[path] !== undefined) {
|
|
35
|
-
return obj[path]
|
|
36
|
-
}
|
|
37
|
-
const parts = path.split('.')
|
|
38
|
-
let current: unknown = obj
|
|
39
|
-
for (const part of parts) {
|
|
40
|
-
if (current && typeof current === 'object') {
|
|
41
|
-
current = (current as Record<string, unknown>)[part]
|
|
42
|
-
} else {
|
|
43
|
-
return undefined
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
return current
|
|
47
|
-
}
|