Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
planner-team-one
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
21
Issues
21
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Евгений Положенцев
planner-team-one
Commits
af3c33a7
Commit
af3c33a7
authored
Dec 20, 2022
by
Ibadullina Inabat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
доработка восстановления пароля
parent
a495d104
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
11 deletions
+16
-11
passwordRecovery.ts
planner-api/src/routers/passwordRecovery.ts
+7
-4
App.js
planner-front/src/App.js
+1
-0
ForgottenPassword.js
...ont/src/containers/ForgottenPassword/ForgottenPassword.js
+3
-3
Register.js
planner-front/src/containers/Register/Register.js
+1
-1
usersActions.js
planner-front/src/store/actions/usersActions.js
+4
-3
No files found.
planner-api/src/routers/passwordRecovery.ts
View file @
af3c33a7
...
...
@@ -14,6 +14,7 @@ const dataSource = myDataSource;
/**Make requiest to init recovery process */
router
.
post
(
'/'
,
async
(
req
:
Request
,
res
:
Response
):
Promise
<
void
|
Response
>=>
{
const
{
email
}
=
req
.
body
console
.
log
(
"emeil"
,
email
)
const
user
=
await
dataSource
.
getRepository
(
User
)
.
findOne
({
...
...
@@ -21,6 +22,7 @@ router.post ('/', async (req:Request, res:Response):Promise<void |Response>=>{
email
:
email
}
})
console
.
log
(
'user '
,
user
)
if
(
!
user
)
return
res
.
status
(
404
).
send
({
message
:
'user not found'
})
const
token
=
nanoid
();
try
{
...
...
@@ -28,6 +30,7 @@ router.post ('/', async (req:Request, res:Response):Promise<void |Response>=>{
passwordRecovery
.
user
=
user
;
passwordRecovery
.
token
=
token
;
await
passwordRecovery
.
save
()
console
.
log
(
'passwordRecover '
,
passwordRecovery
)
const
url
=
`
${
FRONTEND_URL
}
/reset-password/
${
token
}
`
;
await
transporter
.
sendMail
({
from
:
"planner45@yandex.com"
,
...
...
@@ -74,7 +77,7 @@ router.patch('/:id/change-password', async (req: Request, res: Response):Promise
.
findOneBy
({
id
:
req
.
params
.
id
})
if
(
!
user
)
return
res
.
status
(
404
).
send
({
Message
:
'user not found'
})
const
salt
=
await
bcrypt
.
genSalt
(
SALT_WORK_FACTOR
);
le
t
newPassword
:
string
=
await
bcrypt
.
hash
(
req
.
body
.
password
,
salt
);
cons
t
newPassword
:
string
=
await
bcrypt
.
hash
(
req
.
body
.
password
,
salt
);
user
.
password
=
newPassword
try
{
await
user
.
save
()
...
...
planner-front/src/App.js
View file @
af3c33a7
...
...
@@ -119,6 +119,7 @@ const App = () => {
<
Route
path
=
{
"/sign-in"
}
element
=
{
<
Login
/>
}
/
>
<
Route
path
=
{
"/forgottenpassword"
}
element
=
{
<
ForgottenPassword
/>
}
/
>
<
Route
path
=
{
"/reset-password"
}
element
=
{
<
div
>
Reset
<
/div>} /
>
<
Route
path
=
'*'
element
=
{
<
h1
>
404
<
/h1>} /
>
<
/Route
>
<
/Routes
>
...
...
planner-front/src/containers/ForgottenPassword/ForgottenPassword.js
View file @
af3c33a7
...
...
@@ -2,7 +2,7 @@ import { useState } from "react";
import
{
useDispatch
,
useSelector
}
from
"react-redux"
;
import
{
useNavigate
}
from
"react-router-dom"
;
import
Loader
from
"../../components/UI/Loader/Loader"
;
import
{
loginUser
}
from
"../../store/actions/usersActions"
;
import
{
forgottenPassword
,
loginUser
}
from
"../../store/actions/usersActions"
;
import
PersonIcon
from
'@mui/icons-material/Person'
;
import
styled
from
"@emotion/styled"
;
import
{
Alert
,
Avatar
,
Container
,
Typography
}
from
"@mui/material"
;
...
...
@@ -24,7 +24,7 @@ const StyledTitle = styled(Typography)`
const
ForgottenPassword
=
()
=>
{
const
[
state
,
setState
]
=
useState
({
email
:
''
,
redirectUrl
:
'http://localhost:3000/passwordreset'
//
redirectUrl: 'http://localhost:3000/passwordreset'
});
...
...
@@ -45,7 +45,7 @@ const ForgottenPassword = () => {
const
submitHandler
=
async
(
e
)
=>
{
e
.
preventDefault
();
await
dispatch
(
loginUser
(
state
,
navigate
));
await
dispatch
(
forgottenPassword
(
state
,
navigate
));
};
...
...
planner-front/src/containers/Register/Register.js
View file @
af3c33a7
...
...
@@ -65,7 +65,7 @@ const Register = () => {
formData
.
append
(
key
,
state
[
key
]);
console
.
log
(
"key "
+
key
+
"state "
+
state
[
key
])
})
if
(
state
[
"password"
]
===
state
[
"confirmPassword"
]
)
{
if
(
state
.
password
&&
state
.
password
===
state
.
confirmPassword
)
{
await
dispatch
(
registerUser
(
formData
,
navigate
));
}
else
{
alert
(
"Пароли не совпадают"
)
...
...
planner-front/src/store/actions/usersActions.js
View file @
af3c33a7
...
...
@@ -85,14 +85,15 @@ export const forgottenPassword = (userData, navigate) => {
return
async
(
dispatch
)
=>
{
try
{
console
.
log
(
'forgottenPassword userData '
,
userData
)
const
response
=
await
axios
.
post
(
"
users/requestPasswordReset
"
,
userData
);
const
response
=
await
axios
.
post
(
"
/password-recovery
"
,
userData
);
// if (userData.email === response.data.email) {
// }
dispatch
(
loginUserSuccess
(
response
.
data
));
console
.
log
(
'response.data '
,
response
.
data
)
// dispatch(loginUserSuccess(response.data));
navigate
(
"/"
)
}
catch
(
e
)
{
dispatch
(
loginUserFailure
(
e
?.
response
?.
data
?.
err
)
)
console
.
log
(
"user not found"
)
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment