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

fix: fixed hash

parent 177272e6
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: '300s' }, signOptions: { expiresIn: '3600s' },
}), }),
], ],
controllers: [LoginController], controllers: [LoginController],
......
...@@ -25,18 +25,21 @@ export class PeopleDao { ...@@ -25,18 +25,21 @@ export class PeopleDao {
private readonly _peopleModel: Model<People>, private readonly _peopleModel: Model<People>,
) {} ) {}
login = (email: string, password: string): Promise<People | void> => login = async (email: string, password: string): Promise<People | void> => {
new Promise((resolve, reject) => { try {
this._peopleModel.findOne( const user = await this._peopleModel.findOne({ email });
{ email: email, passwordHash: password }, if (!user) {
(err, value) => { throw new NotFoundException('Email or password is incorrect!');
if (err) reject(err.message); }
if (!value) const isPasswordCorrect = await bcrypt.compare(password, user.passwordHash);
reject(new NotFoundException('Email or password is incorrect!')); if (!isPasswordCorrect) {
resolve(value); throw new NotFoundException('Email or password is incorrect!');
}, }
); return user;
}); } catch (error) {
throw error;
}
};
find = (): Promise<People[]> => find = (): Promise<People[]> =>
new Promise((resolve, reject) => { new Promise((resolve, reject) => {
...@@ -109,7 +112,7 @@ export class PeopleDao { ...@@ -109,7 +112,7 @@ export class PeopleDao {
let secret = ''; let secret = '';
for (let index = 0; index < length; index++) for (let index = 0; index < length; index++)
secret += alphabet.charAt(randomInt(alphabet.length)); secret += alphabet.charAt(randomInt(alphabet.length));
const saltOrRounds = 10; const saltOrRounds = 10;
const hash = await bcrypt.hash(secret, saltOrRounds); const hash = await bcrypt.hash(secret, saltOrRounds);
console.log(secret); console.log(secret);
......
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