import { ExtractJwt, Strategy } from 'passport-jwt'; import { Injectable, UnauthorizedException } from '@nestjs/common'; import { PassportStrategy } from '@nestjs/passport'; import { ConfigService } from '@nestjs/config'; import { JwtRefreshPayloadType } from './types/jwt-refresh-payload.type'; import { OrNeverType } from '../../utils/types/or-never.type'; import { AllConfigType } from 'src/config/config.type'; @Injectable() export class JwtRefreshStrategy extends PassportStrategy( Strategy, 'jwt-refresh', ) { constructor(configService: ConfigService) { super({ jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(), secretOrKey: configService.get('auth.refreshSecret', { infer: true }), }); } public validate( payload: JwtRefreshPayloadType, ): OrNeverType { if (!payload.sessionId) { throw new UnauthorizedException(); } return payload; } }