blob: cab0b74ec4ec03f6befc27b8863002a45bdc3327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// app/api/notifications/route.ts
import { NextRequest, NextResponse } from 'next/server';
import { getServerSession } from 'next-auth';
import { getUserNotifications,getUnreadNotificationCount } from '@/lib/notification/service';
import { authOptions } from "@/app/api/auth/[...nextauth]/route"
export async function GET(request: NextRequest) {
try {
const session = await getServerSession(authOptions);
if (!session?.user?.id) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
}
const { searchParams } = new URL(request.url);
const limit = parseInt(searchParams.get('limit') || '20');
const offset = parseInt(searchParams.get('offset') || '0');
const unreadOnly = searchParams.get('unreadOnly') === 'true';
const [notifications, unreadCount] = await Promise.all([
getUserNotifications(session.user.id, { limit, offset, unreadOnly }),
getUnreadNotificationCount(session.user.id)
]);
return NextResponse.json({
notifications,
unreadCount,
hasMore: notifications.length === limit
});
} catch (error) {
console.error('Error fetching notifications:', error);
return NextResponse.json(
{ error: 'Failed to fetch notifications' },
{ status: 500 }
);
}
}
|