main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
941 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { NextRequest, NextResponse } from 'next/server';
|
---|
| 2 | import { auth } from 'src/lib/firebase-admin';
|
---|
| 3 |
|
---|
| 4 | export interface AuthenticatedRequest extends NextRequest {
|
---|
| 5 | userId: string;
|
---|
| 6 | }
|
---|
| 7 |
|
---|
| 8 | export async function authenticateRequest(
|
---|
| 9 | request: NextRequest
|
---|
| 10 | ): Promise<{ userId: string } | NextResponse> {
|
---|
| 11 | // Get the authorization header
|
---|
| 12 | const authHeader = request.headers.get('Authorization');
|
---|
| 13 | if (!authHeader?.startsWith('Bearer ')) {
|
---|
| 14 | return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | // Extract the token
|
---|
| 18 | const token = authHeader.split('Bearer ')[1];
|
---|
| 19 |
|
---|
| 20 | try {
|
---|
| 21 | // Verify the token
|
---|
| 22 | const decodedToken = await auth.verifyIdToken(token);
|
---|
| 23 | const userId = decodedToken.uid;
|
---|
| 24 |
|
---|
| 25 | if (!userId) {
|
---|
| 26 | return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 | return { userId };
|
---|
| 30 | } catch (error) {
|
---|
| 31 | return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
---|
| 32 | }
|
---|
| 33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.