-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2365 from shubhambansaltarento/master-new
Update jwtHelper in master and readme file
- Loading branch information
Showing
2 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
const jwt = require('jsonwebtoken'); | ||
|
||
/** | ||
* | ||
* @param accessToken | ||
* @returns {*} | ||
*/ | ||
const getUserIdFromToken = (accessToken) => { | ||
var jwtPayload = jwt.decode(accessToken); | ||
if (jwtPayload && jwtPayload.sub) { | ||
var splittedSub = jwtPayload.sub.split(':'); | ||
return splittedSub[splittedSub.length - 1] | ||
} else { | ||
return null; | ||
} | ||
}; | ||
|
||
/** | ||
* JWT token to decode | ||
* @param token | ||
* @returns {null|{payload, signature, header}} | ||
*/ | ||
const decodeToken = (token) => { | ||
return jwt.decode(token); | ||
}; | ||
|
||
module.exports = {getUserIdFromToken, decodeToken}; |