hermes-web/app/api/settings/connections/twitch/route.ts

32 lines
943 B
TypeScript
Raw Normal View History

2023-12-30 05:56:40 -05:00
import { db } from "@/lib/db"
import { NextResponse } from "next/server";
2024-01-04 16:57:32 -05:00
import fetchUserWithImpersonation from "@/lib/fetch-user-impersonation";
2023-12-30 05:56:40 -05:00
export async function GET(req: Request) {
try {
2024-01-04 16:57:32 -05:00
const user = await fetchUserWithImpersonation(req)
2023-12-30 05:56:40 -05:00
if (!user) {
return new NextResponse("Unauthorized", { status: 401 });
}
const { searchParams } = new URL(req.url)
let userId = searchParams.get('id')
if (userId == null) {
if (user != null) {
userId = user.id as string;
}
}
const connection = await db.twitchConnection.findFirst({
where: {
userId: userId as string
}
});
return NextResponse.json(connection);
} catch (error) {
console.log("[CONNECTION/TWITCH]", error);
return new NextResponse("Internal Error", { status: 500 });
}
}