JSON Web Token based Authentication powered by Keycloak
npm install hapi-auth-keycloak#### JSON Web Token based Authentication powered by Keycloak
1. Introduction
2. Installation
3. Usage
4. API
5. Example
6. Migration Guides
7. Developing and Testing
8. Contribution
---
hapi-auth-keycloak is a plugin for [hapi.js][hapijs] which enables to protect your endpoints in a smart but professional manner using [Keycloak][keycloak] as authentication service. It is inspired by the related [express.js middleware][keycloak-node]. The plugin validates the passed [Bearer token][bearer] offline with a provided public key or online with help of the [Keycloak][keycloak] server. Optionally, the successfully validated tokens and the related user data get cached using [catbox][catbox]. The caching enables a fast processing even though the user data don't get changed until the token expires. Furthermore it is possible to enable an api key interceptor proxying the request to an api key service which returns the temporary bearer token. It plays well with the [hapi.js][hapijs]-integrated [authentication/authorization feature][hapi-route-options]. Besides the authentication strategy it is possible to validate tokens by yourself, e.g. to authenticate incoming websocket or queue messages, and to register/use multiple strategies via jscheffner/hapi-auth-any.
The modules [standard][standardjs] and [ava][avajs] are used to grant a high quality implementation.
#### Compatibility
| Major Release | hapi.js version | node version |
| ------------- | ------------------------------------------------- | ------------ |
| v5 | >=18.4 @hapi/hapi | >=12 |
| v4.1 | >=18.3.1 @hapi/hapi | >=8 |
| v4 | >=18 hapi | >=8 |
| v3 | >=17 hapi | >=8 |
| v2 | >=12 hapi | >=6 |
For installation use [npm][npm]:
```
$ npm install --save hapi-auth-keycloak
or clone the repository:
``
$ git clone https://github.com/felixheck/hapi-auth-keycloak
#### Import
First you have to import the module:
`js`
const authKeycloak = require("hapi-auth-keycloak");
#### Create hapi server
Afterwards create your hapi server if not already done:
`js
const hapi = require("@hapi/hapi");
const server = hapi.server({ port: 8888 });
`
#### Registration
Finally register the plugin, set the correct options and the authentication strategy:
`js
await server.register({ plugin: authKeycloak });
server.auth.strategy("keycloak-jwt", "keycloak-jwt", {
realmUrl: "https://localhost:8080/auth/realms/testme",
clientId: "foobar",
minTimeBetweenJwksRequests: 15,
cache: true,
userInfo: ["name", "email"],
});
`
#### Route Configuration & Scope
Define your routes and add keycloak-jwt when necessary. It is possible to define the necessary scope like documented by the [express.js middleware][keycloak-node]:
- To secure an endpoint with a resource's role , use the role name (e.g. editor).other-resource:creator
- To secure an endpoint with another resource's role, prefix the role name (e.g. )realm:
- To secure an endpoint with a realm role, prefix the role name with (e.g. realm:admin).scope:
- To secure an endpoint with [fine-grained scope definitions][rpt], prefix the Keycloak scopes with (e.g. scope:foo.READ).clientscope:
- To secure an endpoint with a [OAuth2 client scope][clientscope], prefix the client scope with (e.g. clientscope:profile).
`js`
server.route([
{
method: "GET",
path: "/",
config: {
description: "protected endpoint",
auth: {
strategies: ["keycloak-jwt"],
access: {
scope: [
"realm:admin",
"editor",
"other-resource:creator",
"scope:foo.READ",
"clientscope:profile",
],
},
},
handler() {
return "hello world";
},
},
},
]);
#### Plugin Options
- apiKey {Object} — The options object enabling an api key service as middlewareundefined
Optional. Default: .
- url {string} — The absolute url to be requested. It's possible to use a [pupa template][pupa] with placeholders called realm and clientId getting rendered based on the passed plugin-related options.http://barfoo.com/foo/{clientId}
Example:
Required.
- in {string} — Whether the api key is placed in the headers or query.headers
Allowed values: & queryheaders
Optional. Default: .
- name {string} — The name of the related headers field or query key.authorization
Optional. Default: .
- prefix {string} — An optional prefix of the related api key value. Mind a trailing space if necessary.Api-Key
Optional. Default: .
- tokenPath {string} — The path to the access token in the response its body as dot notation.access_token
Optional. Default: .
- request {Object} – The detailed request options for [got][got].{}
Optional. Default:
#### Plugin + Strategy Options
These options can be set in both ways: strategy-specific and as default for all strategies via plugin-specific options. When defining just one strategy, it's totally fine to set the whole option object as plugin options. Keep in mind that name needs to be unique for each strategy, default is default.
> By default, the Keycloak server has built-in [two ways to authenticate][client-auth] the client: client ID and client secret (1), or with a signed JWT (2). This plugin supports both. If a non-live strategy is used, ensure that the identifier of the related realm key is included in their header as kid. Check the description of secret/publicKey/entitlement and the [terminology][rpt-terms] for further information.publicKey
>
> | Strategies | Online\ | Live\\* | [Scopes][rpt] | Truthy Option | Note |
> | :--------- | :------: | :------: | :-----------: | :------------ | :----------- |
> | (1) + (2) | | | | | fast |secret
> | (1) + (2) | x | | | | flexible |
> | (1) | x | x | | | accurate |entitlement
> | (1) + (2) | x | x | x | | fine-grained |secret
>
> \: Plugin interacts with the Keycloak API
> \\*: Plugin validates token with help of the Keycloak API
>
> Please mind that the accurate strategy is 4-5x faster than the fine-grained one.
> Hint: If you define neither nor public nor entitlement, the plugin retrieves the public key itself from {realmUrl}/protocol/openid-connect/certs.
- name {string} – The unique name of the strategyBizApps
Required. Example
- realmUrl {string} – The absolute uri of the Keycloak realm.https://localhost:8080/auth/realms/testme
Required. Example:
- clientId {string} – The identifier of the Keycloak client/application.foobar
Required. Example:
- secret {string} – The related secret of the Keycloak client/application.1234-bar-4321-foo
Defining this option enables the traditional method described in the OAuth2 specification and performs an [introspect][introspect] request.
Optional. Example:
- publicKey {string|Buffer|Object} – The realm its public key related to the private key used to sign the token.{string|Buffer}
Defining this option enables the offline and non-live validation. The public key has to be in [PEM][pem] () or [JWK][jwk] ({Object}) format. Algorithm has to be RSA-SHA256 compatible.
Optional.
- entitlement {boolean=true} – The token should be validated with the entitlement API to enable fine-grained authorization. Enabling this option decelerates the process marginally. Mind that false is an invalid value.undefined
Optional. Default: .
- minTimeBetweenJwksRequests {number} – The minimum time between JWKS requests in seconds.0
This is relevant for the online/non-live strategy retrieving JWKS from the Keycloak server.
The value have to be a positive integer.
Optional. Default: .
- userInfo {Array.} — List of properties which should be included in the request.auth.credentials object besides scope and sub.[]
Optional. Default: .
- cache {Object|boolean} — The configuration of the [hapi.js cache][hapi-server-cache] powered by [catbox][catbox]. If the property exp ('expires at') is undefined, the plugin uses 60 seconds as default TTL. Otherwise the cache entry expires as soon as the token itself expires.false
Please mind that an enabled cache leads to disabled live validation after the related token is cached once.
If the cache is disabled. Use true or an empty object ({}) to use the built-in default cache. Otherwise just drop in your own cache configuration.false
Optional. Default: .
#### await server.kjwt.validate(field {string}, name {string})
- field {string} — The Bearer field, including the scheme (bearer) itself.bearer 12345.abcde.67890
Example: .name {string}
Required.
- — The name strategy option, to select the strategy to be used.BizApps
Example: .
Required.
If an error occurs, it gets thrown — so take care and implement a kind of catching.
If the token is invalid, the result is false. Otherwise it is an object containing all relevant credentials.
#### routes.js
`js
async function register(server, options) {
server.route([
{
method: "GET",
path: "/",
config: {
auth: {
strategies: ["keycloak-jwt"],
access: {
scope: [
"realm:admin",
"editor",
"other-resource:creator",
"scope:foo.READ",
],
},
},
handler(req, reply) {
reply(req.auth.credentials);
},
},
},
]);
}
module.exports = {
register,
name: "example-routes",
version: "0.0.1",
};
`
#### index.js
`js
const hapi = require("@hapi/hapi");
const authKeycloak = require("hapi-auth-keycloak");
const routes = require("./routes");
const server = hapi.server({ port: 3000 });
const pluginOptions = {
apiKey: {
url: "http://barfoo.com/foo/foobar",
},
};
const strategyOptions = {
realmUrl: "https://localhost:8080/auth/realms/testme",
clientId: "foobar",
minTimeBetweenJwksRequests: 15,
cache: true,
userInfo: ["name", "email"],
};
process.on("SIGINT", async () => {
try {
await server.stop();
} catch (err) {
process.exit(err ? 1 : 0);
}
});
(async () => {
try {
await server.register({
plugin: authKeycloak,
options: pluginOptions,
});
server.auth.strategy("keycloak-jwt", "keycloak-jwt", strategyOptions);
await server.register({ plugin: routes });
await server.start();
console.log("Server started successfully");
} catch (err) {
console.error(err);
}
})();
`
#### v4.2 to v4.3
Features
- It's now possible to register multiple strategies with the same scheme keycloak-jwt
Changes
- name is a new unique strategy-related option.apiKey.url
- its placeholders are replaced with plugin-related options, not the unique strategy ones.apiKey
- The option setup changed. All plugin-related options are used as defaults for [strategy-related options][strategy-options].
- Even though every strategy-related option can also set via the plugin options, can only be set once in the plugin options.
In case of multiple registered strategies for this scheme:
- Use at least a different name option in each strategy.server.kjwt.validate
- requires name as second argument
Attention
- Needs a custom scheme when multiple strategies are used on single routes. Check jscheffner/hapi-auth-any.
First you have to install all dependencies:
``
$ npm install
To execute all unit tests once, use:
``
$ npm test
or to run tests based on file watcher, use:
``
$ npm start
To get information about the test coverage, use:
```
$ npm run coverage
Fork this repository and push in your ideas.
Do not forget to add corresponding tests to keep up 100% test coverage.
For further information read the contributing guideline.
[keycloak]: http://www.keycloak.org/
[keycloak-node]: https://keycloak.gitbooks.io/documentation/content/securing_apps/topics/oidc/nodejs-adapter.html
[hapijs]: https://hapijs.com/
[avajs]: https://github.com/avajs/ava
[standardjs]: https://standardjs.com/
[babel]: https://babeljs.io/
[npm]: https://github.com/npm/npm
[jwt]: https://jwt.io/
[catbox]: https://github.com/hapijs/catbox
[bearer]: https://tools.ietf.org/html/rfc6750
[hapi-server-cache]: https://hapijs.com/api#-servercacheoptions
[hapi-route-options]: https://hapijs.com/api#route-options
[jwk]: https://tools.ietf.org/html/rfc7517
[pem]: https://tools.ietf.org/html/rfc1421
[client-auth]: https://www.keycloak.org/docs/3.1/securing_apps/topics/oidc/java/client-authentication.html
[introspect]: https://www.keycloak.org/docs/3.2/authorization_services/topics/service/protection/token-introspection.html
[rpt]: https://www.keycloak.org/docs/3.2/authorization_services/topics/service/entitlement/entitlement-api-aapi.html
[rpt-terms]: https://www.keycloak.org/docs/3.2/authorization_services/topics/overview/terminology.html
[got]: https://github.com/sindresorhus/got
[pupa]: https://github.com/sindresorhus/pupa
[strategy-options]: https://hapijs.com/api#-serverauthstrategyname-scheme-options
[clientscope]: https://github.com/keycloak/keycloak-documentation/blob/master/server_admin/topics/clients/client-scopes.adoc