@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
|
@@ -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
|
-
}
|
|
@@ -1,197 +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 type { Env, Variables } from '../../types'
|
|
8
|
-
import { publicProblem } from '../../public/problem-details'
|
|
9
|
-
import {
|
|
10
|
-
createAutomationSchema,
|
|
11
|
-
updateAutomationSchema,
|
|
12
|
-
toggleAutomationSchema,
|
|
13
|
-
} from './automations.schema'
|
|
14
|
-
|
|
15
|
-
const automationsApp = new Hono<{ Bindings: Env; Variables: Variables }>()
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* GET /automations?seed=<slug>
|
|
19
|
-
* Returns every automation declared for the given seed, newest first.
|
|
20
|
-
*/
|
|
21
|
-
automationsApp.get('/', async (context) => {
|
|
22
|
-
const seedSlug = context.req.query('seed')
|
|
23
|
-
if (!seedSlug) {
|
|
24
|
-
return publicProblem(context, {
|
|
25
|
-
type: 'missing-seed',
|
|
26
|
-
status: 400,
|
|
27
|
-
title: 'Bad Request',
|
|
28
|
-
detail: 'Query param `seed` is required',
|
|
29
|
-
})
|
|
30
|
-
}
|
|
31
|
-
const repository = context.get('automationRepository')
|
|
32
|
-
const automations = await repository.list(seedSlug)
|
|
33
|
-
return context.json(automations)
|
|
34
|
-
})
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* POST /automations
|
|
38
|
-
* Creates a new automation. Body validated by `createAutomationSchema`.
|
|
39
|
-
*/
|
|
40
|
-
automationsApp.post('/', async (context) => {
|
|
41
|
-
let body: unknown
|
|
42
|
-
try {
|
|
43
|
-
body = await context.req.json()
|
|
44
|
-
} catch {
|
|
45
|
-
return publicProblem(context, {
|
|
46
|
-
type: 'invalid-json',
|
|
47
|
-
status: 400,
|
|
48
|
-
title: 'Bad Request',
|
|
49
|
-
detail: 'Request body is not valid JSON',
|
|
50
|
-
})
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
const parsed = createAutomationSchema.safeParse(body)
|
|
54
|
-
if (!parsed.success) {
|
|
55
|
-
return publicProblem(context, {
|
|
56
|
-
type: 'automation-validation-failed',
|
|
57
|
-
status: 400,
|
|
58
|
-
title: 'Bad Request',
|
|
59
|
-
detail: parsed.error.message,
|
|
60
|
-
})
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
const repository = context.get('automationRepository')
|
|
64
|
-
const id = await repository.create({
|
|
65
|
-
seed_slug: parsed.data.seed_slug,
|
|
66
|
-
name: parsed.data.name,
|
|
67
|
-
triggers: parsed.data.triggers,
|
|
68
|
-
trigger_conditions: parsed.data.trigger_conditions ?? null,
|
|
69
|
-
actions: parsed.data.actions,
|
|
70
|
-
})
|
|
71
|
-
return context.json({ id }, 201)
|
|
72
|
-
})
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
* GET /automations/:id
|
|
76
|
-
*/
|
|
77
|
-
automationsApp.get('/:id', async (context) => {
|
|
78
|
-
const id = context.req.param('id')
|
|
79
|
-
const automation = await context.get('automationRepository').findById(id)
|
|
80
|
-
if (!automation) {
|
|
81
|
-
return publicProblem(context, {
|
|
82
|
-
type: 'automation-not-found',
|
|
83
|
-
status: 404,
|
|
84
|
-
title: 'Not Found',
|
|
85
|
-
detail: `Automation ${id} does not exist`,
|
|
86
|
-
})
|
|
87
|
-
}
|
|
88
|
-
return context.json(automation)
|
|
89
|
-
})
|
|
90
|
-
|
|
91
|
-
/**
|
|
92
|
-
* PUT /automations/:id
|
|
93
|
-
* Full update — partial bodies allowed; cron expression validation
|
|
94
|
-
* is enforced by the triggers array schema.
|
|
95
|
-
*/
|
|
96
|
-
automationsApp.put('/:id', async (context) => {
|
|
97
|
-
const id = context.req.param('id')
|
|
98
|
-
const repository = context.get('automationRepository')
|
|
99
|
-
const existing = await repository.findById(id)
|
|
100
|
-
if (!existing) {
|
|
101
|
-
return publicProblem(context, {
|
|
102
|
-
type: 'automation-not-found',
|
|
103
|
-
status: 404,
|
|
104
|
-
title: 'Not Found',
|
|
105
|
-
detail: `Automation ${id} does not exist`,
|
|
106
|
-
})
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
let body: unknown
|
|
110
|
-
try {
|
|
111
|
-
body = await context.req.json()
|
|
112
|
-
} catch {
|
|
113
|
-
return publicProblem(context, {
|
|
114
|
-
type: 'invalid-json',
|
|
115
|
-
status: 400,
|
|
116
|
-
title: 'Bad Request',
|
|
117
|
-
detail: 'Request body is not valid JSON',
|
|
118
|
-
})
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
const parsed = updateAutomationSchema.safeParse(body)
|
|
122
|
-
if (!parsed.success) {
|
|
123
|
-
return publicProblem(context, {
|
|
124
|
-
type: 'automation-validation-failed',
|
|
125
|
-
status: 400,
|
|
126
|
-
title: 'Bad Request',
|
|
127
|
-
detail: parsed.error.message,
|
|
128
|
-
})
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
await repository.update(id, parsed.data)
|
|
132
|
-
return context.body(null, 204)
|
|
133
|
-
})
|
|
134
|
-
|
|
135
|
-
/**
|
|
136
|
-
* PATCH /automations/:id/toggle
|
|
137
|
-
* Atomic single-field flip — does not require sending the full body.
|
|
138
|
-
*/
|
|
139
|
-
automationsApp.patch('/:id/toggle', async (context) => {
|
|
140
|
-
const id = context.req.param('id')
|
|
141
|
-
const repository = context.get('automationRepository')
|
|
142
|
-
const existing = await repository.findById(id)
|
|
143
|
-
if (!existing) {
|
|
144
|
-
return publicProblem(context, {
|
|
145
|
-
type: 'automation-not-found',
|
|
146
|
-
status: 404,
|
|
147
|
-
title: 'Not Found',
|
|
148
|
-
detail: `Automation ${id} does not exist`,
|
|
149
|
-
})
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
let body: unknown
|
|
153
|
-
try {
|
|
154
|
-
body = await context.req.json()
|
|
155
|
-
} catch {
|
|
156
|
-
return publicProblem(context, {
|
|
157
|
-
type: 'invalid-json',
|
|
158
|
-
status: 400,
|
|
159
|
-
title: 'Bad Request',
|
|
160
|
-
detail: 'Request body is not valid JSON',
|
|
161
|
-
})
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
const parsed = toggleAutomationSchema.safeParse(body)
|
|
165
|
-
if (!parsed.success) {
|
|
166
|
-
return publicProblem(context, {
|
|
167
|
-
type: 'automation-validation-failed',
|
|
168
|
-
status: 400,
|
|
169
|
-
title: 'Bad Request',
|
|
170
|
-
detail: parsed.error.message,
|
|
171
|
-
})
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
await repository.toggle(id, parsed.data.enabled)
|
|
175
|
-
return context.body(null, 204)
|
|
176
|
-
})
|
|
177
|
-
|
|
178
|
-
/**
|
|
179
|
-
* DELETE /automations/:id
|
|
180
|
-
*/
|
|
181
|
-
automationsApp.delete('/:id', async (context) => {
|
|
182
|
-
const id = context.req.param('id')
|
|
183
|
-
const repository = context.get('automationRepository')
|
|
184
|
-
const existing = await repository.findById(id)
|
|
185
|
-
if (!existing) {
|
|
186
|
-
return publicProblem(context, {
|
|
187
|
-
type: 'automation-not-found',
|
|
188
|
-
status: 404,
|
|
189
|
-
title: 'Not Found',
|
|
190
|
-
detail: `Automation ${id} does not exist`,
|
|
191
|
-
})
|
|
192
|
-
}
|
|
193
|
-
await repository.delete(id)
|
|
194
|
-
return context.body(null, 204)
|
|
195
|
-
})
|
|
196
|
-
|
|
197
|
-
export { automationsApp }
|