@dynamic-labs/passport-dynamic
v0.0.15
Published
A [Passport.js](https://www.passportjs.org/) strategy for authenticating with dynamic.xyz
Downloads
1,859
Keywords
Readme
Passport README
A Passport.js strategy for authenticating with dynamic.xyz
Installation
npm install --save @dynamic-labs/passport-dynamic
yarn add @dynamic-labs/passport-dynamic
Usage
The token has to be sent as part of the authorization header with the ‘bearer’ scheme (e.g Authorization: Bearer ${token}
)
How to access the JWT token provided by Dynamic?
When a user is authenticated, the JWT is available through the authToken
method of the Dynamic SDK
Configuration & setup
new DynamicStrategy(options, verify);
Options
publicKey
The publicKey from Dynamic used by passport to validate the authenticity of the JWT and ensure that it has not been tampered with. It needs to be a string with no whitespaces can be parsed into a valid PEM, e.g:
const publicKey = `-----BEGIN RSA PUBLIC KEY-----\nMIIBCgKCAQEArplf0W2SNo6PR9xXv7HgYyuoQ9fedrP/flHatSgV2RbySQMz0G6DoiqBwe/woq7X0EyfLJwS9vcvgSks3mGRndfVwyKM5dTTJn0TGos2QLy5bHcjuIJtu1CAv9xcge3FpDEIi7fzo+Lt5eDA92e/TvhSAUS7CZhLMgjPau8Lr8UB+pg0NcGrQpRV7FikZ3ner7uZy6JpxKBS+oOCd7EZz+gOdCJWTl6FsEPHU0R2ei0FL+ng5eDECr0VCfNysnicY87OHM5hzWKt/nItv0Ai+9efztpwBSzWlOUWyMCC3HR4b+MZvzHP9z61OKGuOrlhC5qqmaXuIv8GRuapfiCH6QIDAQAB\n-----END RSA PUBLIC KEY-----`;
Verify
verify
is a function with the parameters verify(payload, done)
payload
is an object literal containing the decoded tokendone
is a passport callback accepting arguments done(error, user, info)
Example:
passport.use(new DynamicStrategy(options, (payload, done) => {
try {
const user = { id: 1, email: "[email protected]" }
if (user) {
return done(null, user)
} else {
return done(null, false)
}
} catch (err) {
return done(err, false);
}
}
Verify Scopes
It's important to note that a JWT token can include scopes. The most common scope is when a token requires additional authentication such as MFA. In this event we may not want to fully verify, and ruturn false if the token has the requiresAdditionalAuth
scope.
Example:
passport.use(new DynamicStrategy(options, (payload, done) => {
try {
const user = {
id: payload.sub,
scopes: payload.scopes
}
if (user && !user.scopes.includes('requiresAdditionalAuth')) {
return done(null, user)
} else {
return done(null, false)
}
} catch (err) {
return done(err, false);
}
}
Protecting an endpoint with the strategy
First define a function that calls passport.authenticate
with the strategy name (in our case, dynamicStrategy
)
const isAuthorized = () => (req: any, res: any, next: any) => {
try {
return passport.authenticate('dynamicStrategy', {
session: false,
failWithError: true,
})(req, res, next);
} catch (err) {
return next(err);
}
};
Then, add the function to the route you want to protect:
app.post('/login', isAuthorized(), function (req, res) {
res.redirect('/');
});
Passport can support multiple strategies at once so it's possible to define a variation of isAuthorized
that takes an array of strategy names instead. When multiple strategies are provided, they will be evaluated in the order in which they are provided, i.e if ['dynamicStrategy', 'otherStrategy']
is provided, otherStrategy
will only be called if dynamicStrategy
fails
const isAuthorized = () => (req: any, res: any, next: any) => {
try {
return passport.authenticate(['dynamicStrategy', 'otherStrategy'], {
session: false,
failWithError: true,
})(req, res, next);
} catch (err) {
return next(err);
}
};
Tests
npm test
Contributing
Coming soon