Changeset 057453c for src/lib/auth-middleware.ts
- Timestamp:
- 02/26/25 10:05:32 (5 weeks ago)
- Branches:
- main
- Children:
- 299af01
- Parents:
- 5d6f37a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lib/auth-middleware.ts
r5d6f37a r057453c 4 4 export interface AuthenticatedRequest extends NextRequest { 5 5 userId: string; 6 tenantId: string; 6 7 } 7 8 8 9 export async function authenticateRequest( 9 10 request: NextRequest 10 ): Promise<{ userId: string } | NextResponse> {11 ): Promise<{ userId: string; tenantId: string } | NextResponse> { 11 12 // Get the authorization header 12 13 const authHeader = request.headers.get('Authorization'); … … 22 23 const decodedToken = await auth.verifyIdToken(token); 23 24 const userId = decodedToken.uid; 25 const tenantId = decodedToken.customClaims?.tenantId || 'cm7bwtjy80000pb0m5qenk8am'; 24 26 25 if (!userId ) {27 if (!userId || !tenantId) { 26 28 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 27 29 } 28 30 29 return { userId };31 return { userId, tenantId }; 30 32 } catch (error) { 31 33 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
Note:
See TracChangeset
for help on using the changeset viewer.