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 {
|
2024-08-14 16:33:40 -04:00
|
|
|
const user = await fetchUser(req)
|
|
|
|
if (!user) return new NextResponse("Internal Error", { 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);
|
|
|
|
return new NextResponse("Internal Error", { status: 500 });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
return new NextResponse("Internal Error", { status: 401 })
|
|
|
|
}
|
2024-08-14 16:33:40 -04:00
|
|
|
|
2023-12-30 05:56:40 -05:00
|
|
|
const exist = await db.user.findFirst({
|
2024-08-14 16:33:40 -04:00
|
|
|
where: {
|
|
|
|
name: user
|
|
|
|
}
|
2023-12-30 05:56:40 -05:00
|
|
|
});
|
2024-08-14 16:33:40 -04:00
|
|
|
|
2023-12-30 05:56:40 -05:00
|
|
|
if (exist) {
|
2023-12-31 05:41:55 -05:00
|
|
|
return NextResponse.json({
|
2024-08-14 16:33:40 -04:00
|
|
|
id: exist.id,
|
|
|
|
username: exist.name
|
2023-12-31 05:41:55 -05:00
|
|
|
});
|
2023-12-30 05:56:40 -05:00
|
|
|
}
|
2024-08-14 16:33:40 -04:00
|
|
|
|
2023-12-30 05:56:40 -05:00
|
|
|
const newUser = await db.user.create({
|
2024-08-14 16:33:40 -04:00
|
|
|
data: {
|
|
|
|
name: user,
|
|
|
|
}
|
2023-12-30 05:56:40 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
return NextResponse.json({
|
2024-08-14 16:33:40 -04:00
|
|
|
id: newUser.id,
|
|
|
|
username: newUser.name
|
2023-12-30 05:56:40 -05:00
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
console.log("[ACCOUNT]", error);
|
|
|
|
return new NextResponse("Internal Error", { status: 500 });
|
|
|
|
}
|
|
|
|
}
|