chatbot-template/app/(chat)/api/history/route.ts

35 lines
938 B
TypeScript
Raw Normal View History

import { auth } from '@/app/(auth)/auth';
import type { NextRequest } from 'next/server';
import { getChatsByUserId } from '@/lib/db/queries';
import { ChatSDKError } from '@/lib/errors';
2024-10-11 18:00:22 +05:30
2025-04-03 00:28:36 -07:00
export async function GET(request: NextRequest) {
const { searchParams } = request.nextUrl;
const limit = Number.parseInt(searchParams.get('limit') || '10');
const startingAfter = searchParams.get('starting_after');
const endingBefore = searchParams.get('ending_before');
2025-04-03 00:28:36 -07:00
if (startingAfter && endingBefore) {
2025-05-13 19:01:28 -07:00
return new ChatSDKError(
'bad_request:api',
'Only one of starting_after or ending_before can be provided.',
2025-05-13 19:01:28 -07:00
).toResponse();
2025-04-03 00:28:36 -07:00
}
2024-10-11 18:00:22 +05:30
const session = await auth();
2025-05-13 19:01:28 -07:00
if (!session?.user) {
return new ChatSDKError('unauthorized:chat').toResponse();
2024-10-11 18:00:22 +05:30
}
2025-05-13 19:01:28 -07:00
const chats = await getChatsByUserId({
id: session.user.id,
limit,
startingAfter,
endingBefore,
});
2025-04-03 00:28:36 -07:00
2025-05-13 19:01:28 -07:00
return Response.json(chats);
2024-10-11 18:00:22 +05:30
}