com.networknt.auth.GoogleAuthHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stateless-auth Show documentation
Show all versions of stateless-auth Show documentation
A auth handler that handles OAuth 2.0 authorization code and get jwt token for the Single Page Applications.
The newest version!
package com.networknt.auth;
import com.google.api.client.googleapis.auth.oauth2.*;
import com.google.api.client.http.javanet.NetHttpTransport;
import com.google.api.client.json.jackson2.JacksonFactory;
import com.networknt.client.oauth.*;
import com.networknt.config.Config;
import com.networknt.config.JsonMapper;
import com.networknt.handler.MiddlewareHandler;
import com.networknt.monad.Result;
import com.networknt.status.Status;
import com.networknt.utility.Util;
import io.undertow.server.HttpServerExchange;
import io.undertow.util.StatusCodes;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.*;
public class GoogleAuthHandler extends StatelessAuthHandler implements MiddlewareHandler {
private static final Logger logger = LoggerFactory.getLogger(GoogleAuthHandler.class);
private static final String CODE = "code";
private static final String AUTHORIZATION_CODE_MISSING = "ERR10035";
private static final String EMAIL_REGISTERED = "ERR11350";
public static StatelessAuthConfig config =
(StatelessAuthConfig) Config.getInstance().getJsonObjectConfig(StatelessAuthConfig.CONFIG_NAME, StatelessAuthConfig.class);
@Override
public void handleRequest(final HttpServerExchange exchange) throws Exception {
// This handler only cares about /google path. Pass to the next handler if path is not matched.
if (logger.isDebugEnabled())
logger.debug("exchange path = " + exchange.getRelativePath() + " config path = " + config.getGooglePath());
if(exchange.getRelativePath().equals(config.getGooglePath())) {
Deque deque = exchange.getQueryParameters().get(CODE);
String code = deque == null ? null : deque.getFirst();
if (logger.isDebugEnabled()) logger.debug("auth code = " + code);
// check if code is in the query parameter
if (code == null || code.trim().length() == 0) {
setExchangeStatus(exchange, AUTHORIZATION_CODE_MISSING);
return;
}
GoogleTokenResponse tokenResponse =
new GoogleAuthorizationCodeTokenRequest(
new NetHttpTransport(),
JacksonFactory.getDefaultInstance(),
"https://oauth2.googleapis.com/token",
config.getGoogleClientId(),
config.getGoogleClientSecret(),
code,
config.getGoogleRedirectUri())
.execute();
GoogleIdToken idToken = tokenResponse.parseIdToken();
GoogleIdToken.Payload payload = idToken.getPayload();
String email = payload.getEmail();
boolean emailVerified = Boolean.valueOf(payload.getEmailVerified());
String name = (String) payload.get("name");
String userId = name.replaceAll("\\s+","") + "@go";
String familyName = (String) payload.get("family_name");
String givenName = (String) payload.get("given_name");
Result resultUser = PortalClient.getUserByEmail(email, config.getBootstrapToken());
if(resultUser.isSuccess()) {
Map map = JsonMapper.string2Map(resultUser.getResult());
String id = (String)map.get("userId");
if(logger.isTraceEnabled()) logger.trace("userId from query service: " + id + " userId from google: " + userId);
if(!userId.equals(id)) {
setExchangeStatus(exchange, EMAIL_REGISTERED, email, id);
return;
}
} else {
// create a social user
Map map = new HashMap<>();
map.put("host", "lightapi.net");
map.put("email", email);
map.put("userId", userId);
map.put("language", "en");
map.put("firstName", givenName);
map.put("lastName", familyName);
Result result = PortalClient.createSocialUser(map, config.getBootstrapToken());
}
String csrf = Util.getUUID();
TokenRequest request = new ClientAuthenticatedUserRequest("social", email, "user");
request.setCsrf(csrf);
Result result = OauthHelper.getTokenResult(request);
if (result.isFailure()) {
Status status = result.getError();
// we don't have access token in the response. Must be a status object.
exchange.setStatusCode(status.getStatusCode());
exchange.getResponseSender().send(status.toString());
logger.error(status.toString());
return;
}
List scopes = setCookies(exchange, result.getResult(), csrf);
if (config.getRedirectUri() != null && config.getRedirectUri().length() > 0) {
exchange.setStatusCode(StatusCodes.OK);
Map rs = new HashMap<>();
rs.put(SCOPES, scopes);
// add redirectUri and denyUri to the returned json.
rs.put("redirectUri", config.redirectUri);
rs.put("denyUri", config.denyUri != null ? config.denyUri : config.redirectUri);
exchange.getResponseSender().send(JsonMapper.toJson(rs));
} else {
exchange.setStatusCode(StatusCodes.OK);
exchange.endExchange();
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy