Picsur/backend/src/routes/auth/local.strategy.ts
2022-02-21 23:26:40 +01:00

25 lines
751 B
TypeScript

import { Strategy } from 'passport-local';
import { PassportStrategy } from '@nestjs/passport';
import { Injectable, UnauthorizedException } from '@nestjs/common';
import { AuthService } from './auth.service';
import { AsyncFailable, HasFailed } from 'src/types/failable';
import { UserEntity } from 'src/collections/userdb/user.entity';
@Injectable()
export class LocalStrategy extends PassportStrategy(Strategy) {
constructor(private authService: AuthService) {
super();
}
async validate(
username: string,
password: string,
): AsyncFailable<UserEntity> {
const user = await this.authService.authenticate(username, password);
if (HasFailed(user)) {
throw new UnauthorizedException();
}
return user;
}
}