From 413a8ecf6ba44e0f36a10205866dcd618fed8cd0 Mon Sep 17 00:00:00 2001
From: Nabilsenko <96882497+Nabilsenko@users.noreply.github.com>
Date: Thu, 2 Feb 2023 15:52:57 +0100
Subject: [PATCH] fix: fixed hash

---
 src/login/login.module.ts    |  2 +-
 src/people/dao/people.dao.ts | 29 ++++++++++++++++-------------
 2 files changed, 17 insertions(+), 14 deletions(-)

diff --git a/src/login/login.module.ts b/src/login/login.module.ts
index d7ab1bb..c31f30a 100644
--- a/src/login/login.module.ts
+++ b/src/login/login.module.ts
@@ -15,7 +15,7 @@ import { JwtStrategy } from './jwt.strategy';
     PassportModule,
     JwtModule.register({
       secret: jwtConstants.secret,
-      signOptions: { expiresIn: '300s' },
+      signOptions: { expiresIn: '3600s' },
     }),
   ],
   controllers: [LoginController],
diff --git a/src/people/dao/people.dao.ts b/src/people/dao/people.dao.ts
index 477ce5c..65d909a 100644
--- a/src/people/dao/people.dao.ts
+++ b/src/people/dao/people.dao.ts
@@ -25,18 +25,21 @@ export class PeopleDao {
     private readonly _peopleModel: Model<People>,
   ) {}
 
-  login = (email: string, password: string): Promise<People | void> =>
-    new Promise((resolve, reject) => {
-      this._peopleModel.findOne(
-        { email: email, passwordHash: password },
-        (err, value) => {
-          if (err) reject(err.message);
-          if (!value)
-            reject(new NotFoundException('Email or password is incorrect!'));
-          resolve(value);
-        },
-      );
-    });
+  login = async (email: string, password: string): Promise<People | void> => {
+    try {
+      const user = await this._peopleModel.findOne({ email });
+      if (!user) {
+        throw new NotFoundException('Email or password is incorrect!');
+      }
+      const isPasswordCorrect = await bcrypt.compare(password, user.passwordHash);
+      if (!isPasswordCorrect) {
+        throw new NotFoundException('Email or password is incorrect!');
+      }
+      return user;
+    } catch (error) {
+      throw error;
+    }
+  };
 
   find = (): Promise<People[]> =>
     new Promise((resolve, reject) => {
@@ -109,7 +112,7 @@ export class PeopleDao {
     let secret = '';
     for (let index = 0; index < length; index++)
       secret += alphabet.charAt(randomInt(alphabet.length));
-    
+
     const saltOrRounds = 10;
     const hash = await bcrypt.hash(secret, saltOrRounds);
     console.log(secret);
-- 
GitLab