|
| 1 | +# fastify-bearer-auth |
| 2 | + |
| 3 | +*fastify-bearer-auth* provides a simple request hook for the [Fastify][fastify] |
| 4 | +web framework. |
| 5 | + |
| 6 | +[fastify]: https://github.com/fastify/fastify |
| 7 | + |
| 8 | +## Example |
| 9 | + |
| 10 | +```js |
| 11 | +'use strict' |
| 12 | + |
| 13 | +const fastify = require('fastify') |
| 14 | +const bearerAuthPlugin = require('fastify-bearer-auth') |
| 15 | +const keys = new Set(['a-super-secret-key', 'another-super-secret-key']) |
| 16 | + |
| 17 | +fastify.addHook('preHandler', bearerAuthPlugin({keys})) |
| 18 | +fastify.get('/foo', (req, reply) => { |
| 19 | + reply({authenticated: true}) |
| 20 | +}) |
| 21 | + |
| 22 | +fastify.listen({port: 8000}, (err) => { |
| 23 | + if (err) { |
| 24 | + console.error(err.message) |
| 25 | + process.exit(1) |
| 26 | + } |
| 27 | + console.log.info('http://127.0.0.1:8000/foo') |
| 28 | +}) |
| 29 | +``` |
| 30 | + |
| 31 | +## API |
| 32 | + |
| 33 | ++ `factory(config)`: exported by `require('fastify-bearer-auth')`. The `config` |
| 34 | + object must have a `keys` property that is set to an object which has a |
| 35 | + `has(key)` method. It may also have method `errorResponse(err)` and property |
| 36 | + `contentType`. If set, the `errorResponse(err)` method must synchronously |
| 37 | + return the content body to be sent to the client. If the content to be sent |
| 38 | + is anything other than `application/json`, then the `contentType` property |
| 39 | + must be set. The default config object is: |
| 40 | + |
| 41 | + ```js |
| 42 | + { |
| 43 | + keys: new Set(), |
| 44 | + contentType: undefined, |
| 45 | + errorResponse: (err) => { |
| 46 | + return {error: err.message} |
| 47 | + } |
| 48 | + } |
| 49 | + ``` |
| 50 | + |
| 51 | ++ `bearerAuthHook(req, reply, next)`: a standard *Fastify* |
| 52 | + [preHandler hook][prehook] which will inspect the request's headers |
| 53 | + for an `authorization` header in the format `bearer key`. The `key` will be |
| 54 | + matched against the configured `keys` object via the `has(key)` method. If |
| 55 | + the `authorization` header is missing, malformed, or the `key` does not |
| 56 | + validate then a 401 response will be sent with a `{error: message}` body; |
| 57 | + no further request processing will be performed. |
| 58 | + |
| 59 | +[prehook]: https://github.com/fastify/fastify/blob/master/docs/Hooks.md |
| 60 | + |
| 61 | +## License |
| 62 | + |
| 63 | +[MIT License](http://jsumners.mit-license.org/) |
0 commit comments