Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
InternshipManager-Back
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GUVEN Kemal
InternshipManager-Back
Commits
ab1d5694
Commit
ab1d5694
authored
2 years ago
by
Nabilsenko
Browse files
Options
Downloads
Patches
Plain Diff
fix: fixed hash
parent
413a8ecf
No related branches found
No related tags found
1 merge request
!10
Password haching
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/login/login.module.ts
+1
-1
1 addition, 1 deletion
src/login/login.module.ts
src/people/dao/people.dao.ts
+17
-15
17 additions, 15 deletions
src/people/dao/people.dao.ts
with
18 additions
and
16 deletions
src/login/login.module.ts
+
1
−
1
View file @
ab1d5694
...
...
@@ -15,7 +15,7 @@ import { JwtStrategy } from './jwt.strategy';
PassportModule
,
JwtModule
.
register
({
secret
:
jwtConstants
.
secret
,
signOptions
:
{
expiresIn
:
'
3
6
00s
'
},
signOptions
:
{
expiresIn
:
'
300s
'
},
}),
],
controllers
:
[
LoginController
],
...
...
This diff is collapsed.
Click to expand it.
src/people/dao/people.dao.ts
+
17
−
15
View file @
ab1d5694
...
...
@@ -25,21 +25,23 @@ export class PeopleDao {
private
readonly
_peopleModel
:
Model
<
People
>
,
)
{}
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
;
}
};
login
=
(
email
:
string
,
password
:
string
):
Promise
<
People
|
void
>
=>
new
Promise
(
async
(
resolve
,
reject
)
=>
{
this
.
_peopleModel
.
findOne
({
email
:
email
},
async
(
err
,
value
)
=>
{
if
(
err
)
reject
(
err
.
message
);
if
(
!
value
)
reject
(
new
NotFoundException
(
'
Email or password is incorrect!
'
));
const
isPasswordCorrect
=
await
bcrypt
.
compare
(
password
,
value
.
passwordHash
,
);
if
(
!
isPasswordCorrect
)
{
reject
(
new
NotFoundException
(
'
Email or password is incorrect!
'
));
}
value
.
passwordHash
=
password
resolve
(
value
);
});
});
find
=
():
Promise
<
People
[]
>
=>
new
Promise
((
resolve
,
reject
)
=>
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment