Coder Social home page Coder Social logo

ratpack-jwtauth's Introduction

Discontinued

As the excellent PAC4J lib (http://www.pac4j.org/#1 , https://github.com/pac4j/pac4j) now support JWT and ratpack provide good integration (http://ratpack.io/manual/current/pac4j.html#pac4j), I will not maintain this module.

ratpack-jwtauth

Provide an easy to use Json Web Token authentication

Usage

Add the module to ratpack module through guice :

    bindingsSpec.add(JWTAuthModule.class, config -> {
        config.secret("someSalt");
        config.header("X-Authentication");
        config.authentication("default", UserRepository.class, AuthForm.class, InputType.JSON);
    });

Add login handler :

    path("login") {
        context.get(LoginHandlerProvider).handleLoginFor("default", context)
    }

Then to get the info :

    Chain mustBeIdentifiedChain = apiChain.handler(ctx -> {
        try {
            JWTClaims claims = ctx.get(JWTClaims.class);
            // check whatever you want
            ctx.next();
        } catch (NotInRegistryException e) {
            ctx.getResponse().status(403);
            ctx.render("Must be authentified");
        }
    });

Dependency.

Gradle

repositories {
    maven {
        url "http://dl.bintray.com/ylemoigne/maven"
    }
}

dependencies {
    compile 'fr.javatic.ratpack:ratpack-jwtauth:0.2'
}

Changelog.

  • 0.1 : Initial Release
  • 0.2 : Add ability for authentication function to return a custom http status code. Add ability to provide authentication function through injected class.
  • 0.3 : upgrade to Ratpack 0.9.19

ratpack-jwtauth's People

Contributors

gschrader avatar ylemoigne avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  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.