org.apache.oltu.oauth2.client.OAuthClient Java Examples

The following examples show how to use org.apache.oltu.oauth2.client.OAuthClient. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: OidcAuthenticator.java    From entando-components with GNU Lesser General Public License v3.0 5 votes vote down vote up
private void fetchAndProcessToken(HttpServletRequest req, String code) throws
        OAuthSystemException, OAuthProblemException, ApsSystemException {
    OAuthClient oAuthClient = new OAuthClient(new URLConnectionClient());
    OAuthClientRequest oAuthClientRequest = this.oidcHelper.buildOauthRequest(req, code);
    OAuthJSONAccessTokenResponse oAuthResponse = oAuthClient.resource(oAuthClientRequest, OAuth.HttpMethod.POST, OAuthJSONAccessTokenResponse.class);

    _logger.info("----------------------TOKEN------------------- ");
    String accessToken = oAuthResponse.getAccessToken();
    _logger.info("accessToken -> " + accessToken);
    UserDetails cdpUser = this.oidcHelper.getOidcUser(oAuthResponse.getAccessToken());
    HttpSession session = req.getSession();
    session.setAttribute(SystemConstants.SESSIONPARAM_CURRENT_USER, cdpUser);
}
 
Example #2
Source File: OAuth.java    From openapi-generator with Apache License 2.0 4 votes vote down vote up
public OAuth( OkHttpClient client, TokenRequestBuilder requestBuilder ) {
    this.oauthClient = new OAuthClient(new OAuthOkHttpClient(client));
    this.tokenRequestBuilder = requestBuilder;
}
 
Example #3
Source File: OAuth.java    From docusign-java-client with MIT License 4 votes vote down vote up
public void setOauthClient(Client client) {
	this.oauthClient = new OAuthClient(new OAuthJerseyClient(client));
}
 
Example #4
Source File: OAuth.java    From docusign-java-client with MIT License 4 votes vote down vote up
public void setOauthClient(OAuthClient oauthClient) {
	this.oauthClient = oauthClient;
}
 
Example #5
Source File: OAuth.java    From docusign-java-client with MIT License 4 votes vote down vote up
public OAuthClient getOauthClient() {
	return oauthClient;
}
 
Example #6
Source File: OAuth.java    From docusign-java-client with MIT License 4 votes vote down vote up
public OAuth(Client client, TokenRequestBuilder tokenRequestBuilder, AuthenticationRequestBuilder authenticationRequestBuilder) {
	this.oauthClient = new OAuthClient(new OAuthJerseyClient(client));
	this.tokenRequestBuilder = tokenRequestBuilder;
	this.authenticationRequestBuilder = authenticationRequestBuilder;
}
 
Example #7
Source File: OAuthTokenHandler.java    From rapidoid with Apache License 2.0 4 votes vote down vote up
@Override
public Object execute(Req req) throws Exception {
	String code = req.param("code");
	String state = req.param("state");

	Log.debug("Received OAuth code", "code", code, "state", state);

	if (code != null && !U.isEmpty(state)) {

		String id = clientId.str().get();
		String secret = clientSecret.str().get();

		char statePrefix = state.charAt(0);
		U.must(statePrefix == 'P' || statePrefix == 'N', "Invalid OAuth state prefix!");
		state = state.substring(1);

		U.must(stateCheck.isValidState(state, secret, req.sessionId()), "Invalid OAuth state!");

		boolean popup = statePrefix == 'P';
		Log.debug("OAuth validated", "popup", popup);

		String domain = oauthDomain.getOrNull();
		String redirectUrl = U.notEmpty(domain) ? domain + callbackPath : HttpUtils.constructUrl(req, callbackPath);

		TokenRequestBuilder reqBuilder = OAuthClientRequest.tokenLocation(provider.getTokenEndpoint())
			.setGrantType(GrantType.AUTHORIZATION_CODE)
			.setClientId(id)
			.setClientSecret(secret)
			.setRedirectURI(redirectUrl)
			.setCode(code);

		OAuthClientRequest request = paramsInBody() ? reqBuilder.buildBodyMessage() : reqBuilder.buildBodyMessage();

		OAuthClient oAuthClient = new OAuthClient(new URLConnectionClient());

		String accessToken = token(request, oAuthClient);

		String profileUrl = Msc.fillIn(provider.getProfileEndpoint(), "token", accessToken);

		OAuthClientRequest bearerClientRequest = new OAuthBearerClientRequest(profileUrl).setAccessToken(
			accessToken).buildQueryMessage();

		OAuthResourceResponse res = oAuthClient.resource(bearerClientRequest,
			org.apache.oltu.oauth2.common.OAuth.HttpMethod.GET, OAuthResourceResponse.class);

		U.must(res.getResponseCode() == 200, "OAuth response error!");

		Map<String, Object> auth = JSON.parseMap(res.getBody());

		String email = (String) U.or(auth.get("email"), auth.get("emailAddress"));
		String firstName = (String) U.or(auth.get("firstName"), U.or(auth.get("first_name"), auth.get("given_name")));
		String lastName = (String) U.or(auth.get("lastName"), U.or(auth.get("last_name"), auth.get("family_name")));
		String name = U.or((String) auth.get("name"), firstName + " " + lastName);

		String username = email;
		Set<String> roles = customization.rolesProvider().getRolesForUser(req, username);

		UserInfo user = new UserInfo(username, roles);
		user.name = name;
		user.email = email;
		user.oauthProvider = provider.getName();
		user.oauthId = String.valueOf(auth.get("id"));

		req.response().authorize(user);

		return req.response().redirect("/");

	} else {
		String error = req.param("error");
		if (error != null) {
			Log.warn("OAuth error", "error", error);
			throw U.rte("OAuth error!");
		}
	}

	throw U.rte("Invalid OAuth request!");
}
 
Example #8
Source File: RetryingOAuth.java    From eve-esi with Apache License 2.0 4 votes vote down vote up
public RetryingOAuth(OkHttpClient client, TokenRequestBuilder tokenRequestBuilder) {
    this.oAuthClient = new OAuthClient(new OAuthOkHttpClient(client));
    this.tokenRequestBuilder = tokenRequestBuilder;
}
 
Example #9
Source File: OAuth.java    From android with MIT License 4 votes vote down vote up
public OAuth( OkHttpClient client, TokenRequestBuilder requestBuilder ) {
    this.oauthClient = new OAuthClient(new OAuthOkHttpClient(client));
    this.tokenRequestBuilder = requestBuilder;
}
 
Example #10
Source File: OAuth.java    From openapi-generator with Apache License 2.0 4 votes vote down vote up
public OAuth(Client client, TokenRequestBuilder requestBuilder) {
    this.oauthClient = new OAuthClient(new OAuthFeignClient(client));
    this.tokenRequestBuilder = requestBuilder;
}
 
Example #11
Source File: RetryingOAuth.java    From openapi-generator with Apache License 2.0 4 votes vote down vote up
public RetryingOAuth(OkHttpClient client, TokenRequestBuilder tokenRequestBuilder) {
    this.oAuthClient = new OAuthClient(new OAuthOkHttpClient(client));
    this.tokenRequestBuilder = tokenRequestBuilder;
}
 
Example #12
Source File: OAuth.java    From openapi-generator with Apache License 2.0 4 votes vote down vote up
public OAuth( OkHttpClient client, TokenRequestBuilder requestBuilder ) {
    this.oauthClient = new OAuthClient(new OAuthOkHttpClient(client));
    this.tokenRequestBuilder = requestBuilder;
}
 
Example #13
Source File: RetryingOAuth.java    From openapi-generator with Apache License 2.0 4 votes vote down vote up
public RetryingOAuth(OkHttpClient client, TokenRequestBuilder tokenRequestBuilder) {
    this.oAuthClient = new OAuthClient(new OAuthOkHttpClient(client));
    this.tokenRequestBuilder = tokenRequestBuilder;
}
 
Example #14
Source File: OAuth.java    From openapi-generator with Apache License 2.0 4 votes vote down vote up
public OAuth( OkHttpClient client, TokenRequestBuilder requestBuilder ) {
    this.oauthClient = new OAuthClient(new OAuthOkHttpClient(client));
    this.tokenRequestBuilder = requestBuilder;
}
 
Example #15
Source File: OAuth.java    From openapi-generator with Apache License 2.0 4 votes vote down vote up
public void setOauthClient(Client client) {
    this.oauthClient = new OAuthClient( new OAuthFeignClient(client));
}
 
Example #16
Source File: OAuth.java    From openapi-generator with Apache License 2.0 4 votes vote down vote up
public void setOauthClient(OAuthClient oauthClient) {
    this.oauthClient = oauthClient;
}
 
Example #17
Source File: OAuth.java    From openapi-generator with Apache License 2.0 4 votes vote down vote up
public OAuthClient getOauthClient() {
    return oauthClient;
}