BearerTokenLoginModule.java

33 lines | 1018 B Blame History Raw Download
package org.keycloak.adapters.jaas;

import org.jboss.logging.Logger;
import org.keycloak.VerificationException;

/**
 * Login module, which allows to authenticate Keycloak access token in environments, which rely on JAAS
 * <p/>
 * It expects login based on username and password where username must be equal to "Bearer" and password is keycloak access token.
 *
 * @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
 */
public class BearerTokenLoginModule extends AbstractKeycloakLoginModule {

    private static final Logger log = Logger.getLogger(BearerTokenLoginModule.class);

    @Override
    protected Auth doAuth(String username, String password) throws VerificationException {
        if (!"Bearer".equalsIgnoreCase(username)) {
            log.debug("Username is expected to be bearer but is " + username + ". Ignoring login module");
            return null;
        }

        return bearerAuth(password);
    }

    @Override
    protected Logger getLogger() {
        return log;
    }

}