Skip to content
Snippets Groups Projects
Commit ab1d5694 authored by Nabilsenko's avatar Nabilsenko
Browse files

fix: fixed hash

parent 413a8ecf
No related branches found
No related tags found
1 merge request!10Password haching
...@@ -15,7 +15,7 @@ import { JwtStrategy } from './jwt.strategy'; ...@@ -15,7 +15,7 @@ import { JwtStrategy } from './jwt.strategy';
PassportModule, PassportModule,
JwtModule.register({ JwtModule.register({
secret: jwtConstants.secret, secret: jwtConstants.secret,
signOptions: { expiresIn: '3600s' }, signOptions: { expiresIn: '300s' },
}), }),
], ],
controllers: [LoginController], controllers: [LoginController],
......
...@@ -25,21 +25,23 @@ export class PeopleDao { ...@@ -25,21 +25,23 @@ export class PeopleDao {
private readonly _peopleModel: Model<People>, private readonly _peopleModel: Model<People>,
) {} ) {}
login = async (email: string, password: string): Promise<People | void> => { login = (email: string, password: string): Promise<People | void> =>
try { new Promise(async (resolve, reject) => {
const user = await this._peopleModel.findOne({ email }); this._peopleModel.findOne({ email: email }, async (err, value) => {
if (!user) { if (err) reject(err.message);
throw new NotFoundException('Email or password is incorrect!'); if (!value)
} reject(new NotFoundException('Email or password is incorrect!'));
const isPasswordCorrect = await bcrypt.compare(password, user.passwordHash); const isPasswordCorrect = await bcrypt.compare(
if (!isPasswordCorrect) { password,
throw new NotFoundException('Email or password is incorrect!'); value.passwordHash,
} );
return user; if (!isPasswordCorrect) {
} catch (error) { reject(new NotFoundException('Email or password is incorrect!'));
throw error; }
} value.passwordHash = password
}; resolve(value);
});
});
find = (): Promise<People[]> => find = (): Promise<People[]> =>
new Promise((resolve, reject) => { new Promise((resolve, reject) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment