Skip to content
This repository has been archived by the owner on Jun 16, 2020. It is now read-only.

bihe/ninja-oauth-google

Repository files navigation

Google-Oauth2 module for Ninja framework

This is a plugable module for the Ninja web framework which supports Google oauth2 authentication.

Build Status license Maven Central

Setup

  1. Add the ninja-google-oauth dependency to your pom.xml:

    net.binggl ninja-google-oauth-module x.x.x
  2. Google Developer Console

Setup a new client ID of type 'Web application'. The 'Client ID' and 'Client secret' are used in the application.conf.

## oauth authentication
ninja.oauth.google.key=KEY
ninja.oauth.google.secret=SECRET
ninja.oauth.callback.url=http://localhost:8080/oauth2callback
ninja.oauth.success.url=http://localhost:8080/
ninja.oauth.failure.url=http://localhost:8080/login
  1. Setup the module
package conf;

import com.google.inject.AbstractModule;
import net.binggl.ninja.oauth.NinjaOauthModule;

public class Module extends AbstractModule {

    @Override
    protected void configure() {
        install(new NinjaOauthModule());
    }

}
  1. Add routes

The callback route needs to match the URL specified in the Google Developer Console!

public void init(Router router) {  

    // authentication routes
    router.GET().route("/startauth").with(NinjaOauthController.class, "startauth");
    router.GET().route("/oauth2callback").with(NinjaOauthController.class, "oauth2callback");
    
    ///////////////////////////////////////////////////////////////////////
    // Index / Catchall shows index page
    ///////////////////////////////////////////////////////////////////////
    router.GET().route("/.*").with(HomeController.class, "index");
}

To start the authentication process call the URL /startauth. A redirect is created in the browser and you are forwarded to the Google login and OAuth consent screen.

  1. Authorization logic

The module is only responsible for authentication using Google Oauth2. The authorization process needs to be implemented.

protected void configure() {
        
    bind(OauthAuthorizationService.class).toInstance(new OauthAuthorizationService() {
        @Override
        public boolean lookupAndProcessProfile(Context context, Google2Profile profile) {
            boolean profileValid = false;
            if(profile != null && StringUtils.isNotEmpty(profile.getAccessToken())) {
                profileValid = true;
                context.getSession().put("id", profile.getId());
            }
            return profileValid;
        }
    });        
}