appflare 0.2.30 → 0.2.32

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 (140) hide show
  1. package/Documentation.md +758 -758
  2. package/cli/commands/index.ts +238 -238
  3. package/cli/generate.ts +243 -178
  4. package/cli/index.ts +120 -120
  5. package/cli/load-config.ts +184 -184
  6. package/cli/schema-compiler.ts +1183 -1183
  7. package/cli/templates/auth/README.md +156 -156
  8. package/cli/templates/auth/config.ts +61 -61
  9. package/cli/templates/auth/route-config.ts +1 -1
  10. package/cli/templates/auth/route-handler.ts +1 -1
  11. package/cli/templates/auth/route-request-utils.ts +5 -5
  12. package/cli/templates/auth/route.config.ts +18 -18
  13. package/cli/templates/auth/route.handler.ts +18 -18
  14. package/cli/templates/auth/route.request-utils.ts +55 -55
  15. package/cli/templates/auth/route.ts +14 -14
  16. package/cli/templates/core/README.md +266 -266
  17. package/cli/templates/core/app-creation.ts +19 -19
  18. package/cli/templates/core/client/appflare.ts +112 -112
  19. package/cli/templates/core/client/handlers/index.ts +748 -748
  20. package/cli/templates/core/client/handlers.ts +1 -1
  21. package/cli/templates/core/client/index.ts +7 -7
  22. package/cli/templates/core/client/storage.ts +195 -195
  23. package/cli/templates/core/client/types.ts +186 -186
  24. package/cli/templates/core/client-modules/appflare.ts +1 -1
  25. package/cli/templates/core/client-modules/handlers.ts +1 -1
  26. package/cli/templates/core/client-modules/index.ts +1 -1
  27. package/cli/templates/core/client-modules/storage.ts +1 -1
  28. package/cli/templates/core/client-modules/types.ts +1 -1
  29. package/cli/templates/core/client.artifacts.ts +39 -39
  30. package/cli/templates/core/client.ts +4 -4
  31. package/cli/templates/core/drizzle.ts +15 -15
  32. package/cli/templates/core/export.ts +14 -14
  33. package/cli/templates/core/handlers.route.ts +24 -24
  34. package/cli/templates/core/handlers.ts +1 -1
  35. package/cli/templates/core/imports.ts +9 -9
  36. package/cli/templates/core/server.ts +38 -38
  37. package/cli/templates/core/types.ts +6 -6
  38. package/cli/templates/core/wrangler.ts +109 -109
  39. package/cli/templates/dashboard/builders/functions/index.ts +17 -17
  40. package/cli/templates/dashboard/builders/functions/render-page/header.ts +20 -20
  41. package/cli/templates/dashboard/builders/functions/render-page/index.ts +33 -33
  42. package/cli/templates/dashboard/builders/functions/render-page/request-panel.ts +171 -171
  43. package/cli/templates/dashboard/builders/functions/render-page/result-panel.ts +85 -85
  44. package/cli/templates/dashboard/builders/functions/render-page/scripts.ts +554 -554
  45. package/cli/templates/dashboard/builders/navigation.ts +122 -122
  46. package/cli/templates/dashboard/builders/storage/index.ts +13 -13
  47. package/cli/templates/dashboard/builders/storage/routes/create-directory-route.ts +29 -29
  48. package/cli/templates/dashboard/builders/storage/routes/delete-route.ts +18 -18
  49. package/cli/templates/dashboard/builders/storage/routes/download-route.ts +23 -23
  50. package/cli/templates/dashboard/builders/storage/routes/index.ts +22 -22
  51. package/cli/templates/dashboard/builders/storage/routes/list-route.ts +25 -25
  52. package/cli/templates/dashboard/builders/storage/routes/preview-route.ts +21 -21
  53. package/cli/templates/dashboard/builders/storage/routes/upload-route.ts +21 -21
  54. package/cli/templates/dashboard/builders/storage/runtime/helpers.ts +72 -72
  55. package/cli/templates/dashboard/builders/storage/runtime/storage-page.ts +130 -130
  56. package/cli/templates/dashboard/builders/table-routes/common/drawer-panel.ts +27 -27
  57. package/cli/templates/dashboard/builders/table-routes/common/pagination.ts +30 -30
  58. package/cli/templates/dashboard/builders/table-routes/common/search-bar.ts +23 -23
  59. package/cli/templates/dashboard/builders/table-routes/fragments.ts +217 -217
  60. package/cli/templates/dashboard/builders/table-routes/helpers.ts +45 -45
  61. package/cli/templates/dashboard/builders/table-routes/index.ts +8 -8
  62. package/cli/templates/dashboard/builders/table-routes/table/actions-cell.ts +71 -71
  63. package/cli/templates/dashboard/builders/table-routes/table/get-route.ts +291 -291
  64. package/cli/templates/dashboard/builders/table-routes/table/index.ts +80 -80
  65. package/cli/templates/dashboard/builders/table-routes/table/post-routes.ts +163 -163
  66. package/cli/templates/dashboard/builders/table-routes/table-route.ts +7 -7
  67. package/cli/templates/dashboard/builders/table-routes/users/get-route.ts +69 -69
  68. package/cli/templates/dashboard/builders/table-routes/users/html/modals.ts +57 -57
  69. package/cli/templates/dashboard/builders/table-routes/users/html/page.ts +27 -27
  70. package/cli/templates/dashboard/builders/table-routes/users/html/table.ts +128 -128
  71. package/cli/templates/dashboard/builders/table-routes/users/index.ts +32 -32
  72. package/cli/templates/dashboard/builders/table-routes/users/post-routes.ts +150 -150
  73. package/cli/templates/dashboard/builders/table-routes/users/redirect.ts +14 -14
  74. package/cli/templates/dashboard/builders/table-routes/users-route.ts +10 -10
  75. package/cli/templates/dashboard/components/dashboard-home.ts +23 -23
  76. package/cli/templates/dashboard/components/layout.ts +388 -388
  77. package/cli/templates/dashboard/components/login-page.ts +65 -65
  78. package/cli/templates/dashboard/index.ts +61 -61
  79. package/cli/templates/dashboard/types.ts +9 -9
  80. package/cli/templates/handlers/README.md +353 -353
  81. package/cli/templates/handlers/auth.ts +37 -37
  82. package/cli/templates/handlers/execution.ts +42 -42
  83. package/cli/templates/handlers/generators/context/context-creation.ts +101 -101
  84. package/cli/templates/handlers/generators/context/error-helpers.ts +11 -11
  85. package/cli/templates/handlers/generators/context/scheduler.ts +24 -24
  86. package/cli/templates/handlers/generators/context/storage-api.ts +82 -82
  87. package/cli/templates/handlers/generators/context/storage-helpers.ts +59 -59
  88. package/cli/templates/handlers/generators/context/types.ts +40 -40
  89. package/cli/templates/handlers/generators/context.ts +43 -43
  90. package/cli/templates/handlers/generators/execution.ts +15 -15
  91. package/cli/templates/handlers/generators/handlers.ts +13 -13
  92. package/cli/templates/handlers/generators/registration/modules/cron.ts +26 -26
  93. package/cli/templates/handlers/generators/registration/modules/realtime/auth.ts +75 -75
  94. package/cli/templates/handlers/generators/registration/modules/realtime/durable-object.ts +144 -144
  95. package/cli/templates/handlers/generators/registration/modules/realtime/index.ts +14 -14
  96. package/cli/templates/handlers/generators/registration/modules/realtime/publisher.ts +102 -102
  97. package/cli/templates/handlers/generators/registration/modules/realtime/routes.ts +164 -164
  98. package/cli/templates/handlers/generators/registration/modules/realtime/types.ts +30 -30
  99. package/cli/templates/handlers/generators/registration/modules/realtime/utils.ts +516 -516
  100. package/cli/templates/handlers/generators/registration/modules/scheduler.ts +56 -56
  101. package/cli/templates/handlers/generators/registration/modules/storage.ts +199 -199
  102. package/cli/templates/handlers/generators/registration/sections.ts +210 -210
  103. package/cli/templates/handlers/generators/types/context.ts +92 -92
  104. package/cli/templates/handlers/generators/types/core.ts +106 -106
  105. package/cli/templates/handlers/generators/types/operations.ts +135 -135
  106. package/cli/templates/handlers/generators/types/query-definitions/filter-and-where-types.ts +281 -259
  107. package/cli/templates/handlers/generators/types/query-definitions/query-api-types.ts +135 -135
  108. package/cli/templates/handlers/generators/types/query-definitions/query-helper-functions.ts +1103 -1031
  109. package/cli/templates/handlers/generators/types/query-definitions/schema-and-table-types.ts +278 -246
  110. package/cli/templates/handlers/generators/types/query-definitions.ts +13 -13
  111. package/cli/templates/handlers/generators/types/query-runtime/handled-error.ts +13 -13
  112. package/cli/templates/handlers/generators/types/query-runtime/runtime-aggregate-and-footer.ts +174 -174
  113. package/cli/templates/handlers/generators/types/query-runtime/runtime-read.ts +157 -121
  114. package/cli/templates/handlers/generators/types/query-runtime/runtime-setup.ts +45 -45
  115. package/cli/templates/handlers/generators/types/query-runtime/runtime-write.ts +697 -697
  116. package/cli/templates/handlers/generators/types/query-runtime.ts +15 -15
  117. package/cli/templates/handlers/index.ts +43 -43
  118. package/cli/templates/handlers/operations.ts +116 -116
  119. package/cli/templates/handlers/registration.ts +91 -91
  120. package/cli/templates/handlers/types.ts +15 -15
  121. package/cli/templates/handlers/utils.ts +48 -48
  122. package/cli/types.ts +110 -110
  123. package/cli/utils/handler-discovery.ts +466 -466
  124. package/cli/utils/json-utils.ts +24 -24
  125. package/cli/utils/path-utils.ts +19 -19
  126. package/cli/utils/schema-discovery.ts +399 -399
  127. package/dist/cli/index.d.mts +2 -0
  128. package/dist/cli/index.d.ts +2 -0
  129. package/dist/cli/index.js +366 -203
  130. package/dist/cli/index.mjs +366 -203
  131. package/index.ts +18 -18
  132. package/package.json +58 -58
  133. package/react/index.ts +5 -5
  134. package/react/use-infinite-query.ts +252 -252
  135. package/react/use-mutation.ts +89 -89
  136. package/react/use-query.ts +207 -207
  137. package/schema.ts +415 -415
  138. package/test-better-auth-hash.ts +2 -2
  139. package/tsconfig.json +6 -6
  140. package/tsup.config.ts +82 -82
@@ -1,238 +1,238 @@
1
- import chokidar from "chokidar";
2
- import { existsSync } from "node:fs";
3
- import { dirname, resolve } from "node:path";
4
- import { generateArtifacts } from "../generate";
5
- import { loadConfig } from "../load-config";
6
-
7
- type MigrateOptions = {
8
- local?: boolean;
9
- remote?: boolean;
10
- preview?: boolean;
11
- };
12
-
13
- function findNearestPackageDir(startDir: string): string {
14
- let currentDir = startDir;
15
-
16
- while (true) {
17
- if (existsSync(resolve(currentDir, "package.json"))) {
18
- return currentDir;
19
- }
20
-
21
- const parentDir = dirname(currentDir);
22
- if (parentDir === currentDir) {
23
- return startDir;
24
- }
25
-
26
- currentDir = parentDir;
27
- }
28
- }
29
-
30
- export async function runBuild(
31
- configPath?: string,
32
- options: { build?: boolean } = {},
33
- ): Promise<void> {
34
- const loadedConfig = await loadConfig(configPath);
35
- if (options.build !== undefined) {
36
- loadedConfig.config.build = options.build;
37
- }
38
- await generateArtifacts(loadedConfig);
39
- if (loadedConfig.wranglerOutDirAbs === loadedConfig.outDirAbs) {
40
- process.stdout.write(
41
- `✅ Generated artifacts in ${loadedConfig.outDirAbs}\n`,
42
- );
43
- return;
44
- }
45
-
46
- process.stdout.write(
47
- `✅ Generated server/client in ${loadedConfig.outDirAbs} and wrangler.json in ${loadedConfig.wranglerOutDirAbs}\n`,
48
- );
49
- }
50
-
51
- export async function runDev(
52
- configPath?: string,
53
- options: { watch?: boolean; build?: boolean } = {},
54
- ): Promise<void> {
55
- await runBuild(configPath, { build: options.build });
56
-
57
- if (!options.watch) {
58
- return;
59
- }
60
-
61
- const loadedConfig = await loadConfig(configPath);
62
- let isRunning = false;
63
- let shouldRerun = false;
64
-
65
- const rebuild = async (): Promise<void> => {
66
- if (isRunning) {
67
- shouldRerun = true;
68
- return;
69
- }
70
-
71
- isRunning = true;
72
- try {
73
- await runBuild(configPath, { build: options.build });
74
- } catch (error) {
75
- process.stderr.write(`❌ Build failed: ${(error as Error).message}\n`);
76
- } finally {
77
- isRunning = false;
78
- if (shouldRerun) {
79
- shouldRerun = false;
80
- await rebuild();
81
- }
82
- }
83
- };
84
-
85
- const watcher = chokidar.watch(loadedConfig.scanDirAbs, {
86
- ignoreInitial: true,
87
- });
88
-
89
- watcher.on("all", async (_eventName, changedPath) => {
90
- process.stdout.write(`🔄 Change detected: ${changedPath}\n`);
91
- await rebuild();
92
- });
93
-
94
- process.stdout.write(`👀 Watching ${loadedConfig.scanDirAbs}\n`);
95
- }
96
-
97
- export async function runMigrate(
98
- configPath?: string,
99
- options: MigrateOptions = {},
100
- ): Promise<void> {
101
- const loadedConfig = await loadConfig(configPath);
102
- const packageDir = findNearestPackageDir(process.cwd());
103
- const selectedTargetCount = [
104
- Boolean(options.local),
105
- Boolean(options.remote),
106
- Boolean(options.preview),
107
- ].filter(Boolean).length;
108
-
109
- if (selectedTargetCount > 1) {
110
- throw new Error("Only one of --local, --remote, or --preview can be set.");
111
- }
112
-
113
- const drizzleConfigPath = resolve(
114
- loadedConfig.outDirAbs,
115
- "drizzle.config.ts",
116
- );
117
- const npxCmd = process.platform === "win32" ? "npx.cmd" : "npx";
118
- const drizzleGenerate = Bun.spawn(
119
- [npxCmd, "drizzle-kit", "generate", "--config", drizzleConfigPath],
120
- {
121
- cwd: packageDir,
122
- stdin: "inherit",
123
- stdout: "inherit",
124
- stderr: "inherit",
125
- },
126
- );
127
-
128
- const drizzleExitCode = await drizzleGenerate.exited;
129
- if (drizzleExitCode !== 0) {
130
- throw new Error(
131
- `drizzle-kit generate failed with exit code ${drizzleExitCode}`,
132
- );
133
- }
134
-
135
- const databaseName = loadedConfig.config.database[0].databaseName;
136
- const wranglerArgs = [
137
- npxCmd,
138
- "wrangler",
139
- "d1",
140
- "migrations",
141
- "apply",
142
- databaseName,
143
- ];
144
-
145
- if (options.local) {
146
- wranglerArgs.push("--local");
147
- } else if (options.remote) {
148
- wranglerArgs.push("--remote");
149
- } else if (options.preview) {
150
- wranglerArgs.push("--preview");
151
- }
152
-
153
- const wranglerApply = Bun.spawn(wranglerArgs, {
154
- cwd: loadedConfig.configDir,
155
- stdin: "inherit",
156
- stdout: "inherit",
157
- stderr: "inherit",
158
- });
159
-
160
- const wranglerExitCode = await wranglerApply.exited;
161
- if (wranglerExitCode !== 0) {
162
- throw new Error(
163
- `wrangler d1 migrations apply failed with exit code ${wranglerExitCode}`,
164
- );
165
- }
166
- }
167
-
168
- export async function runAddAdmin(
169
- configPath?: string,
170
- options: {
171
- name: string;
172
- email: string;
173
- password: string;
174
- local?: boolean;
175
- remote?: boolean;
176
- } = { name: "", email: "", password: "" },
177
- ): Promise<void> {
178
- const loadedConfig = await loadConfig(configPath);
179
-
180
- const selectedTargetCount = [
181
- Boolean(options.local),
182
- Boolean(options.remote),
183
- ].filter(Boolean).length;
184
-
185
- if (selectedTargetCount > 1) {
186
- throw new Error("Only one of --local or --remote can be set.");
187
- }
188
-
189
- const { hashPassword } = await import("better-auth/crypto");
190
- const passwordHash = await hashPassword(options.password);
191
-
192
- const userId = crypto.randomUUID();
193
- const accountId = crypto.randomUUID();
194
- const now = Date.now();
195
-
196
- const safeName = options.name.replace(/'/g, "''");
197
- const safeEmail = options.email.replace(/'/g, "''");
198
-
199
- const sqlQuery = [
200
- "INSERT INTO users (id, name, email, email_verified, created_at, updated_at, role, banned)",
201
- `VALUES ('${userId}', '${safeName}', '${safeEmail}', 1, ${now}, ${now}, 'admin', 0);`,
202
- "INSERT INTO accounts (id, account_id, provider_id, user_id, password, created_at, updated_at)",
203
- `VALUES ('${accountId}', '${safeEmail}', 'credential', '${userId}', '${passwordHash}', ${now}, ${now});`,
204
- ].join(" ");
205
-
206
- const databaseName = loadedConfig.config.database[0].databaseName;
207
- const npxCmd = process.platform === "win32" ? "npx.cmd" : "npx";
208
- const wranglerArgs = [
209
- npxCmd,
210
- "wrangler",
211
- "d1",
212
- "execute",
213
- databaseName,
214
- `--command=${sqlQuery}`,
215
- ];
216
-
217
- if (options.local) {
218
- wranglerArgs.push("--local");
219
- } else if (options.remote) {
220
- wranglerArgs.push("--remote");
221
- }
222
-
223
- const wranglerExecute = Bun.spawn(wranglerArgs, {
224
- cwd: loadedConfig.configDir,
225
- stdin: "inherit",
226
- stdout: "inherit",
227
- stderr: "inherit",
228
- });
229
-
230
- const wranglerExitCode = await wranglerExecute.exited;
231
- if (wranglerExitCode !== 0) {
232
- throw new Error(
233
- `Failed to add admin user. wrangler d1 execute exited with code ${wranglerExitCode}`,
234
- );
235
- }
236
-
237
- console.log("✅ Admin user " + options.email + " created successfully!");
238
- }
1
+ import chokidar from "chokidar";
2
+ import { existsSync } from "node:fs";
3
+ import { dirname, resolve } from "node:path";
4
+ import { generateArtifacts } from "../generate";
5
+ import { loadConfig } from "../load-config";
6
+
7
+ type MigrateOptions = {
8
+ local?: boolean;
9
+ remote?: boolean;
10
+ preview?: boolean;
11
+ };
12
+
13
+ function findNearestPackageDir(startDir: string): string {
14
+ let currentDir = startDir;
15
+
16
+ while (true) {
17
+ if (existsSync(resolve(currentDir, "package.json"))) {
18
+ return currentDir;
19
+ }
20
+
21
+ const parentDir = dirname(currentDir);
22
+ if (parentDir === currentDir) {
23
+ return startDir;
24
+ }
25
+
26
+ currentDir = parentDir;
27
+ }
28
+ }
29
+
30
+ export async function runBuild(
31
+ configPath?: string,
32
+ options: { build?: boolean } = {},
33
+ ): Promise<void> {
34
+ const loadedConfig = await loadConfig(configPath);
35
+ if (options.build !== undefined) {
36
+ loadedConfig.config.build = options.build;
37
+ }
38
+ await generateArtifacts(loadedConfig);
39
+ if (loadedConfig.wranglerOutDirAbs === loadedConfig.outDirAbs) {
40
+ process.stdout.write(
41
+ `✅ Generated artifacts in ${loadedConfig.outDirAbs}\n`,
42
+ );
43
+ return;
44
+ }
45
+
46
+ process.stdout.write(
47
+ `✅ Generated server/client in ${loadedConfig.outDirAbs} and wrangler.json in ${loadedConfig.wranglerOutDirAbs}\n`,
48
+ );
49
+ }
50
+
51
+ export async function runDev(
52
+ configPath?: string,
53
+ options: { watch?: boolean; build?: boolean } = {},
54
+ ): Promise<void> {
55
+ await runBuild(configPath, { build: options.build });
56
+
57
+ if (!options.watch) {
58
+ return;
59
+ }
60
+
61
+ const loadedConfig = await loadConfig(configPath);
62
+ let isRunning = false;
63
+ let shouldRerun = false;
64
+
65
+ const rebuild = async (): Promise<void> => {
66
+ if (isRunning) {
67
+ shouldRerun = true;
68
+ return;
69
+ }
70
+
71
+ isRunning = true;
72
+ try {
73
+ await runBuild(configPath, { build: options.build });
74
+ } catch (error) {
75
+ process.stderr.write(`❌ Build failed: ${(error as Error).message}\n`);
76
+ } finally {
77
+ isRunning = false;
78
+ if (shouldRerun) {
79
+ shouldRerun = false;
80
+ await rebuild();
81
+ }
82
+ }
83
+ };
84
+
85
+ const watcher = chokidar.watch(loadedConfig.scanDirAbs, {
86
+ ignoreInitial: true,
87
+ });
88
+
89
+ watcher.on("all", async (_eventName, changedPath) => {
90
+ process.stdout.write(`🔄 Change detected: ${changedPath}\n`);
91
+ await rebuild();
92
+ });
93
+
94
+ process.stdout.write(`👀 Watching ${loadedConfig.scanDirAbs}\n`);
95
+ }
96
+
97
+ export async function runMigrate(
98
+ configPath?: string,
99
+ options: MigrateOptions = {},
100
+ ): Promise<void> {
101
+ const loadedConfig = await loadConfig(configPath);
102
+ const packageDir = findNearestPackageDir(process.cwd());
103
+ const selectedTargetCount = [
104
+ Boolean(options.local),
105
+ Boolean(options.remote),
106
+ Boolean(options.preview),
107
+ ].filter(Boolean).length;
108
+
109
+ if (selectedTargetCount > 1) {
110
+ throw new Error("Only one of --local, --remote, or --preview can be set.");
111
+ }
112
+
113
+ const drizzleConfigPath = resolve(
114
+ loadedConfig.outDirAbs,
115
+ "drizzle.config.ts",
116
+ );
117
+ const npxCmd = process.platform === "win32" ? "npx.cmd" : "npx";
118
+ const drizzleGenerate = Bun.spawn(
119
+ [npxCmd, "drizzle-kit", "generate", "--config", drizzleConfigPath],
120
+ {
121
+ cwd: packageDir,
122
+ stdin: "inherit",
123
+ stdout: "inherit",
124
+ stderr: "inherit",
125
+ },
126
+ );
127
+
128
+ const drizzleExitCode = await drizzleGenerate.exited;
129
+ if (drizzleExitCode !== 0) {
130
+ throw new Error(
131
+ `drizzle-kit generate failed with exit code ${drizzleExitCode}`,
132
+ );
133
+ }
134
+
135
+ const databaseName = loadedConfig.config.database[0].databaseName;
136
+ const wranglerArgs = [
137
+ npxCmd,
138
+ "wrangler",
139
+ "d1",
140
+ "migrations",
141
+ "apply",
142
+ databaseName,
143
+ ];
144
+
145
+ if (options.local) {
146
+ wranglerArgs.push("--local");
147
+ } else if (options.remote) {
148
+ wranglerArgs.push("--remote");
149
+ } else if (options.preview) {
150
+ wranglerArgs.push("--preview");
151
+ }
152
+
153
+ const wranglerApply = Bun.spawn(wranglerArgs, {
154
+ cwd: loadedConfig.configDir,
155
+ stdin: "inherit",
156
+ stdout: "inherit",
157
+ stderr: "inherit",
158
+ });
159
+
160
+ const wranglerExitCode = await wranglerApply.exited;
161
+ if (wranglerExitCode !== 0) {
162
+ throw new Error(
163
+ `wrangler d1 migrations apply failed with exit code ${wranglerExitCode}`,
164
+ );
165
+ }
166
+ }
167
+
168
+ export async function runAddAdmin(
169
+ configPath?: string,
170
+ options: {
171
+ name: string;
172
+ email: string;
173
+ password: string;
174
+ local?: boolean;
175
+ remote?: boolean;
176
+ } = { name: "", email: "", password: "" },
177
+ ): Promise<void> {
178
+ const loadedConfig = await loadConfig(configPath);
179
+
180
+ const selectedTargetCount = [
181
+ Boolean(options.local),
182
+ Boolean(options.remote),
183
+ ].filter(Boolean).length;
184
+
185
+ if (selectedTargetCount > 1) {
186
+ throw new Error("Only one of --local or --remote can be set.");
187
+ }
188
+
189
+ const { hashPassword } = await import("better-auth/crypto");
190
+ const passwordHash = await hashPassword(options.password);
191
+
192
+ const userId = crypto.randomUUID();
193
+ const accountId = crypto.randomUUID();
194
+ const now = Date.now();
195
+
196
+ const safeName = options.name.replace(/'/g, "''");
197
+ const safeEmail = options.email.replace(/'/g, "''");
198
+
199
+ const sqlQuery = [
200
+ "INSERT INTO users (id, name, email, email_verified, created_at, updated_at, role, banned)",
201
+ `VALUES ('${userId}', '${safeName}', '${safeEmail}', 1, ${now}, ${now}, 'admin', 0);`,
202
+ "INSERT INTO accounts (id, account_id, provider_id, user_id, password, created_at, updated_at)",
203
+ `VALUES ('${accountId}', '${safeEmail}', 'credential', '${userId}', '${passwordHash}', ${now}, ${now});`,
204
+ ].join(" ");
205
+
206
+ const databaseName = loadedConfig.config.database[0].databaseName;
207
+ const npxCmd = process.platform === "win32" ? "npx.cmd" : "npx";
208
+ const wranglerArgs = [
209
+ npxCmd,
210
+ "wrangler",
211
+ "d1",
212
+ "execute",
213
+ databaseName,
214
+ `--command=${sqlQuery}`,
215
+ ];
216
+
217
+ if (options.local) {
218
+ wranglerArgs.push("--local");
219
+ } else if (options.remote) {
220
+ wranglerArgs.push("--remote");
221
+ }
222
+
223
+ const wranglerExecute = Bun.spawn(wranglerArgs, {
224
+ cwd: loadedConfig.configDir,
225
+ stdin: "inherit",
226
+ stdout: "inherit",
227
+ stderr: "inherit",
228
+ });
229
+
230
+ const wranglerExitCode = await wranglerExecute.exited;
231
+ if (wranglerExitCode !== 0) {
232
+ throw new Error(
233
+ `Failed to add admin user. wrangler d1 execute exited with code ${wranglerExitCode}`,
234
+ );
235
+ }
236
+
237
+ console.log("✅ Admin user " + options.email + " created successfully!");
238
+ }