Code Monkey home page Code Monkey logo

fastify-bearer-auth's Introduction

@fastify/bearer-auth

CI npm version js-standard-style

@fastify/bearer-auth provides a simple request hook for the Fastify web framework.

Example

'use strict'

const fastify = require('fastify')()
const bearerAuthPlugin = require('@fastify/bearer-auth')
const keys = new Set(['a-super-secret-key', 'another-super-secret-key'])

fastify.register(bearerAuthPlugin, {keys})
fastify.get('/foo', (req, reply) => {
  reply.send({authenticated: true})
})

fastify.listen({port: 8000}, (err) => {
  if (err) {
    fastify.log.error(err.message)
    process.exit(1)
  }
  fastify.log.info('http://127.0.0.1:8000/foo')
})

API

@fastify/bearer-auth exports a standard Fastify plugin. This allows you to register the plugin within scoped paths. Therefore, you could have some paths that are not protected by the plugin and others that are. See the Fastify documentation and examples for more details.

When registering the plugin you must specify a configuration object:

  • keys: A Set or array with valid keys of type string (required)
  • function errorResponse (err) {}: method must synchronously return the content body to be sent to the client (optional)
  • contentType: If the content to be sent is anything other than application/json, then the contentType property must be set (optional)
  • bearerType: string specifying the Bearer string (optional)
  • function auth (key, req) {} : this function will test if key is a valid token. The function must return a literal true if the key is accepted or a literal false if rejected. The function may also return a promise that resolves to one of these values. If the function returns or resolves to any other value, rejects, or throws, a HTTP status of 500 will be sent. req is the Fastify request object. If auth is a function, keys will be ignored. If auth is not a function, or undefined, keys will be used.
  • addHook: If false, this plugin will not register onRequest hook automatically, instead it provide two decorations fastify.verifyBearerAuth and fastify.verifyBearerAuthFactory for you.
  • verifyErrorLogLevel: An optional string specifying the log level when there is a verification error. It must be a valid log level supported by fastify, otherwise an exception will be thrown when registering the plugin. By default, this option is set to error.

The default configuration object is:

{
  keys: new Set(),
  contentType: undefined,
  bearerType: 'Bearer',
  errorResponse: (err) => {
    return {error: err.message}
  },
  auth: undefined,
  addHook: true
}

Internally, the plugin registers a standard Fastify preHandler hook, which will inspect the request's headers for an authorization header with the format bearer key. The key will be matched against the configured keys object via a constant time algorithm to prevent against timing-attacks. If the authorization header is missing, malformed, or the key does not validate then a 401 response will be sent with a {error: message} body; no further request processing will be performed.

Integration with @fastify/auth

This plugin can integrate with @fastify/auth by following this example:

const fastify = require('fastify')()
const auth = require('@fastify/auth')
const bearerAuthPlugin = require('@fastify/bearer-auth')
const keys = new Set(['a-super-secret-key', 'another-super-secret-key'])

async function server() {

  await fastify
    .register(auth)
    .register(bearerAuthPlugin, { addHook: false, keys, verifyErrorLogLevel: 'debug' })
    .decorate('allowAnonymous', function (req, reply, done) {
      if (req.headers.authorization) {
        return done(Error('not anonymous'))
      }
      return done()
    })

  fastify.route({
    method: 'GET',
    url: '/multiauth',
    preHandler: fastify.auth([
      fastify.allowAnonymous,
      fastify.verifyBearerAuth
    ]),
    handler: function (_, reply) {
      reply.send({ hello: 'world' })
    }
  })

  await fastify.listen({port: 8000})
}

server()

By passing { addHook: false } in the options, the verifyBearerAuth hook, instead of immediately replying on error (reply.send(someError)), invokes done(someError). This will allow fastify.auth to continue with the next authentication scheme in the hook list. Note that by setting { verifyErrorLogLevel: 'debug' } in the options, @fastify/bearer-auth will emit all verification error logs at the debug level. Since it is not the only authentication method here, emitting verification error logs at the error level may be not appropriate here. If verifyBearerAuth is the last hook in the list, fastify.auth will reply with Unauthorized.

License

MIT License

fastify-bearer-auth's People

Contributors

dependabot[bot] avatar fdawgs avatar jsumners avatar mcollina avatar eomm avatar greenkeeper[bot] avatar dependabot-preview[bot] avatar delvedor avatar uzlopak avatar ethan-arrowood avatar cemremengu avatar github-actions[bot] avatar zekth avatar songpr avatar rezaxdi avatar leaysgur avatar ishtartec avatar salmanm avatar rafaelgss avatar climba03003 avatar panitaxx avatar federicomassaioli avatar starptech avatar cprokopiak avatar anthonyringoet avatar ahgentil avatar theashraf avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.