46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import type { NextRequest } from "next/server";
|
|
import { auth } from "@/app/(auth)/auth";
|
|
import { deleteAllChatsByUserId, getChatsByUserId } from "@/lib/db/queries";
|
|
import { ChatbotError } from "@/lib/errors";
|
|
|
|
export async function GET(request: NextRequest) {
|
|
const { searchParams } = request.nextUrl;
|
|
|
|
const limit = Number.parseInt(searchParams.get("limit") || "10", 10);
|
|
const startingAfter = searchParams.get("starting_after");
|
|
const endingBefore = searchParams.get("ending_before");
|
|
|
|
if (startingAfter && endingBefore) {
|
|
return new ChatbotError(
|
|
"bad_request:api",
|
|
"Only one of starting_after or ending_before can be provided."
|
|
).toResponse();
|
|
}
|
|
|
|
const session = await auth();
|
|
|
|
if (!session?.user) {
|
|
return new ChatbotError("unauthorized:chat").toResponse();
|
|
}
|
|
|
|
const chats = await getChatsByUserId({
|
|
id: session.user.id,
|
|
limit,
|
|
startingAfter,
|
|
endingBefore,
|
|
});
|
|
|
|
return Response.json(chats);
|
|
}
|
|
|
|
export async function DELETE() {
|
|
const session = await auth();
|
|
|
|
if (!session?.user) {
|
|
return new ChatbotError("unauthorized:chat").toResponse();
|
|
}
|
|
|
|
const result = await deleteAllChatsByUserId({ userId: session.user.id });
|
|
|
|
return Response.json(result, { status: 200 });
|
|
}
|