hermes-web/app/api/account/route.ts

59 lines
1.7 KiB
TypeScript
Raw Permalink Normal View History

2023-12-30 05:56:40 -05:00
import { db } from "@/lib/db"
import { NextResponse } from "next/server";
2024-01-02 02:26:20 -05:00
import { auth } from "@/auth";
2024-01-04 16:57:32 -05:00
import fetchUser from "@/lib/fetch-user";
2023-12-30 05:56:40 -05:00
export async function GET(req: Request) {
try {
const user = await fetchUser(req)
2024-08-25 17:35:46 -04:00
if (!user) return NextResponse.json({ message: 'Unauthorized.', error: null, value: null }, { status: 401 })
const account = await db.account.findFirst({
where: {
userId: user.id
}
});
return NextResponse.json({ ... user, broadcasterId: account?.providerAccountId })
2023-12-30 05:56:40 -05:00
} catch (error) {
console.log("[ACCOUNT]", error);
2024-08-25 17:35:46 -04:00
return NextResponse.json({ message: 'Something went wrong', error: error, value: null }, { status: 500 })
2023-12-30 05:56:40 -05:00
}
}
export async function POST(req: Request) {
try {
2024-01-02 02:26:20 -05:00
const session = await auth()
2023-12-30 05:56:40 -05:00
const user = session?.user?.name
if (!user) {
2024-08-25 17:35:46 -04:00
return NextResponse.json({ message: 'Unauthorized.', error: null, value: null }, { status: 401 })
2023-12-30 05:56:40 -05:00
}
2023-12-30 05:56:40 -05:00
const exist = await db.user.findFirst({
where: {
name: user
}
2023-12-30 05:56:40 -05:00
});
2023-12-30 05:56:40 -05:00
if (exist) {
return NextResponse.json({
id: exist.id,
username: exist.name
});
2023-12-30 05:56:40 -05:00
}
2023-12-30 05:56:40 -05:00
const newUser = await db.user.create({
data: {
name: user,
}
2023-12-30 05:56:40 -05:00
});
return NextResponse.json({
id: newUser.id,
username: newUser.name
2023-12-30 05:56:40 -05:00
});
} catch (error) {
2024-08-25 17:35:46 -04:00
return NextResponse.json({ message: 'Something went wrong', error: error, value: null }, { status: 500 })
2023-12-30 05:56:40 -05:00
}
}