mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
32 lines
875 B
TypeScript
32 lines
875 B
TypeScript
|
|
import { NextResponse } from 'next/server';
|
||
|
|
import { db } from '../../../../db';
|
||
|
|
import { users } from '../../../../drizzle/schema';
|
||
|
|
import bcrypt from 'bcryptjs';
|
||
|
|
import { eq } from 'drizzle-orm';
|
||
|
|
|
||
|
|
export async function POST(request: Request) {
|
||
|
|
try {
|
||
|
|
const { firstName, username, password, email } = await request.json();
|
||
|
|
const hashedPassword = await bcrypt.hash(password, 10);
|
||
|
|
|
||
|
|
const newUser = {
|
||
|
|
firstName,
|
||
|
|
username,
|
||
|
|
email,
|
||
|
|
passwordHash: hashedPassword,
|
||
|
|
} satisfies typeof users.$inferInsert;
|
||
|
|
|
||
|
|
await db.insert(users).values(newUser);
|
||
|
|
|
||
|
|
return NextResponse.json(
|
||
|
|
{ message: 'User created successfully', redirect: '/' },
|
||
|
|
{ status: 201 }
|
||
|
|
);
|
||
|
|
} catch (error) {
|
||
|
|
console.error('Signup error:', error);
|
||
|
|
return NextResponse.json(
|
||
|
|
{ error: 'Failed to create user' },
|
||
|
|
{ status: 500 }
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|