@beechcms/api 0.4.3 → 0.6.0-preview.1

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.
Files changed (207) hide show
  1. package/assets/dashboard/Searching.svg +1 -0
  2. package/assets/dashboard/assets/index-BSjk0Sx9.js +634 -0
  3. package/assets/dashboard/assets/index-kRCYVN2B.css +1 -0
  4. package/assets/dashboard/index.html +2 -2
  5. package/assets/dashboard/noResult.svg +43 -0
  6. package/assets/dashboard/working.svg +1 -0
  7. package/migrations/0000_v040_base.sql +27 -0
  8. package/migrations/0030_test_seeds.sql +125 -0
  9. package/package.json +14 -9
  10. package/src/auth/{in-memory-hash-provider.ts → __fixtures__/in-memory-hash-provider.ts} +4 -0
  11. package/src/auth/{static-token-service.ts → __fixtures__/static-token-service.ts} +4 -0
  12. package/src/auth/bcrypt-hash-provider.ts +6 -2
  13. package/src/auth/constants.ts +4 -0
  14. package/src/auth/generate-refresh-token.test.ts +8 -4
  15. package/src/auth/hash-provider.test.ts +14 -5
  16. package/src/auth/jose-token-service.ts +7 -0
  17. package/src/auth/jwt-claims-passthrough.test.ts +87 -0
  18. package/src/auth/login.test.ts +9 -1
  19. package/src/auth/login.ts +5 -1
  20. package/src/auth/refresh.ts +7 -1
  21. package/src/auth/token-service.test.ts +9 -1
  22. package/src/factory.ts +37 -16
  23. package/src/features/automations/__tests__/action-executors.test.ts +59 -72
  24. package/src/features/automations/__tests__/automation-runner.test.ts +4 -0
  25. package/src/features/automations/__tests__/automation-runner.utils.test.ts +4 -0
  26. package/src/features/automations/__tests__/automations.handler.test.ts +7 -3
  27. package/src/features/automations/__tests__/automations.repository.test.ts +4 -0
  28. package/src/features/automations/__tests__/automations.schema.test.ts +92 -2
  29. package/src/features/automations/__tests__/context-resolver.test.ts +4 -0
  30. package/src/features/automations/__tests__/cron-runner.test.ts +11 -7
  31. package/src/features/automations/__tests__/cron-runner.utils.test.ts +4 -0
  32. package/src/features/automations/__tests__/set-variable.executor.test.ts +77 -0
  33. package/src/features/automations/__tests__/template-grammar.test.ts +4 -0
  34. package/src/features/automations/__tests__/webhook.executor.test.ts +142 -0
  35. package/src/features/automations/__tests__/when-evaluator.test.ts +4 -0
  36. package/src/features/automations/__tests__/when-pushdown.test.ts +5 -1
  37. package/src/features/automations/action-executors/create-entry.executor.ts +4 -0
  38. package/src/features/automations/action-executors/edit-field.executor.ts +4 -0
  39. package/src/features/automations/action-executors/index.ts +5 -1
  40. package/src/features/automations/action-executors/send-mail.executor.ts +13 -2
  41. package/src/features/automations/action-executors/set-variable.executor.ts +15 -2
  42. package/src/features/automations/action-executors/webhook.executor.ts +55 -13
  43. package/src/features/automations/automation-runner.ts +4 -0
  44. package/src/features/automations/automation-runner.utils.ts +4 -0
  45. package/src/features/automations/automations.handler.ts +4 -0
  46. package/src/features/automations/automations.schema.ts +19 -2
  47. package/src/features/automations/context-resolver.ts +4 -0
  48. package/src/features/automations/cron-runner.ts +4 -0
  49. package/src/features/automations/cron-runner.utils.ts +4 -0
  50. package/src/features/automations/filter-translation.ts +4 -0
  51. package/src/features/automations/index.ts +4 -0
  52. package/src/features/automations/template-grammar.ts +4 -0
  53. package/src/features/automations/var-access-resolver.ts +4 -0
  54. package/src/features/automations/when-evaluator.ts +4 -0
  55. package/src/features/automations/when-pushdown.ts +4 -0
  56. package/src/features/backrefs/__tests__/backrefs.handler.test.ts +359 -0
  57. package/src/features/backrefs/backrefs.handler.ts +168 -0
  58. package/src/features/backrefs/d1-backref.repository.ts +84 -0
  59. package/src/features/backrefs/index.ts +5 -0
  60. package/src/features/content/constants.ts +6 -0
  61. package/src/features/content/handlers/bulk.handler.ts +185 -0
  62. package/src/features/content/handlers/create.ts +19 -55
  63. package/src/features/content/handlers/delete.ts +12 -37
  64. package/src/features/content/handlers/facets.ts +4 -0
  65. package/src/features/content/handlers/get.ts +4 -0
  66. package/src/features/content/handlers/helpers.test.ts +180 -0
  67. package/src/features/content/handlers/helpers.ts +93 -0
  68. package/src/features/content/handlers/list.ts +105 -19
  69. package/src/features/content/handlers/update.ts +19 -64
  70. package/src/features/content/index.ts +6 -0
  71. package/src/features/draft/draft.handler.ts +33 -8
  72. package/src/features/draft/draft.middleware.ts +4 -0
  73. package/src/features/draft/index.ts +4 -0
  74. package/src/features/email/email.provider.ts +4 -0
  75. package/src/features/email/email.service.ts +50 -45
  76. package/src/features/email/email.types.ts +12 -1
  77. package/src/features/email/index.ts +4 -0
  78. package/src/features/email/providers/resend.ts +4 -0
  79. package/src/features/email/providers/smtp.ts +55 -0
  80. package/src/features/email/templates/automation-mail.ts +4 -0
  81. package/src/features/email/templates/password-changed.ts +4 -0
  82. package/src/features/email/templates/password-reset.ts +4 -0
  83. package/src/features/email/templates/shell.ts +4 -0
  84. package/src/features/notifications/index.ts +4 -0
  85. package/src/features/notifications/notifications.handler.ts +4 -0
  86. package/src/features/password-reset/index.ts +5 -1
  87. package/src/features/password-reset/request.ts +12 -2
  88. package/src/features/password-reset/reset.ts +12 -2
  89. package/src/features/rotate-field/index.ts +4 -0
  90. package/src/features/rotate-field/rotate-field.handler.ts +4 -0
  91. package/src/features/rotate-field/rotate-field.schema.ts +4 -0
  92. package/src/features/schema/schema.handler.ts +118 -3
  93. package/src/features/seeds/index.ts +5 -0
  94. package/src/features/seeds/seeds.handler.test.ts +632 -0
  95. package/src/features/seeds/seeds.handler.ts +693 -0
  96. package/src/features/settings/__tests__/settings.handler.test.ts +555 -0
  97. package/src/features/settings/settings.handler.ts +98 -8
  98. package/src/features/setup/index.ts +124 -11
  99. package/src/features/stats/index.ts +4 -0
  100. package/src/features/stats/stats.handler.ts +11 -21
  101. package/src/features/webhooks/index.ts +63 -0
  102. package/src/index.ts +28 -19
  103. package/src/media-utils.ts +4 -0
  104. package/src/middleware/auth-providers.middleware.ts +13 -0
  105. package/src/middleware/observability.middleware.ts +21 -3
  106. package/src/middleware/rate-limit.middleware.ts +4 -0
  107. package/src/middleware/repository.middleware.ts +25 -2
  108. package/src/middleware/seed-registry.middleware.test.ts +97 -0
  109. package/src/middleware/seed-registry.middleware.ts +21 -0
  110. package/src/middleware/storage.middleware.ts +4 -0
  111. package/src/middleware.ts +5 -7
  112. package/src/public/access-policy.ts +4 -0
  113. package/src/public/api-key-middleware.ts +4 -0
  114. package/src/public/cache-utils.ts +38 -34
  115. package/src/public/entry-projection.ts +46 -42
  116. package/src/public/idempotency.ts +23 -19
  117. package/src/public/index.ts +4 -0
  118. package/src/public/problem-details.ts +71 -0
  119. package/src/public/public-add.ts +4 -0
  120. package/src/public/public-edit.ts +4 -0
  121. package/src/public/public-errors.ts +4 -0
  122. package/src/public/public-read.ts +4 -0
  123. package/src/public/public-routes.ts +4 -0
  124. package/src/public/query-builder.test.ts +4 -0
  125. package/src/public/query-builder.ts +4 -0
  126. package/src/public/rate-limit-middleware.ts +4 -0
  127. package/src/public/read-list.ts +54 -50
  128. package/src/public/read-single.ts +48 -44
  129. package/src/public/response-builder.ts +4 -0
  130. package/src/public/sanitize.ts +4 -0
  131. package/src/public/slug-utils.ts +4 -0
  132. package/src/rate-limit/cloudflare-rate-limiter.test.ts +4 -0
  133. package/src/rate-limit/cloudflare-rate-limiter.ts +4 -0
  134. package/src/rate-limit/in-memory-rate-limiter.test.ts +4 -0
  135. package/src/rate-limit/in-memory-rate-limiter.ts +4 -0
  136. package/src/rate-limit/no-op-rate-limiter.test.ts +4 -0
  137. package/src/rate-limit/no-op-rate-limiter.ts +4 -0
  138. package/src/search-utils.test.ts +4 -0
  139. package/src/search-utils.ts +5 -1
  140. package/src/search.ts +5 -1
  141. package/src/shared/apply-policies.test.ts +4 -0
  142. package/src/shared/apply-policies.ts +4 -0
  143. package/src/shared/automations.repository.d1.ts +4 -0
  144. package/src/shared/background-notification-service.test.ts +4 -0
  145. package/src/shared/background-notification-service.ts +4 -0
  146. package/src/shared/base.repository.d1.ts +4 -0
  147. package/src/shared/content-utils.test.ts +4 -0
  148. package/src/shared/content-utils.ts +4 -0
  149. package/src/shared/content.repository.d1.test.ts +147 -1
  150. package/src/shared/content.repository.d1.ts +535 -66
  151. package/src/shared/d1-activity-log.repository.test.ts +4 -0
  152. package/src/shared/d1-activity-log.repository.ts +4 -0
  153. package/src/shared/d1-activity-logger.test.ts +4 -0
  154. package/src/shared/d1-activity-logger.ts +4 -0
  155. package/src/shared/d1-analytics.repository.test.ts +4 -0
  156. package/src/shared/d1-analytics.repository.ts +4 -0
  157. package/src/shared/d1-content-scan.repository.test.ts +9 -5
  158. package/src/shared/d1-content-scan.repository.ts +15 -7
  159. package/src/shared/d1-notification.repository.test.ts +4 -0
  160. package/src/shared/d1-notification.repository.ts +4 -0
  161. package/src/shared/d1-password-reset-token.repository.test.ts +4 -0
  162. package/src/shared/d1-password-reset-token.repository.ts +4 -0
  163. package/src/shared/d1-search.repository.test.ts +4 -0
  164. package/src/shared/d1-search.repository.ts +4 -0
  165. package/src/shared/d1-session.repository.test.ts +4 -0
  166. package/src/shared/d1-session.repository.ts +4 -0
  167. package/src/shared/d1-setup-checklist.repository.ts +36 -0
  168. package/src/shared/d1-user.repository.test.ts +8 -4
  169. package/src/shared/d1-user.repository.ts +15 -5
  170. package/src/shared/d1-widget.repository.test.ts +4 -0
  171. package/src/shared/d1-widget.repository.ts +4 -0
  172. package/src/shared/demo-data-sql.ts +54 -0
  173. package/src/shared/demo-data.repository.d1.ts +20 -0
  174. package/src/shared/execution-context-scheduler.ts +4 -0
  175. package/src/shared/fixed-clock.ts +4 -0
  176. package/src/shared/fts-sync.ts +4 -0
  177. package/src/shared/idempotency.repository.d1.test.ts +4 -0
  178. package/src/shared/idempotency.repository.d1.ts +4 -0
  179. package/src/shared/in-memory-activity-logger.ts +4 -0
  180. package/src/shared/in-memory-notification-service.ts +4 -0
  181. package/src/shared/in-memory-seed.repository.ts +51 -0
  182. package/src/shared/media.repository.d1.test.ts +4 -0
  183. package/src/shared/media.repository.d1.ts +4 -0
  184. package/src/shared/qstash-notification-service.test.ts +67 -0
  185. package/src/shared/qstash-notification-service.ts +55 -0
  186. package/src/shared/query-utils.ts +4 -0
  187. package/src/shared/request-utils.ts +4 -0
  188. package/src/shared/schema-mutator.d1.ts +64 -0
  189. package/src/shared/seed-layout.repository.d1.test.ts +114 -0
  190. package/src/shared/seed-layout.repository.d1.ts +62 -0
  191. package/src/shared/seed-registry-cache.test.ts +68 -0
  192. package/src/shared/seed-registry-cache.ts +49 -0
  193. package/src/shared/seed.repository.d1.test.ts +143 -0
  194. package/src/shared/seed.repository.d1.ts +98 -0
  195. package/src/shared/sequential-id-generator.ts +11 -0
  196. package/src/shared/site-settings.repository.d1.ts +53 -0
  197. package/src/shared/storage/factory.ts +16 -15
  198. package/src/shared/storage/s3-bucket.ts +34 -2
  199. package/src/shared/storage-utils.ts +4 -0
  200. package/src/shared/system-stats.repository.d1.test.ts +4 -0
  201. package/src/shared/system-stats.repository.d1.ts +5 -1
  202. package/src/types.ts +23 -3
  203. package/src/upload.ts +134 -123
  204. package/src/widget.ts +6 -2
  205. package/assets/dashboard/assets/index-BKWnlvnV.css +0 -1
  206. package/assets/dashboard/assets/index-BMkd1Irh.js +0 -629
  207. package/src/shared/storage/r2-binding-bucket.ts +0 -81
@@ -0,0 +1,67 @@
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 { QStashNotificationService } from './qstash-notification-service'
7
+ import { Client } from '@upstash/qstash'
8
+
9
+ // Mock the @upstash/qstash Client
10
+ vi.mock('@upstash/qstash', () => {
11
+ const publishJSON = vi.fn().mockResolvedValue({ messageId: 'msg_123' })
12
+ return {
13
+ Client: vi.fn().mockImplementation(function () {
14
+ return { publishJSON }
15
+ }),
16
+ }
17
+ })
18
+
19
+ describe('QStashNotificationService', () => {
20
+ beforeEach(() => {
21
+ vi.clearAllMocks()
22
+ })
23
+
24
+ it('delegates publishing to the QStash client with correct URL', async () => {
25
+ const service = new QStashNotificationService('fake_token', 'https://beechcms.test/')
26
+ await service.notify({
27
+ title: 'Hello',
28
+ message: 'World',
29
+ type: 'success',
30
+ })
31
+
32
+ const clientInstance = vi.mocked(Client).mock.results[0].value
33
+ expect(clientInstance.publishJSON).toHaveBeenCalledWith({
34
+ url: 'https://beechcms.test/api/webhooks/qstash',
35
+ body: {
36
+ title: 'Hello',
37
+ message: 'World',
38
+ type: 'success',
39
+ },
40
+ })
41
+ })
42
+
43
+ it('delegates to the background scheduler when provided', () => {
44
+ const schedule = vi.fn()
45
+ const service = new QStashNotificationService('fake_token', 'https://beechcms.test', schedule)
46
+
47
+ service.notify({ title: 'T', message: 'M' })
48
+
49
+ expect(schedule).toHaveBeenCalledTimes(1)
50
+ expect(schedule.mock.calls[0][0]).toBeInstanceOf(Promise)
51
+ })
52
+
53
+ it('never throws to the caller when the publish write fails', async () => {
54
+ // Override the mock for this specific test
55
+ const mockPublish = vi.fn().mockRejectedValue(new Error('network error'))
56
+ vi.mocked(Client).mockImplementationOnce(function () {
57
+ return { publishJSON: mockPublish }
58
+ } as any)
59
+
60
+ const consoleSpy = vi.spyOn(console, 'error').mockImplementation(() => {})
61
+ const service = new QStashNotificationService('fake_token', 'https://beechcms.test')
62
+
63
+ await expect(service.notify({ title: 'T', message: 'M' })).resolves.toBeUndefined()
64
+ expect(consoleSpy).toHaveBeenCalled()
65
+ consoleSpy.mockRestore()
66
+ })
67
+ })
@@ -0,0 +1,55 @@
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 { INotificationService, CreateNotificationInput } from '@beechcms/core'
6
+ import { Client } from '@upstash/qstash'
7
+
8
+ type ScheduleBackgroundTask = (task: Promise<unknown>) => void
9
+
10
+ /**
11
+ * QStash implementation of {@link INotificationService}.
12
+ *
13
+ * This service acts as a publisher, sending the notification payload to Upstash QStash,
14
+ * which guarantees delivery and retries. QStash will then forward the payload to the
15
+ * local webhook endpoint where it is actually inserted into D1.
16
+ */
17
+ export class QStashNotificationService implements INotificationService {
18
+ private readonly client: Client
19
+ private readonly webhookUrl: string
20
+
21
+ constructor(
22
+ token: string,
23
+ appUrl: string,
24
+ private readonly scheduleBackgroundTask?: ScheduleBackgroundTask,
25
+ qstashUrl?: string
26
+ ) {
27
+ this.client = new Client({
28
+ token,
29
+ ...(qstashUrl ? { baseUrl: qstashUrl } : {})
30
+ })
31
+ this.webhookUrl = `${appUrl.replace(/\/$/, '')}/api/webhooks/qstash`
32
+ }
33
+
34
+ notify(input: CreateNotificationInput): Promise<void> | void {
35
+ const publishPromise = this.runPublish(input)
36
+
37
+ if (this.scheduleBackgroundTask) {
38
+ this.scheduleBackgroundTask(publishPromise)
39
+ return
40
+ }
41
+
42
+ return publishPromise
43
+ }
44
+
45
+ private async runPublish(input: CreateNotificationInput): Promise<void> {
46
+ try {
47
+ await this.client.publishJSON({
48
+ url: this.webhookUrl,
49
+ body: input,
50
+ })
51
+ } catch (error) {
52
+ console.error('QStashNotificationService: failed to publish notification', error)
53
+ }
54
+ }
55
+ }
@@ -1,3 +1,7 @@
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
+
1
5
  import type { FilterGroup, FilterType } from '@beechcms/core'
2
6
 
3
7
  /** Entry parsata per le risposte API — contratto immutabile (C7). */
@@ -1,3 +1,7 @@
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
+
1
5
  import type { HonoRequest } from "hono"
2
6
 
3
7
  /** The header Cloudflare sets on every incoming request to the Worker. */
@@ -0,0 +1,64 @@
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 type { ISchemaMutator } from '@beechcms/core'
7
+
8
+ export class D1SchemaMutator implements ISchemaMutator {
9
+ constructor(private readonly db: D1Database) {}
10
+
11
+ async getColumns(table: string): Promise<Set<string> | null> {
12
+ // PRAGMA table_info returns rows {cid,name,type,notnull,dflt_value,pk}.
13
+ // Table name cannot be parameterized in PRAGMA — validate it is a safe identifier.
14
+ if (!/^[A-Za-z0-9_]+$/.test(table)) throw new Error(`Unsafe table name: ${table}`)
15
+ const rs = await this.db.prepare(`PRAGMA table_info(${table})`).all<{ name: string }>()
16
+ const rows = rs.results ?? []
17
+ if (rows.length === 0) return null // table absent
18
+ return new Set(rows.map(r => r.name))
19
+ }
20
+
21
+ async execDdl(statements: string[]): Promise<void> {
22
+ if (statements.length === 0) return
23
+ // D1 batch is atomic per call; if one statement fails, the rest roll back.
24
+ await this.db.batch(statements.map(s => this.db.prepare(s)))
25
+ }
26
+
27
+ // --- destructive (sprint 06 — Danger Zone) -------------------------------
28
+ // These emit IRREVERSIBLE SQL. Identifiers cannot be parameterized in DDL, so
29
+ // every table/column name is validated against the same `^[A-Za-z0-9_]+$`
30
+ // guard getColumns already applies before interpolation.
31
+
32
+ private static assertIdentifier(name: string): void {
33
+ if (!/^[A-Za-z0-9_]+$/.test(name)) throw new Error(`Unsafe identifier: ${name}`)
34
+ }
35
+
36
+ async dropTable(table: string): Promise<void> {
37
+ D1SchemaMutator.assertIdentifier(table)
38
+ await this.db.prepare(`DROP TABLE IF EXISTS ${table}`).run()
39
+ }
40
+
41
+ async dropColumn(table: string, column: string): Promise<void> {
42
+ D1SchemaMutator.assertIdentifier(table)
43
+ D1SchemaMutator.assertIdentifier(column)
44
+ await this.db.prepare(`ALTER TABLE ${table} DROP COLUMN ${column}`).run()
45
+ }
46
+
47
+ async renameColumn(table: string, from: string, to: string): Promise<void> {
48
+ D1SchemaMutator.assertIdentifier(table)
49
+ D1SchemaMutator.assertIdentifier(from)
50
+ D1SchemaMutator.assertIdentifier(to)
51
+ await this.db.prepare(`ALTER TABLE ${table} RENAME COLUMN ${from} TO ${to}`).run()
52
+ }
53
+
54
+ async execDestructive(statements: string[]): Promise<void> {
55
+ if (statements.length === 0) return
56
+ // The statements come from the core destructive generators
57
+ // (generateDropTable / generateRetypeColumn / planFtsRebuild), which only
58
+ // interpolate slugs/aliases already validated by the seed registry
59
+ // (`^[a-z0-9_]+$`). FTS trigger bodies legitimately contain internal
60
+ // semicolons (BEGIN … ; END), so we do not split or reject on `;`.
61
+ // D1 batch is atomic per call; if one statement fails, the rest roll back.
62
+ await this.db.batch(statements.map(s => this.db.prepare(s)))
63
+ }
64
+ }
@@ -0,0 +1,114 @@
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, afterEach } from 'vitest'
6
+ import { D1SeedLayoutRepository } from './seed-layout.repository.d1'
7
+ import type { FormLayout } from '@beechcms/core'
8
+
9
+ function makeMockDb(opts: { firstResult?: unknown; allResults?: unknown[] } = {}) {
10
+ const { firstResult = null, allResults = [] } = opts
11
+ const runMock = vi.fn().mockResolvedValue({ success: true })
12
+ const firstMock = vi.fn().mockResolvedValue(firstResult)
13
+ const allMock = vi.fn().mockResolvedValue({ results: allResults })
14
+ const bindMock = vi.fn(() => ({ run: runMock, first: firstMock, all: allMock }))
15
+ const stmt = { bind: bindMock, run: runMock, first: firstMock, all: allMock }
16
+ const prepareMock = vi.fn(() => stmt)
17
+ return { db: { prepare: prepareMock } as any, prepareMock, bindMock, runMock, firstMock, allMock }
18
+ }
19
+
20
+ describe('D1SeedLayoutRepository', () => {
21
+ beforeEach(() => {
22
+ vi.useFakeTimers()
23
+ })
24
+
25
+ afterEach(() => {
26
+ vi.useRealTimers()
27
+ })
28
+
29
+ describe('get', () => {
30
+ it('returns null when the layout is not found', async () => {
31
+ const { db } = makeMockDb({ firstResult: null })
32
+ const repo = new D1SeedLayoutRepository(db)
33
+ const res = await repo.get('non-existent')
34
+ expect(res).toBeNull()
35
+ })
36
+
37
+ it('returns mapped record when layout is found and layout JSON is parsed', async () => {
38
+ const mockLayout: FormLayout = { tabs: [] }
39
+ const row = {
40
+ slug: 'pages',
41
+ layout: JSON.stringify(mockLayout),
42
+ updated_at: 123456,
43
+ updated_by: 'admin-user',
44
+ }
45
+ const { db, prepareMock, bindMock } = makeMockDb({ firstResult: row })
46
+ const repo = new D1SeedLayoutRepository(db)
47
+
48
+ const res = await repo.get('pages')
49
+ expect(prepareMock).toHaveBeenCalledWith(expect.stringContaining('SELECT slug, layout, updated_at, updated_by FROM seed_layouts'))
50
+ expect(bindMock).toHaveBeenCalledWith('pages')
51
+ expect(res).toEqual({
52
+ slug: 'pages',
53
+ layout: mockLayout,
54
+ updatedAt: 123456,
55
+ updatedBy: 'admin-user',
56
+ })
57
+ })
58
+ })
59
+
60
+ describe('getAllAsMap', () => {
61
+ it('returns an empty map when there are no records', async () => {
62
+ const { db } = makeMockDb({ allResults: [] })
63
+ const repo = new D1SeedLayoutRepository(db)
64
+ const map = await repo.getAllAsMap()
65
+ expect(map).toBeInstanceOf(Map)
66
+ expect(map.size).toBe(0)
67
+ })
68
+
69
+ it('returns a populated map and skips corrupt JSON rows', async () => {
70
+ const allResults = [
71
+ { slug: 'pages', layout: JSON.stringify({ tabs: [{ id: 't1', label: 'T1', sections: [] }] }) },
72
+ { slug: 'corrupted', layout: '{invalid-json' },
73
+ { slug: 'posts', layout: JSON.stringify({ tabs: [{ id: 't2', label: 'T2', sections: [] }] }) },
74
+ ]
75
+ const { db, prepareMock } = makeMockDb({ allResults })
76
+ const repo = new D1SeedLayoutRepository(db)
77
+
78
+ const map = await repo.getAllAsMap()
79
+ expect(prepareMock).toHaveBeenCalledWith(expect.stringContaining('SELECT slug, layout FROM seed_layouts'))
80
+ expect(map.size).toBe(2)
81
+ expect(map.get('pages')).toEqual({ tabs: [{ id: 't1', label: 'T1', sections: [] }] })
82
+ expect(map.get('posts')).toEqual({ tabs: [{ id: 't2', label: 'T2', sections: [] }] })
83
+ expect(map.has('corrupted')).toBe(false)
84
+ })
85
+ })
86
+
87
+ describe('upsert', () => {
88
+ it('prepares and binds the correct layout layout JSON and timestamp', async () => {
89
+ const mockDate = new Date('2026-06-04T12:00:00Z')
90
+ vi.setSystemTime(mockDate)
91
+ const expectedTimestamp = Math.floor(mockDate.getTime() / 1000)
92
+
93
+ const { db, prepareMock, bindMock } = makeMockDb()
94
+ const repo = new D1SeedLayoutRepository(db)
95
+
96
+ const layout: FormLayout = { tabs: [{ id: 'tab-1', label: 'Tab 1', sections: [] }] }
97
+ await repo.upsert('articles', layout, 'editor-1')
98
+
99
+ expect(prepareMock).toHaveBeenCalledWith(expect.stringContaining('INSERT INTO seed_layouts'))
100
+ expect(bindMock).toHaveBeenCalledWith('articles', JSON.stringify(layout), expectedTimestamp, 'editor-1')
101
+ })
102
+ })
103
+
104
+ describe('remove', () => {
105
+ it('deletes the layout by slug', async () => {
106
+ const { db, prepareMock, bindMock } = makeMockDb()
107
+ const repo = new D1SeedLayoutRepository(db)
108
+
109
+ await repo.remove('products')
110
+ expect(prepareMock).toHaveBeenCalledWith(expect.stringContaining('DELETE FROM seed_layouts WHERE slug = ?'))
111
+ expect(bindMock).toHaveBeenCalledWith('products')
112
+ })
113
+ })
114
+ })
@@ -0,0 +1,62 @@
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 type { ISeedLayoutRepository, SeedLayoutRecord, FormLayout } from '@beechcms/core'
7
+
8
+ export class D1SeedLayoutRepository implements ISeedLayoutRepository {
9
+ constructor(private readonly db: D1Database) {}
10
+
11
+ async get(slug: string): Promise<SeedLayoutRecord | null> {
12
+ const row = await this.db
13
+ .prepare('SELECT slug, layout, updated_at, updated_by FROM seed_layouts WHERE slug = ? LIMIT 1')
14
+ .bind(slug)
15
+ .first<{ slug: string; layout: string; updated_at: number; updated_by: string }>()
16
+ if (!row) return null
17
+ return {
18
+ slug: row.slug,
19
+ layout: JSON.parse(row.layout) as FormLayout,
20
+ updatedAt: row.updated_at,
21
+ updatedBy: row.updated_by,
22
+ }
23
+ }
24
+
25
+ async getAllAsMap(): Promise<Map<string, FormLayout>> {
26
+ const rs = await this.db
27
+ .prepare('SELECT slug, layout FROM seed_layouts')
28
+ .all<{ slug: string; layout: string }>()
29
+ const map = new Map<string, FormLayout>()
30
+ for (const r of (rs.results ?? [])) {
31
+ try {
32
+ map.set(r.slug, JSON.parse(r.layout) as FormLayout)
33
+ } catch {
34
+ // skip corrupt row
35
+ }
36
+ }
37
+ return map
38
+ }
39
+
40
+ async upsert(slug: string, layout: FormLayout, updatedBy: string): Promise<void> {
41
+ const json = JSON.stringify(layout)
42
+ const now = Math.floor(Date.now() / 1000)
43
+ await this.db
44
+ .prepare(`
45
+ INSERT INTO seed_layouts (slug, layout, updated_at, updated_by)
46
+ VALUES (?, ?, ?, ?)
47
+ ON CONFLICT(slug) DO UPDATE SET
48
+ layout = excluded.layout,
49
+ updated_at = excluded.updated_at,
50
+ updated_by = excluded.updated_by
51
+ `)
52
+ .bind(slug, json, now, updatedBy)
53
+ .run()
54
+ }
55
+
56
+ async remove(slug: string): Promise<void> {
57
+ await this.db
58
+ .prepare('DELETE FROM seed_layouts WHERE slug = ?')
59
+ .bind(slug)
60
+ .run()
61
+ }
62
+ }
@@ -0,0 +1,68 @@
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 { getHydratedRegistry, __resetSeedRegistryCache } from './seed-registry-cache'
7
+ import type { ISeedRepository, SeedRecord, Seed } from '@beechcms/core'
8
+
9
+ const mockSeed: Seed = {
10
+ slug: 'posts',
11
+ label: 'Posts',
12
+ displayNameAlias: 'title',
13
+ branches: [{ id: 'br_01', alias: 'title', label: 'Title', type: 'text' }],
14
+ }
15
+
16
+ function makeRepo(version: number, seeds: Seed[] = [mockSeed]): ISeedRepository & { listActive: ReturnType<typeof vi.fn> } {
17
+ return {
18
+ listActive: vi.fn().mockResolvedValue(seeds),
19
+ listAll: vi.fn().mockResolvedValue([]),
20
+ get: vi.fn().mockResolvedValue(null),
21
+ upsert: vi.fn().mockResolvedValue(undefined),
22
+ softDelete: vi.fn().mockResolvedValue(undefined),
23
+ getRegistryVersion: vi.fn().mockResolvedValue(version),
24
+ bumpRegistryVersion: vi.fn().mockResolvedValue(version + 1),
25
+ }
26
+ }
27
+
28
+ describe('getHydratedRegistry', () => {
29
+ beforeEach(() => __resetSeedRegistryCache())
30
+
31
+ it('builds registry on first call and calls listActive once', async () => {
32
+ const repo = makeRepo(1)
33
+ const { registry } = await getHydratedRegistry(repo)
34
+ expect(repo.listActive).toHaveBeenCalledTimes(1)
35
+ expect(registry.get('posts')).not.toBeNull()
36
+ })
37
+
38
+ it('reuses cached registry when version and TTL match', async () => {
39
+ const repo = makeRepo(1)
40
+ await getHydratedRegistry(repo)
41
+ await getHydratedRegistry(repo)
42
+ expect(repo.listActive).toHaveBeenCalledTimes(1)
43
+ })
44
+
45
+ it('rebuilds when version token changes', async () => {
46
+ const repo1 = makeRepo(1)
47
+ await getHydratedRegistry(repo1)
48
+ expect(repo1.listActive).toHaveBeenCalledTimes(1)
49
+
50
+ const repo2 = makeRepo(2)
51
+ await getHydratedRegistry(repo2)
52
+ expect(repo2.listActive).toHaveBeenCalledTimes(1)
53
+ })
54
+
55
+ it('empty listActive produces empty registry without throwing', async () => {
56
+ const repo = makeRepo(1, [])
57
+ const { registry } = await getHydratedRegistry(repo)
58
+ expect(registry.all()).toHaveLength(0)
59
+ expect(registry.get('posts')).toBeNull()
60
+ })
61
+
62
+ it('backrefMap is returned alongside registry', async () => {
63
+ const repo = makeRepo(1)
64
+ const { backrefMap } = await getHydratedRegistry(repo)
65
+ expect(backrefMap).toBeDefined()
66
+ expect(typeof backrefMap).toBe('object')
67
+ })
68
+ })
@@ -0,0 +1,49 @@
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 { SeedRegistry, buildBackrefMap } from '@beechcms/core'
6
+ import type { ISeedRegistry, BackrefMap, Seed, ISeedRepository } from '@beechcms/core'
7
+
8
+ interface CachedRegistry {
9
+ version: number
10
+ builtAt: number
11
+ registry: ISeedRegistry
12
+ backrefMap: BackrefMap
13
+ }
14
+
15
+ // Module-level = isolate-level. Survives across requests on the same isolate,
16
+ // re-initialised on cold start.
17
+ let cache: CachedRegistry | null = null
18
+
19
+ // Even if the token read fails, never serve a build older than this.
20
+ const TTL_MS = 5_000
21
+
22
+ /**
23
+ * Returns a fresh-enough { registry, backrefMap }. Reads the version token once per
24
+ * request (cheap indexed D1 read); rebuilds from listActive() only when the token
25
+ * changed or TTL lapsed.
26
+ */
27
+ export async function getHydratedRegistry(
28
+ repo: ISeedRepository,
29
+ ): Promise<{ registry: ISeedRegistry; backrefMap: BackrefMap }> {
30
+ const version = await repo.getRegistryVersion()
31
+ const now = Date.now()
32
+ if (cache && cache.version === version && now - cache.builtAt < TTL_MS) {
33
+ return { registry: cache.registry, backrefMap: cache.backrefMap }
34
+ }
35
+ const seeds = await repo.listActive()
36
+ return rebuild(seeds, version, now)
37
+ }
38
+
39
+ function rebuild(seeds: Seed[], version: number, now: number) {
40
+ const registry = new SeedRegistry(seeds)
41
+ const backrefMap = buildBackrefMap(seeds)
42
+ cache = { version, builtAt: now, registry, backrefMap }
43
+ return { registry, backrefMap }
44
+ }
45
+
46
+ /** Test seam: drop the isolate cache. */
47
+ export function __resetSeedRegistryCache(): void {
48
+ cache = null
49
+ }
@@ -0,0 +1,143 @@
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 } from 'vitest'
6
+ import { D1SeedRepository } from './seed.repository.d1'
7
+ import type { Seed } from '@beechcms/core'
8
+
9
+ const mockSeed: Seed = {
10
+ slug: 'posts',
11
+ label: 'Posts',
12
+ displayNameAlias: 'title',
13
+ branches: [{ id: 'br_01', alias: 'title', label: 'Title', type: 'text' }],
14
+ }
15
+
16
+ function makeMockDb(opts: {
17
+ firstResult?: unknown
18
+ allResults?: unknown[]
19
+ runOk?: boolean
20
+ } = {}) {
21
+ const { firstResult = null, allResults = [], runOk = true } = opts
22
+ const runMock = vi.fn().mockResolvedValue({ success: runOk })
23
+ const firstMock = vi.fn().mockResolvedValue(firstResult)
24
+ const allMock = vi.fn().mockResolvedValue({ results: allResults })
25
+ const bindMock = vi.fn(() => ({ run: runMock, first: firstMock, all: allMock }))
26
+ const stmt = { bind: bindMock, run: runMock, first: firstMock, all: allMock }
27
+ const prepareMock = vi.fn(() => stmt)
28
+ return { db: { prepare: prepareMock } as unknown as D1Database, prepareMock, bindMock, runMock, firstMock, allMock }
29
+ }
30
+
31
+ describe('D1SeedRepository', () => {
32
+ describe('listActive', () => {
33
+ it('queries active seeds ordered by created_at ASC', async () => {
34
+ const row = { definition: JSON.stringify(mockSeed) }
35
+ const { db, prepareMock } = makeMockDb({ allResults: [row] })
36
+ const repo = new D1SeedRepository(db)
37
+ const result = await repo.listActive()
38
+ expect(prepareMock).toHaveBeenCalledWith(expect.stringContaining("status = 'active'"))
39
+ expect(result).toHaveLength(1)
40
+ expect(result[0].slug).toBe('posts')
41
+ })
42
+
43
+ it('skips corrupt JSON rows without throwing', async () => {
44
+ const { db } = makeMockDb({ allResults: [{ definition: 'not-json' }] })
45
+ const result = await new D1SeedRepository(db).listActive()
46
+ expect(result).toHaveLength(0)
47
+ })
48
+ })
49
+
50
+ describe('listAll', () => {
51
+ it('returns all rows including deleted', async () => {
52
+ const row = {
53
+ slug: 'posts',
54
+ definition: JSON.stringify(mockSeed),
55
+ status: 'deleted',
56
+ source: 'code',
57
+ created_at: 1000,
58
+ updated_at: 2000,
59
+ }
60
+ const { db } = makeMockDb({ allResults: [row] })
61
+ const result = await new D1SeedRepository(db).listAll()
62
+ expect(result).toHaveLength(1)
63
+ expect(result[0].status).toBe('deleted')
64
+ expect(result[0].source).toBe('code')
65
+ })
66
+ })
67
+
68
+ describe('get', () => {
69
+ it('returns a SeedRecord when found', async () => {
70
+ const row = {
71
+ slug: 'posts',
72
+ definition: JSON.stringify(mockSeed),
73
+ status: 'active',
74
+ source: 'runtime',
75
+ created_at: 1000,
76
+ updated_at: 1000,
77
+ }
78
+ const { db, bindMock } = makeMockDb({ firstResult: row })
79
+ const result = await new D1SeedRepository(db).get('posts')
80
+ expect(result).not.toBeNull()
81
+ expect(result!.slug).toBe('posts')
82
+ expect(bindMock).toHaveBeenCalledWith('posts')
83
+ })
84
+
85
+ it('returns null when not found', async () => {
86
+ const { db } = makeMockDb({ firstResult: null })
87
+ expect(await new D1SeedRepository(db).get('ghost')).toBeNull()
88
+ })
89
+ })
90
+
91
+ describe('upsert', () => {
92
+ it('prepares INSERT … ON CONFLICT statement with correct bindings', async () => {
93
+ const { db, prepareMock, bindMock } = makeMockDb()
94
+ await new D1SeedRepository(db).upsert('posts', mockSeed)
95
+ expect(prepareMock).toHaveBeenCalledWith(expect.stringContaining('ON CONFLICT'))
96
+ const [slug, definition, source] = bindMock.mock.calls[0]
97
+ expect(slug).toBe('posts')
98
+ expect(JSON.parse(definition as string).slug).toBe('posts')
99
+ expect(source).toBe('runtime')
100
+ })
101
+
102
+ it('passes source=code when specified', async () => {
103
+ const { db, bindMock } = makeMockDb()
104
+ await new D1SeedRepository(db).upsert('posts', mockSeed, 'code')
105
+ expect(bindMock.mock.calls[0][2]).toBe('code')
106
+ })
107
+ })
108
+
109
+ describe('softDelete', () => {
110
+ it('issues UPDATE SET status=deleted', async () => {
111
+ const { db, prepareMock, bindMock } = makeMockDb()
112
+ await new D1SeedRepository(db).softDelete('posts')
113
+ expect(prepareMock).toHaveBeenCalledWith(expect.stringContaining("status = 'deleted'"))
114
+ expect(bindMock.mock.calls[0]).toContain('posts')
115
+ })
116
+ })
117
+
118
+ describe('getRegistryVersion', () => {
119
+ it('returns parsed integer from seed_meta', async () => {
120
+ const { db } = makeMockDb({ firstResult: { value: '7' } })
121
+ expect(await new D1SeedRepository(db).getRegistryVersion()).toBe(7)
122
+ })
123
+
124
+ it('returns 1 when row not found', async () => {
125
+ const { db } = makeMockDb({ firstResult: null })
126
+ expect(await new D1SeedRepository(db).getRegistryVersion()).toBe(1)
127
+ })
128
+ })
129
+
130
+ describe('bumpRegistryVersion', () => {
131
+ it('issues UPDATE … RETURNING and returns new version', async () => {
132
+ const { db, prepareMock } = makeMockDb({ firstResult: { value: '5' } })
133
+ const result = await new D1SeedRepository(db).bumpRegistryVersion()
134
+ expect(prepareMock).toHaveBeenCalledWith(expect.stringContaining('RETURNING'))
135
+ expect(result).toBe(5)
136
+ })
137
+
138
+ it('returns 1 as fallback when RETURNING yields nothing', async () => {
139
+ const { db } = makeMockDb({ firstResult: null })
140
+ expect(await new D1SeedRepository(db).bumpRegistryVersion()).toBe(1)
141
+ })
142
+ })
143
+ })