Last active
November 18, 2024 18:17
nuxt server methods auth middleware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// server/middleware/auth.ts | |
import { DecodedIdToken } from 'firebase-admin/lib/auth/token-verifier' | |
import { createAuth } from '@/libs/firebase/firebaseAdmin' | |
export interface AuthContext { | |
isAuthenticated: boolean | |
user: DecodedIdToken | null | |
} | |
export default defineEventHandler(async (event) => { | |
const config = useRuntimeConfig() | |
const url = getRequestURL(event) | |
const isApiCall = url.pathname.includes('/api') | |
if (!isApiCall) { | |
return | |
} | |
const contextAuth: AuthContext = { | |
isAuthenticated: false, | |
user: null, | |
} | |
const authorization = event.node.req.headers.authorization | |
if (!authorization) { | |
event.context.auth = contextAuth | |
return | |
} | |
const [, token] = authorization.split(' ') | |
const auth = createAuth({ | |
projectId: config.public.firebaseAdminProjectId, | |
clientEmail: config.public.firebaseAdminClientEmail, | |
privateKey: config.public.firebaseAdminPrivateKey, | |
}) | |
try { | |
const checkRevoked = false | |
const decoded = await auth.verifyIdToken(token, checkRevoked) | |
contextAuth.isAuthenticated = true | |
contextAuth.user = decoded as DecodedIdToken | |
event.context.auth = contextAuth | |
} catch (e) { | |
console.log('* auth error', e) | |
event.context.auth = contextAuth | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment