Created
June 28, 2018 16:30
-
-
Save midnightcodr/35ca087b80ed2f53a89cac14744c9835 to your computer and use it in GitHub Desktop.
using multiple authentication strategies in hapijs
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
const register = async server => { | |
server.route([ | |
{ | |
path: '/moduleA/info', | |
method: 'GET', | |
handler: request => { | |
return 'this is from moduleA/info' | |
} | |
} | |
]) | |
} | |
exports.plugin = { | |
register, | |
name: 'moduleA', | |
version: '1.0.0' | |
} |
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
const Hapi = require('hapi') | |
const init = async () => { | |
const server = new Hapi.Server({ | |
port: 8080, | |
routes: { | |
auth: { | |
strategies: ['simple', 'alternative'] | |
} | |
} | |
}) | |
await server.register([ | |
{ | |
plugin: require('hapi-auth-basic') | |
}, | |
{ | |
plugin: require('hapi-auth-bearer-token') | |
} | |
]) | |
server.auth.strategy('simple', 'basic', { | |
validate: (request, u, p) => { | |
// use db lookup in real world | |
if (u === 'user1' && p === 'pass1') { | |
return { | |
isValid: true, | |
credentials: { name: 'user1' } | |
} | |
} | |
return { | |
isValid: false, | |
credentials: null | |
} | |
} | |
}) | |
server.auth.strategy('alternative', 'bearer-access-token', { | |
allowQueryToken: true, | |
validate: (request, token, h) => { | |
// use db lookup in real world | |
const isValid = token === 'token1' | |
const credentials = { token } | |
return { isValid, credentials } | |
} | |
}) | |
server.auth.default('simple') | |
// note the following module has to register after the server.auth.* calls | |
await server.register([ | |
{ | |
plugin: require('./moduleA') | |
} | |
]) | |
await server.start() | |
console.log(`server started at ${server.info.uri}`) | |
} | |
init() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment