fix(ai-service): add JwtStrategy — resolves Unknown authentication strategy jwt error

This commit is contained in:
hailin 2026-03-05 17:35:39 -08:00
parent 8f3d0f5d17
commit 8fdc4e9365
2 changed files with 24 additions and 0 deletions

View File

@ -24,6 +24,9 @@ import { AiPricingService } from './application/services/ai-pricing.service';
import { AiAnomalyService } from './application/services/ai-anomaly.service';
import { AdminAgentService } from './application/services/admin-agent.service';
// Infrastructure — auth
import { JwtStrategy } from './infrastructure/strategies/jwt.strategy';
// Interface — HTTP controllers
import { AiController } from './interface/http/controllers/ai.controller';
import { AdminAgentController } from './interface/http/controllers/admin-agent.controller';
@ -46,6 +49,9 @@ import { AdminAgentController } from './interface/http/controllers/admin-agent.c
{ provide: AI_AGENT_CLIENT, useClass: AiAgentClient },
{ provide: CONVERSATION_REPOSITORY, useClass: ConversationRepository },
// Auth
JwtStrategy,
// Application services
AiChatService,
AiCreditService,

View File

@ -0,0 +1,18 @@
import { Injectable } from '@nestjs/common';
import { PassportStrategy } from '@nestjs/passport';
import { ExtractJwt, Strategy } from 'passport-jwt';
@Injectable()
export class JwtStrategy extends PassportStrategy(Strategy, 'jwt') {
constructor() {
super({
jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(),
ignoreExpiration: false,
secretOrKey: process.env.JWT_ACCESS_SECRET || 'dev-access-secret',
});
}
async validate(payload: { sub: string; role: string; kycLevel: number; type: string }) {
return { id: payload.sub, role: payload.role, kycLevel: payload.kycLevel };
}
}