62 lines
1.9 KiB
TypeScript
62 lines
1.9 KiB
TypeScript
// import { colors } from "@/lib/colors"
|
|
// import { User } from "@/lib/types"
|
|
import { currentUser } from "@clerk/nextjs"
|
|
// import { Liveblocks } from "@liveblocks/node"
|
|
import { NextRequest } from "next/server"
|
|
|
|
// const API_KEY = process.env.LIVEBLOCKS_SECRET_KEY!
|
|
|
|
// const liveblocks = new Liveblocks({
|
|
// secret: API_KEY!,
|
|
// })
|
|
|
|
export async function POST(request: NextRequest) {
|
|
// Temporarily return unauthorized while Liveblocks is disabled
|
|
return new Response("Liveblocks collaboration temporarily disabled", { status: 503 })
|
|
|
|
// Original implementation commented out:
|
|
// const clerkUser = await currentUser()
|
|
//
|
|
// if (!clerkUser) {
|
|
// return new Response("Unauthorized", { status: 401 })
|
|
// }
|
|
//
|
|
// const res = await fetch(
|
|
// `${process.env.NEXT_PUBLIC_DATABASE_WORKER_URL}/api/user?id=${clerkUser.id}`,
|
|
// {
|
|
// headers: {
|
|
// Authorization: `${process.env.NEXT_PUBLIC_WORKERS_KEY}`,
|
|
// },
|
|
// }
|
|
// )
|
|
// const user = (await res.json()) as User
|
|
//
|
|
// const colorNames = Object.keys(colors)
|
|
// const randomColor = colorNames[
|
|
// Math.floor(Math.random() * colorNames.length)
|
|
// ] as keyof typeof colors
|
|
// const code = colors[randomColor]
|
|
//
|
|
// // Create a session for the current user
|
|
// // userInfo is made available in Liveblocks presence hooks, e.g. useOthers
|
|
// const session = liveblocks.prepareSession(user.id, {
|
|
// userInfo: {
|
|
// name: user.name,
|
|
// email: user.email,
|
|
// color: randomColor,
|
|
// },
|
|
// })
|
|
//
|
|
// // Give the user access to the room
|
|
// user.sandbox.forEach((sandbox) => {
|
|
// session.allow(`${sandbox.id}`, session.FULL_ACCESS)
|
|
// })
|
|
// user.usersToSandboxes.forEach((userToSandbox) => {
|
|
// session.allow(`${userToSandbox.sandboxId}`, session.FULL_ACCESS)
|
|
// })
|
|
//
|
|
// // Authorize the user and return the result
|
|
// const { body, status } = await session.authorize()
|
|
// return new Response(body, { status })
|
|
}
|