2023-12-30 05:56:40 -05:00
|
|
|
import { db } from "@/lib/db"
|
2024-01-04 16:57:32 -05:00
|
|
|
import fetchUserWithImpersonation from "@/lib/fetch-user-impersonation";
|
2023-12-30 05:56:40 -05:00
|
|
|
import { NextResponse } from "next/server";
|
|
|
|
|
|
|
|
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 api = await db.twitchConnection.findFirst({
|
|
|
|
where: {
|
|
|
|
userId: user.id
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if (!api) {
|
|
|
|
return new NextResponse("Forbidden", { status: 403 });
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
client_id: process.env.TWITCH_BOT_CLIENT_ID,
|
|
|
|
client_secret: process.env.TWITCH_BOT_CLIENT_SECRET,
|
|
|
|
access_token: api.accessToken,
|
|
|
|
refresh_token: api.refreshToken,
|
|
|
|
broadcaster_id: api.broadcasterId
|
|
|
|
}
|
|
|
|
return NextResponse.json(data);
|
|
|
|
} catch (error) {
|
|
|
|
console.log("[TOKENS/GET]", error);
|
|
|
|
return new NextResponse("Internal Error", { status: 500 });
|
|
|
|
}
|
|
|
|
}
|