Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fahrtenbuch
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor 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
SWP WS21_22 - Fahrtenbuch
Team Einhorn
fahrtenbuch
Commits
97731497
Commit
97731497
authored
3 years ago
by
Leander Tolksdorf
Browse files
Options
Downloads
Patches
Plain Diff
create validatetoken middleware
parent
98197adc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
server/src/middleware/validateToken.ts
+33
-0
33 additions, 0 deletions
server/src/middleware/validateToken.ts
with
33 additions
and
0 deletions
server/src/middleware/validateToken.ts
0 → 100644
+
33
−
0
View file @
97731497
import
{
NextFunction
,
Request
,
Response
}
from
"
express
"
;
import
*
as
jwt
from
"
jsonwebtoken
"
;
function
validateToken
(
req
:
Request
,
res
:
Response
,
next
:
NextFunction
)
{
const
token
=
req
.
cookies
.
token
;
//Get the jwt token from the head
const
jwtSecret
=
process
.
env
.
JWT_SECRET
;
//Try to validate the token and get data
try
{
const
jwtPayload
=
<
any
>
jwt
.
verify
(
token
,
jwtSecret
);
console
.
log
(
jwtPayload
);
res
.
locals
.
user
=
jwtPayload
;
next
();
}
catch
(
error
)
{
//If token is not valid, respond with 401 (unauthorized)
res
.
status
(
401
).
json
({
success
:
false
,
error
:
"
InvalidToken
"
});
return
;
}
// //The token is valid for 1 hour
// //We want to send a new token on every request
// const { email, role } = jwtPayload;
// const newToken = jwt.sign({ email, role }, jwtSecret, {
// expiresIn: "1h",
// });
// res.setHeader("token", newToken);
//Call the next middleware or controller
// next();
}
export
default
validateToken
;
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