hapi-auth-jwt2
Version:
Hapi.js Authentication Plugin/Scheme using JSON Web Tokens (JWT)
54 lines (45 loc) • 1.36 kB
JavaScript
const Hapi = require('@hapi/hapi');
const secret = 'NeverShareYourSecret';
// for debug options see: https://hapi.dev/tutorials/logging/
const server = new Hapi.server({ debug: false });
const db = {
"123": { allowed: true, "name": "Charlie" },
"321": { allowed: false, "name": "Old Gregg"}
};
// defining our own validate function lets us do something
// useful/custom with the decodedToken before reply(ing)
const validate = async function (decoded, request) {
if (db[decoded.id].allowed) {
return {isValid: true};
}
else {
return {isValid: false};
}
};
const privado = function(req, h) {
return 'worked';
};
const init = async () =>{
try {
await server.register(require('../lib/index.cjs'));
server.auth.strategy('jwt', 'jwt', {
key: secret,
validate,
verifyOptions: { algorithms: [ 'HS256' ] }, // only allow HS256 algorithm
customExtractionFunc: request => {
return request.headers["custom-property"];
},
});
server.route([
{ method: 'POST', path: '/privado', handler: privado, config: { auth: 'jwt' } },
]);
} catch(e) {
throw e;
}
}
init();
process.on('unhandledRejection', function(reason, p){
console.error("Possibly Unhandled Rejection at: Promise ", p, " reason: ", reason);
// application specific logging here
});
module.exports = server;