oa_based/src/modules/auth/strategies/local.strategy.ts

22 lines
646 B
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { Injectable } from '@nestjs/common';
import { PassportStrategy } from '@nestjs/passport';
import { Strategy } from 'passport-local';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { AuthStrategy } from '../auth.constant';
import { AuthService } from '../auth.service';
2024-02-28 08:32:35 +08:00
@Injectable()
2024-02-28 17:02:46 +08:00
export class LocalStrategy extends PassportStrategy(Strategy, AuthStrategy.LOCAL) {
2024-02-28 08:32:35 +08:00
constructor(private authService: AuthService) {
super({
usernameField: 'credential',
passwordField: 'password',
2024-02-28 17:02:46 +08:00
});
2024-02-28 08:32:35 +08:00
}
async validate(username: string, password: string): Promise<any> {
2024-02-28 17:02:46 +08:00
const user = await this.authService.validateUser(username, password);
return user;
2024-02-28 08:32:35 +08:00
}
}