update schema + working sandbox creation route
This commit is contained in:
parent
b6097df612
commit
f4c3d43b87
2
backend/database/drizzle/0001_magenta_tenebrous.sql
Normal file
2
backend/database/drizzle/0001_magenta_tenebrous.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
ALTER TABLE `sandbox` DROP COLUMN `bucket`;--> statement-breakpoint
|
||||||
|
ALTER TABLE `sandbox` DROP COLUMN `init`;
|
111
backend/database/drizzle/meta/0001_snapshot.json
Normal file
111
backend/database/drizzle/meta/0001_snapshot.json
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
{
|
||||||
|
"version": "5",
|
||||||
|
"dialect": "sqlite",
|
||||||
|
"id": "739c5df4-de1b-408b-bc8c-5783688c5297",
|
||||||
|
"prevId": "9c09f493-3a05-496c-997e-b527c8f17cf9",
|
||||||
|
"tables": {
|
||||||
|
"sandbox": {
|
||||||
|
"name": "sandbox",
|
||||||
|
"columns": {
|
||||||
|
"id": {
|
||||||
|
"name": "id",
|
||||||
|
"type": "text",
|
||||||
|
"primaryKey": true,
|
||||||
|
"notNull": true,
|
||||||
|
"autoincrement": false
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"name": "name",
|
||||||
|
"type": "text",
|
||||||
|
"primaryKey": false,
|
||||||
|
"notNull": true,
|
||||||
|
"autoincrement": false
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"name": "type",
|
||||||
|
"type": "text",
|
||||||
|
"primaryKey": false,
|
||||||
|
"notNull": true,
|
||||||
|
"autoincrement": false
|
||||||
|
},
|
||||||
|
"user_id": {
|
||||||
|
"name": "user_id",
|
||||||
|
"type": "text",
|
||||||
|
"primaryKey": false,
|
||||||
|
"notNull": true,
|
||||||
|
"autoincrement": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"indexes": {
|
||||||
|
"sandbox_id_unique": {
|
||||||
|
"name": "sandbox_id_unique",
|
||||||
|
"columns": [
|
||||||
|
"id"
|
||||||
|
],
|
||||||
|
"isUnique": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"foreignKeys": {
|
||||||
|
"sandbox_user_id_user_id_fk": {
|
||||||
|
"name": "sandbox_user_id_user_id_fk",
|
||||||
|
"tableFrom": "sandbox",
|
||||||
|
"tableTo": "user",
|
||||||
|
"columnsFrom": [
|
||||||
|
"user_id"
|
||||||
|
],
|
||||||
|
"columnsTo": [
|
||||||
|
"id"
|
||||||
|
],
|
||||||
|
"onDelete": "no action",
|
||||||
|
"onUpdate": "no action"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"compositePrimaryKeys": {},
|
||||||
|
"uniqueConstraints": {}
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"name": "user",
|
||||||
|
"columns": {
|
||||||
|
"id": {
|
||||||
|
"name": "id",
|
||||||
|
"type": "text",
|
||||||
|
"primaryKey": true,
|
||||||
|
"notNull": true,
|
||||||
|
"autoincrement": false
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"name": "name",
|
||||||
|
"type": "text",
|
||||||
|
"primaryKey": false,
|
||||||
|
"notNull": true,
|
||||||
|
"autoincrement": false
|
||||||
|
},
|
||||||
|
"email": {
|
||||||
|
"name": "email",
|
||||||
|
"type": "text",
|
||||||
|
"primaryKey": false,
|
||||||
|
"notNull": true,
|
||||||
|
"autoincrement": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"indexes": {
|
||||||
|
"user_id_unique": {
|
||||||
|
"name": "user_id_unique",
|
||||||
|
"columns": [
|
||||||
|
"id"
|
||||||
|
],
|
||||||
|
"isUnique": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"foreignKeys": {},
|
||||||
|
"compositePrimaryKeys": {},
|
||||||
|
"uniqueConstraints": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"enums": {},
|
||||||
|
"_meta": {
|
||||||
|
"schemas": {},
|
||||||
|
"tables": {},
|
||||||
|
"columns": {}
|
||||||
|
}
|
||||||
|
}
|
@ -8,6 +8,13 @@
|
|||||||
"when": 1713849093097,
|
"when": 1713849093097,
|
||||||
"tag": "0000_blushing_surge",
|
"tag": "0000_blushing_surge",
|
||||||
"breakpoints": true
|
"breakpoints": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idx": 1,
|
||||||
|
"version": "5",
|
||||||
|
"when": 1713937589365,
|
||||||
|
"tag": "0001_magenta_tenebrous",
|
||||||
|
"breakpoints": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -16,6 +16,7 @@ export interface Env {
|
|||||||
export default {
|
export default {
|
||||||
async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise<Response> {
|
async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise<Response> {
|
||||||
const success = new Response("Success", { status: 200 });
|
const success = new Response("Success", { status: 200 });
|
||||||
|
const invalidRequest = new Response("Invalid Request", { status: 400 });
|
||||||
const notFound = new Response("Not Found", { status: 404 });
|
const notFound = new Response("Not Found", { status: 404 });
|
||||||
const methodNotAllowed = new Response("Method Not Allowed", { status: 405 });
|
const methodNotAllowed = new Response("Method Not Allowed", { status: 405 });
|
||||||
|
|
||||||
@ -25,17 +26,29 @@ export default {
|
|||||||
|
|
||||||
const db = drizzle(env.DB, { schema });
|
const db = drizzle(env.DB, { schema });
|
||||||
|
|
||||||
// if (path === "/api/sandbox/create") {
|
if (path === "/api/sandbox/create" && method === "POST") {
|
||||||
// if (method === "POST") {}
|
const initSchema = z.object({
|
||||||
// else return methodNotAllowed;
|
type: z.enum(["react", "node"]),
|
||||||
// } else if (path === "/api/sandbox/init") {
|
name: z.string(),
|
||||||
// const params = url.searchParams;
|
userId: z.string(),
|
||||||
|
});
|
||||||
|
|
||||||
// await db.update(sandbox).set({ init: true }).where(eq(sandbox.id, sandboxId));
|
const body = await request.json();
|
||||||
// } else if (path === "/api/sandbox/files") {
|
const { type, name, userId } = initSchema.parse(body);
|
||||||
|
|
||||||
// } else
|
const sb = await db.insert(sandbox).values({ type, name, userId }).returning().get();
|
||||||
if (path === "/api/user") {
|
|
||||||
|
console.log("sb:", sb);
|
||||||
|
await fetch("https://storage.ishaan1013.workers.dev/api/init", {
|
||||||
|
method: "POST",
|
||||||
|
body: JSON.stringify({ sandboxId: sb.id, type }),
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
});
|
||||||
|
|
||||||
|
return success;
|
||||||
|
|
||||||
|
// } else if (path === "/api/sandbox/files") {
|
||||||
|
} else if (path === "/api/user") {
|
||||||
if (method === "GET") {
|
if (method === "GET") {
|
||||||
const params = url.searchParams;
|
const params = url.searchParams;
|
||||||
|
|
||||||
|
@ -24,8 +24,6 @@ export const sandbox = sqliteTable("sandbox", {
|
|||||||
.unique(),
|
.unique(),
|
||||||
name: text("name").notNull(),
|
name: text("name").notNull(),
|
||||||
type: text("type", { enum: ["react", "node"] }).notNull(),
|
type: text("type", { enum: ["react", "node"] }).notNull(),
|
||||||
bucket: text("bucket"),
|
|
||||||
init: integer("init", { mode: "boolean" }).default(false),
|
|
||||||
userId: text("user_id")
|
userId: text("user_id")
|
||||||
.notNull()
|
.notNull()
|
||||||
.references(() => user.id),
|
.references(() => user.id),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user