fix: don't throw error while parsing auth tokens

This commit is contained in:
Philipinho 2024-12-12 14:29:25 +00:00
parent 1302b1b602
commit f48d6dd60b

View File

@ -1,6 +1,7 @@
import {
BadRequestException,
Injectable,
Logger,
UnauthorizedException,
} from '@nestjs/common';
import { PassportStrategy } from '@nestjs/passport';
@ -13,6 +14,8 @@ import { FastifyRequest } from 'fastify';
@Injectable()
export class JwtStrategy extends PassportStrategy(Strategy, 'jwt') {
private logger = new Logger('JwtStrategy');
constructor(
private userRepo: UserRepo,
private workspaceRepo: WorkspaceRepo,
@ -25,7 +28,7 @@ export class JwtStrategy extends PassportStrategy(Strategy, 'jwt') {
try {
accessToken = JSON.parse(req.cookies?.authTokens)?.accessToken;
} catch {
throw new BadRequestException('Failed to parse access token');
this.logger.debug('Failed to parse access token');
}
return accessToken || this.extractTokenFromHeader(req);