@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,98 @@
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 { ISeedRepository, SeedRecord, Seed } from '@beechcms/core'
7
+
8
+ export class D1SeedRepository implements ISeedRepository {
9
+ constructor(private readonly db: D1Database) {}
10
+
11
+ async listActive(): Promise<Seed[]> {
12
+ const rs = await this.db
13
+ .prepare(`SELECT definition FROM seeds WHERE status = 'active' ORDER BY created_at ASC`)
14
+ .all<{ definition: string }>()
15
+ const seeds: Seed[] = []
16
+ for (const r of rs.results ?? []) {
17
+ try { seeds.push(JSON.parse(r.definition) as Seed) } catch { /* skip corrupt */ }
18
+ }
19
+ return seeds
20
+ }
21
+
22
+ async listAll(): Promise<SeedRecord[]> {
23
+ const rs = await this.db
24
+ .prepare(`SELECT slug, definition, status, source, created_at, updated_at FROM seeds ORDER BY created_at ASC`)
25
+ .all<{ slug: string; definition: string; status: string; source: string; created_at: number; updated_at: number }>()
26
+ const out: SeedRecord[] = []
27
+ for (const r of rs.results ?? []) {
28
+ try {
29
+ out.push({
30
+ slug: r.slug,
31
+ definition: JSON.parse(r.definition) as Seed,
32
+ status: r.status as 'active' | 'deleted',
33
+ source: r.source as 'code' | 'runtime',
34
+ createdAt: r.created_at,
35
+ updatedAt: r.updated_at,
36
+ })
37
+ } catch { /* skip corrupt */ }
38
+ }
39
+ return out
40
+ }
41
+
42
+ async get(slug: string): Promise<SeedRecord | null> {
43
+ const r = await this.db
44
+ .prepare(`SELECT slug, definition, status, source, created_at, updated_at FROM seeds WHERE slug = ? LIMIT 1`)
45
+ .bind(slug)
46
+ .first<{ slug: string; definition: string; status: string; source: string; created_at: number; updated_at: number }>()
47
+ if (!r) return null
48
+ return {
49
+ slug: r.slug,
50
+ definition: JSON.parse(r.definition) as Seed,
51
+ status: r.status as 'active' | 'deleted',
52
+ source: r.source as 'code' | 'runtime',
53
+ createdAt: r.created_at,
54
+ updatedAt: r.updated_at,
55
+ }
56
+ }
57
+
58
+ async upsert(slug: string, definition: Seed, source: 'code' | 'runtime' = 'runtime'): Promise<void> {
59
+ const now = Math.floor(Date.now() / 1000)
60
+ await this.db
61
+ .prepare(`
62
+ INSERT INTO seeds (slug, definition, status, source, created_at, updated_at)
63
+ VALUES (?, ?, 'active', ?, ?, ?)
64
+ ON CONFLICT(slug) DO UPDATE SET
65
+ definition = excluded.definition,
66
+ status = 'active',
67
+ updated_at = excluded.updated_at
68
+ `)
69
+ .bind(slug, JSON.stringify(definition), source, now, now)
70
+ .run()
71
+ }
72
+
73
+ async softDelete(slug: string): Promise<void> {
74
+ const now = Math.floor(Date.now() / 1000)
75
+ await this.db
76
+ .prepare(`UPDATE seeds SET status = 'deleted', updated_at = ? WHERE slug = ?`)
77
+ .bind(now, slug)
78
+ .run()
79
+ }
80
+
81
+ async hardDelete(slug: string): Promise<void> {
82
+ await this.db.prepare(`DELETE FROM seeds WHERE slug = ?`).bind(slug).run()
83
+ }
84
+
85
+ async getRegistryVersion(): Promise<number> {
86
+ const r = await this.db
87
+ .prepare(`SELECT value FROM seed_meta WHERE id = 'registry_version' LIMIT 1`)
88
+ .first<{ value: string }>()
89
+ return r ? parseInt(r.value, 10) || 1 : 1
90
+ }
91
+
92
+ async bumpRegistryVersion(): Promise<number> {
93
+ const r = await this.db
94
+ .prepare(`UPDATE seed_meta SET value = CAST(CAST(value AS INTEGER) + 1 AS TEXT) WHERE id = 'registry_version' RETURNING value`)
95
+ .first<{ value: string }>()
96
+ return r ? parseInt(r.value, 10) : 1
97
+ }
98
+ }
@@ -1,7 +1,14 @@
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 { IIdGenerator } from '@beechcms/core'
2
6
 
3
7
  const ID_PADDING_WIDTH = 4
4
8
 
9
+ // Matches the format emitted by uuid() → 'test-id-XXXX'
10
+ const TEST_ID_REGEX = /^test-id-\d{4}$/
11
+
5
12
  /**
6
13
  * Test-only IIdGenerator implementation. Each call returns a stable,
7
14
  * monotonically increasing identifier (`test-id-0001`, `test-id-0002`, …)
@@ -16,6 +23,10 @@ export class SequentialIdGenerator implements IIdGenerator {
16
23
  return `test-id-${String(this.counter).padStart(ID_PADDING_WIDTH, '0')}`
17
24
  }
18
25
 
26
+ isValid(value: unknown): value is string {
27
+ return typeof value === 'string' && TEST_ID_REGEX.test(value)
28
+ }
29
+
19
30
  reset(): void {
20
31
  this.counter = 0
21
32
  }
@@ -0,0 +1,53 @@
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 { ISiteSettingsRepository, SiteSettings } from '@beechcms/core'
7
+
8
+ const DEFAULTS: SiteSettings = {
9
+ siteTitle: 'Beech CMS',
10
+ defaultLanguage: 'en',
11
+ timezone: 'Europe/Rome',
12
+ currency: 'EUR',
13
+ companyName: null,
14
+ companyWebsite: null,
15
+ companyAbbreviation: null,
16
+ }
17
+
18
+ export class D1SiteSettingsRepository implements ISiteSettingsRepository {
19
+ constructor(private readonly db: D1Database) {}
20
+
21
+ async getAll(): Promise<SiteSettings> {
22
+ const { results } = await this.db
23
+ .prepare('SELECT key, value FROM site_settings')
24
+ .all<{ key: string; value: string }>()
25
+
26
+ const map = new Map(results.map((r) => [r.key, r.value]))
27
+
28
+ return {
29
+ siteTitle: map.get('siteTitle') ?? DEFAULTS.siteTitle,
30
+ defaultLanguage: map.get('defaultLanguage') ?? DEFAULTS.defaultLanguage,
31
+ timezone: map.get('timezone') ?? DEFAULTS.timezone,
32
+ currency: map.get('currency') ?? DEFAULTS.currency,
33
+ companyName: map.get('companyName') ?? null,
34
+ companyWebsite: map.get('companyWebsite') ?? null,
35
+ companyAbbreviation: map.get('companyAbbreviation') ?? null,
36
+ }
37
+ }
38
+
39
+ async setMany(values: Partial<SiteSettings>): Promise<void> {
40
+ const entries = Object.entries(values).filter(([, v]) => v !== undefined) as [string, string | null][]
41
+ if (entries.length === 0) return
42
+
43
+ const stmts = entries.map(([key, value]) =>
44
+ this.db
45
+ .prepare(
46
+ 'INSERT INTO site_settings (key, value) VALUES (?, ?) ON CONFLICT(key) DO UPDATE SET value = excluded.value',
47
+ )
48
+ .bind(key, value),
49
+ )
50
+
51
+ await this.db.batch(stmts)
52
+ }
53
+ }
@@ -1,30 +1,32 @@
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 { BeechBucket, PutBucketOptions, GetBucketResult } from '@beechcms/core'
2
6
  import { Env } from '../../types'
3
- import { R2BindingBucket } from './r2-binding-bucket'
4
7
  import { S3Bucket } from './s3-bucket'
5
8
 
6
9
  class NullBucket implements BeechBucket {
7
10
  private fail(): never {
8
- throw new Error('No storage provider configured. Set MEDIA_BUCKET or R2 credentials.')
11
+ throw new Error('Storage not configured. Set R2_ENDPOINT, R2_ACCESS_KEY_ID, R2_SECRET_ACCESS_KEY, R2_BUCKET_NAME.')
9
12
  }
10
- put(_key: string, _body: ArrayBuffer | Uint8Array | ReadableStream, _options?: PutBucketOptions): Promise<void> { return this.fail() }
11
- get(_key: string): Promise<GetBucketResult | null> { return this.fail() }
12
- delete(_key: string): Promise<void> { return this.fail() }
13
- head(_key: string): Promise<{ size: number; contentType?: string; metadata?: Record<string, string> } | null> { return this.fail() }
14
- getUrl(_key: string): string { return this.fail() }
13
+ put(): Promise<void> { return this.fail() }
14
+ get(): Promise<GetBucketResult | null> { return this.fail() }
15
+ delete(): Promise<void> { return this.fail() }
16
+ head(): Promise<{ size: number } | null> { return this.fail() }
17
+ getUrl(): string { return this.fail() }
15
18
  getTotalSize(): Promise<number> { return this.fail() }
16
- list(_options?: { prefix?: string; limit?: number; cursor?: string }): Promise<{ objects: Array<{ key: string; size: number }>; cursor?: string }> { return this.fail() }
19
+ list(): Promise<{ objects: Array<{ key: string; size: number }>; cursor?: string }> { return this.fail() }
20
+ presignPut(): Promise<string> { return this.fail() }
21
+ presignGet(): Promise<string> { return this.fail() }
17
22
  }
18
23
 
19
24
  /**
20
- * Creates the appropriate BeechBucket based on available bindings/credentials.
21
- * Uses capability detection: R2 binding takes precedence over S3-compatible credentials.
25
+ * Single storage path: S3-compatible HTTP API.
26
+ * Prod Cloudflare R2 with S3 API token.
27
+ * Dev → MinIO container (or R2 staging bucket).
22
28
  */
23
29
  export function createBucketProvider(env: Env, baseUrl: string): BeechBucket {
24
- if (env.MEDIA_BUCKET) {
25
- return new R2BindingBucket(env.MEDIA_BUCKET, baseUrl)
26
- }
27
-
28
30
  if (env.R2_ACCESS_KEY_ID && env.R2_SECRET_ACCESS_KEY && env.R2_ENDPOINT && env.R2_BUCKET_NAME) {
29
31
  return new S3Bucket({
30
32
  endpoint: env.R2_ENDPOINT,
@@ -35,6 +37,5 @@ export function createBucketProvider(env: Env, baseUrl: string): BeechBucket {
35
37
  cdnUrl: env.MEDIA_CDN_URL?.trim().replace(/\/$/, '') || undefined,
36
38
  })
37
39
  }
38
-
39
40
  return new NullBucket()
40
41
  }
@@ -1,5 +1,10 @@
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 { S3Client, PutObjectCommand, GetObjectCommand, DeleteObjectCommand, HeadObjectCommand, ListObjectsV2Command } from '@aws-sdk/client-s3'
2
- import { BeechBucket, PutBucketOptions, GetBucketResult } from '@beechcms/core'
6
+ import { getSignedUrl } from '@aws-sdk/s3-request-presigner'
7
+ import { BeechBucket, PutBucketOptions, GetBucketResult, PresignOptions } from '@beechcms/core'
3
8
 
4
9
  /**
5
10
  * Implementation of BeechBucket using S3-compatible API (AWS SDK).
@@ -20,6 +25,10 @@ export class S3Bucket implements BeechBucket {
20
25
  baseUrl: string,
21
26
  cdnUrl?: string,
22
27
  }) {
28
+ // requestChecksumCalculation/responseChecksumValidation exist at runtime in AWS SDK v3
29
+ // but are not yet in the TypeScript types for this version. Casting via unknown to pass them
30
+ // through: without them the SDK adds x-amz-checksum-crc32 to presigned URLs, which causes
31
+ // R2 to reject PUT requests when the CRC32 of the uploaded file doesn't match.
23
32
  this.client = new S3Client({
24
33
  region: 'auto',
25
34
  endpoint: config.endpoint,
@@ -28,7 +37,9 @@ export class S3Bucket implements BeechBucket {
28
37
  secretAccessKey: config.secretAccessKey,
29
38
  },
30
39
  forcePathStyle: true,
31
- })
40
+ requestChecksumCalculation: 'when_required',
41
+ responseChecksumValidation: 'when_required',
42
+ } as unknown as import('@aws-sdk/client-s3').S3ClientConfig)
32
43
  this.bucketName = config.bucketName
33
44
  this.baseUrl = config.baseUrl
34
45
  this.cdnUrl = config.cdnUrl ?? null
@@ -144,6 +155,27 @@ export class S3Bucket implements BeechBucket {
144
155
  return total
145
156
  }
146
157
 
158
+ async presignPut(key: string, options: PresignOptions): Promise<string> {
159
+ // ContentLength intentionally excluded: including it adds content-length to
160
+ // X-Amz-SignedHeaders, requiring the uploading client to send an exact
161
+ // Content-Length header. Some fetch implementations omit it, causing MinIO/R2
162
+ // to reject the PUT with 400. Size validation already happened server-side.
163
+ const command = new PutObjectCommand({
164
+ Bucket: this.bucketName,
165
+ Key: key,
166
+ ContentType: options.contentType,
167
+ })
168
+ return getSignedUrl(this.client, command, { expiresIn: options.expiresIn })
169
+ }
170
+
171
+ async presignGet(key: string, options: PresignOptions): Promise<string> {
172
+ const command = new GetObjectCommand({
173
+ Bucket: this.bucketName,
174
+ Key: key,
175
+ })
176
+ return getSignedUrl(this.client, command, { expiresIn: options.expiresIn })
177
+ }
178
+
147
179
  async list(options?: { prefix?: string; limit?: number; cursor?: string }): Promise<{ objects: Array<{ key: string; size: number }>; cursor?: string }> {
148
180
  const command = new ListObjectsV2Command({
149
181
  Bucket: this.bucketName,
@@ -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 { S3Client, ListObjectsV2Command, ListObjectsV2CommandOutput } from '@aws-sdk/client-s3'
2
6
 
3
7
  /**
@@ -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 { describe, it, expect, vi } from 'vitest'
2
6
  import { D1SystemStatsRepository } from './system-stats.repository.d1'
3
7
 
@@ -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 { SystemStatsRepository } from '@beechcms/core'
2
6
 
3
7
  /**
@@ -39,6 +43,6 @@ export class D1SystemStatsRepository implements SystemStatsRepository {
39
43
  */
40
44
  async getStorageUsage(): Promise<number> {
41
45
  const statsRecordResult = await this.database.prepare("SELECT value FROM system_stats WHERE id = 'total_storage_bytes'").first<{ value: string }>()
42
- return statsRecordResult ? parseInt(statsRecordResult.value, 10) : 0
46
+ return statsRecordResult ? Number.parseInt(statsRecordResult.value, 10) : 0
43
47
  }
44
48
  }
package/src/types.ts CHANGED
@@ -1,6 +1,11 @@
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
  /// <reference types="@cloudflare/workers-types" />
2
- import type { Seed, ContentRepository, IdempotencyRepository, BeechBucket, MediaRepository, SystemStatsRepository, IHashProvider, ITokenService, IUserRepository, ISessionRepository, IPasswordResetTokenRepository, IActivityLogger, IActivityLogRepository, INotificationRepository, INotificationService, IWidgetRepository, ISearchRepository, IAnalyticsRepository, IContentScanRepository, ISeedRegistry, IClock, IIdGenerator, IAutomationRunner, IAutomationRepository, IScheduler } from '@beechcms/core'
6
+ import type { Seed, ContentRepository, IdempotencyRepository, BeechBucket, MediaRepository, SystemStatsRepository, IHashProvider, ITokenService, IUserRepository, ISessionRepository, IPasswordResetTokenRepository, IActivityLogger, IActivityLogRepository, INotificationRepository, INotificationService, IWidgetRepository, ISearchRepository, IAnalyticsRepository, IContentScanRepository, ISeedRegistry, IClock, IIdGenerator, IAutomationRunner, IAutomationRepository, IScheduler, BackrefMap, ISiteSettingsRepository, IDemoDataRepository, JwtClaims, ISeedLayoutRepository, ISeedRepository, ISchemaMutator } from '@beechcms/core'
3
7
  import type { IRateLimiterRegistry } from './middleware/rate-limit.middleware'
8
+ import type { ISetupChecklistRepository } from './shared/d1-setup-checklist.repository'
4
9
 
5
10
  export interface Env {
6
11
  DB: D1Database
@@ -22,20 +27,28 @@ export interface Env {
22
27
  PUBLIC_IDEMPOTENCY_TTL_SECONDS?: string
23
28
  MEDIA_BASE_URL?: string
24
29
  MEDIA_CDN_URL?: string
30
+ MAX_UPLOAD_BYTES?: string
25
31
  RESEND_API_KEY?: string
26
32
  EMAIL_API_KEY?: string
27
33
  APP_URL?: string
28
34
  EMAIL_FROM?: string
35
+ EMAIL_PROVIDER?: string
36
+ SMTP_HOST?: string
37
+ SMTP_PORT?: string
38
+ WEBHOOK_TESTER_URL?: string
29
39
  FORGOT_PASSWORD_RATE_LIMITER?: RateLimit
30
40
  RESET_PASSWORD_RATE_LIMITER?: RateLimit
31
41
  ENV?: string
32
42
  DATE_FORMAT?: string
33
43
  ASSETS?: Fetcher
34
- MEDIA_BUCKET?: R2Bucket
44
+ QSTASH_TOKEN?: string
45
+ QSTASH_URL?: string
46
+ QSTASH_CURRENT_SIGNING_KEY?: string
47
+ QSTASH_NEXT_SIGNING_KEY?: string
35
48
  }
36
49
 
37
50
  export interface Variables {
38
- jwtPayload: { sub: string; email?: string; name?: string | null }
51
+ jwtPayload: JwtClaims
39
52
  getSeed: (slug: string) => Seed | null
40
53
  seedRegistry: ISeedRegistry
41
54
  repository: ContentRepository
@@ -62,6 +75,13 @@ export interface Variables {
62
75
  automationRepository: IAutomationRepository
63
76
  automationRunner: IAutomationRunner
64
77
  scheduler: IScheduler
78
+ backrefMap: BackrefMap
79
+ siteSettingsRepository: ISiteSettingsRepository
80
+ demoDataRepository: IDemoDataRepository
81
+ setupChecklistRepository: ISetupChecklistRepository
82
+ seedLayoutRepository: ISeedLayoutRepository
83
+ seedRepository: ISeedRepository
84
+ schemaMutator: ISchemaMutator
65
85
  }
66
86
 
67
87
  export type AppEnv = { Bindings: Env; Variables: Variables }