
org.apache.oltu.oauth2.as.request.OAuthRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/**
* Copyright 2010 Newcastle University
*
* http://research.ncl.ac.uk/smart/
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.oltu.oauth2.as.request;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import javax.servlet.http.HttpServletRequest;
import org.apache.oltu.oauth2.common.OAuth;
import org.apache.oltu.oauth2.common.exception.OAuthProblemException;
import org.apache.oltu.oauth2.common.exception.OAuthSystemException;
import org.apache.oltu.oauth2.common.utils.OAuthUtils;
import org.apache.oltu.oauth2.common.validators.OAuthValidator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* The Abstract OAuth request for the Authorization server.
*/
public abstract class OAuthRequest {
private Logger log = LoggerFactory.getLogger(OAuthRequest.class);
protected HttpServletRequest request;
protected OAuthValidator validator;
protected Map>> validators =
new HashMap>>();
public OAuthRequest(HttpServletRequest request) throws OAuthSystemException, OAuthProblemException {
this.request = request;
validate();
}
public OAuthRequest() {
}
protected void validate() throws OAuthSystemException, OAuthProblemException {
try {
validator = initValidator();
validator.validateMethod(request);
validator.validateContentType(request);
validator.validateRequiredParameters(request);
validator.validateClientAuthenticationCredentials(request);
} catch (OAuthProblemException e) {
try {
String redirectUri = request.getParameter(OAuth.OAUTH_REDIRECT_URI);
if (!OAuthUtils.isEmpty(redirectUri)) {
e.setRedirectUri(redirectUri);
}
} catch (Exception ex) {
if (log.isDebugEnabled()) {
log.debug("Cannot read redirect_url from the request: {}", new String[] {ex.getMessage()});
}
}
throw e;
}
}
protected abstract OAuthValidator initValidator() throws OAuthProblemException,
OAuthSystemException;
public String getParam(String name) {
return request.getParameter(name);
}
public String getClientId() {
String[] creds = OAuthUtils.decodeClientAuthenticationHeader(request.getHeader(OAuth.HeaderType.AUTHORIZATION));
if (creds != null) {
return creds[0];
}
return getParam(OAuth.OAUTH_CLIENT_ID);
}
public String getRedirectURI() {
return getParam(OAuth.OAUTH_REDIRECT_URI);
}
public String getClientSecret() {
String[] creds = OAuthUtils.decodeClientAuthenticationHeader(request.getHeader(OAuth.HeaderType.AUTHORIZATION));
if (creds != null) {
return creds[1];
}
return getParam(OAuth.OAUTH_CLIENT_SECRET);
}
/**
*
* @return
*/
public boolean isClientAuthHeaderUsed() {
return OAuthUtils.decodeClientAuthenticationHeader(request.getHeader(OAuth.HeaderType.AUTHORIZATION)) != null;
}
public Set getScopes() {
String scopes = getParam(OAuth.OAUTH_SCOPE);
return OAuthUtils.decodeScopes(scopes);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy