generated from plutack/nextjsauth-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.ts
28 lines (26 loc) · 833 Bytes
/
auth.ts
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
import { decode } from "next-auth/jwt";
import { auth } from "@/auth";
import logger from "@/lib/logger";
const log = logger.child({ util: "Auth" });
export const getUserIdFromRequest = async (request: Request) => {
log.info("Function called");
const authHeader = request.headers.get("Authorization");
if (authHeader && authHeader.startsWith("Bearer ")) {
const token = authHeader.split(" ")[1];
try {
const decodedToken = await decode({
token,
secret: process.env.AUTH_SECRET!,
salt: "authjs.session-token",
});
if (decodedToken) {
return decodedToken.sub;
}
} catch (error) {
log.error("Token verification failed:", error);
}
}
// If no valid Bearer token, fall back to session
const session = await auth();
return session?.user?.id;
};