Giter VIP home page Giter VIP logo

passport-keycloak-bearer's Introduction

passport-keycloak-bearer

GitHub stars Build

HTTP Bearer authentication strategy for Passport and Keycloak.

This module lets you authenticate HTTP requests using bearer tokens with a Keycloak authority in your Node.js applications. Bearer tokens are typically used protect API endpoints, and are often issued using OAuth 2.0.

By plugging into Passport, bearer token support can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.

Install

$ npm install passport-keycloak-bearer

Usage

KeycloakBearerStrategy uses Bearer Token protocol to protect web resource/api. It works in the following manner: User sends a request to the protected web api which contains an access_token in either the authorization header or body. Passport extracts and validates the access_token, and propagates the claims in access_token to the verify callback and let the framework finish the remaining authentication procedure.

On successful authentication, passport adds the user information to req.user and passes it to the next middleware, which is usually the business logic of the web resource/api. In case of error, passport sends back an unauthorized response.

Sample usage

      import KeycloakBearerStrategy from 'passport-keycloak-bearer'
      ...
      // new KeycloakBearerStrategy(options, verify)
      passport.use(new KeycloakBearerStrategy(({
          "realm": "master",
          "url": "https://keycloak.dev.com/auth"
      }, (jwtPayload, done) => {
          const user = doSomethingWithUser(jwtPayload);
          return done(null, user);
      }));

The JWT authentication strategy is constructed as follows:

new KeycloakBearerStrategy(options, verify)
Options
  • url (Required)

    Keycloak auth url. For instance: https://keycloak.dev.org/auth.

  • realm (Required)

    Your realm.

  • passReqToCallback (Optional - Default: false)

    Whether you want to use req as the first parameter in the verify callback. See section 5.1.1.3 for more details.

  • loggingLevel (Optional - Default: 'warn')

    Logging level. 'debug', 'info', 'warn' or 'error'.

  • customLogger (Optional)

    Custom logging instance. It must be able to log the following types: 'debug', 'info', 'warn' and 'error'.

  • issuer (Optional)

    If defined the token issuer (iss) will be verified against this value.

  • audience (Optional)

    If defined, the token audience (aud) will be verified against this value.

  • algorithms (Optional - Default: ['HS256'])

    List of strings with the names of the allowed algorithms. For instance, ["HS256", "HS384"].

  • ignoreExpiration (Optional)

    If true do not validate the expiration of the token.

  • jwtFromRequest (Optional)

    This value can be set according passport-jwt if this options is not used, passport-keycloak-bearer will obtain jwt from http header Auth as a Bearer token.

  • jsonWebTokenOptions (Optional)

    passport-keycloak-bearer is verifying the token using jsonwebtoken. Pass here an options object for any other option you can pass the jsonwebtoken verifier. (i.e maxAge)

Verify callback

verify is a function with the parameters verify(jwtPayload, done)

  • jwtPayload is an object literal containing the decoded JWT payload.
  • done is a passport error first callback accepting arguments done(error, user, info)

Authenticate Requests

Use passport.authenticate(), specifying the 'keycloak' strategy, to authenticate requests. Requests containing bearer verified do not require session support, so the session option can be set to false.

For example, as route middleware in an Express application:

app.get(
  '/path',
  passport.authenticate('keycloak', { session: false }),
  function(req, res) {
    res.json(req.user);
  }
);

Support

Submit an issue

Contribute

Contribute usage docs

License

MIT License

Simen Haugerud Granlund © 2018

Credits

passport-keycloak-bearer's People

Contributors

arpontes avatar dependabot[bot] avatar dimava avatar hgranlund 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.