org.apache.shindig.gadgets.oauth.OAuthResponseParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shindig-gadgets Show documentation
Show all versions of shindig-gadgets Show documentation
Renders gadgets, provides the gadget metadata service, and serves
all javascript required by the OpenSocial specification.
/*
* 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.shindig.gadgets.oauth;
import com.google.common.collect.Lists;
import com.google.common.base.Preconditions;
import org.apache.shindig.auth.SecurityToken;
import org.apache.shindig.common.Pair;
import org.apache.shindig.common.Pairs;
import org.apache.shindig.common.crypto.BlobCrypter;
import org.apache.shindig.common.crypto.BlobCrypterException;
import org.apache.shindig.gadgets.http.HttpRequest;
import org.apache.shindig.gadgets.http.HttpResponse;
import org.apache.shindig.gadgets.http.HttpResponseBuilder;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Container for OAuth specific data to include in the response to the client.
*/
public class OAuthResponseParams {
private static final Logger logger = Logger.getLogger(OAuthResponseParams.class.getName());
// Finds the values of sensitive response params: oauth_token_secret and oauth_session_handle
private static final Pattern REMOVE_SECRETS =
Pattern.compile("(?<=(oauth_token_secret|oauth_session_handle)=)[^=& \t\r\n]*");
// names for the JSON values we return to the client
public static final String CLIENT_STATE = "oauthState";
public static final String APPROVAL_URL = "oauthApprovalUrl";
public static final String ERROR_CODE = "oauthError";
public static final String ERROR_TEXT = "oauthErrorText";
/**
* Transient state we want to cache client side.
*/
private final OAuthClientState newClientState;
/**
* Security token used to authenticate request.
*/
private final SecurityToken securityToken;
/**
* Original request from client.
*/
private final HttpRequest originalRequest;
/**
* Request/response pairs we sent onward.
*/
private final List> requestTrace = Lists.newArrayList();
/**
* Authorization URL for the client.
*/
private String aznUrl;
/**
* Error code for the client.
*/
private String error;
/**
* Error text for the client.
*/
private String errorText;
/**
* Whether we should include the request trace in the response to the application.
*
* It might be nice to make this configurable based on options passed to makeRequest. For now
* we use some heuristics to figure it out.
*/
private boolean sendTraceToClient;
/**
* Create response parameters.
*/
public OAuthResponseParams(SecurityToken securityToken, HttpRequest originalRequest,
BlobCrypter stateCrypter) {
this.securityToken = securityToken;
this.originalRequest = originalRequest;
newClientState = new OAuthClientState(stateCrypter);
}
/**
* Log a warning message that includes the details of the request.
*/
public void logDetailedWarning(String note) {
logger.log(Level.WARNING, note + '\n' + getDetails());
}
/**
* Log a warning message that includes the details of the request and the thrown exception.
*/
public void logDetailedWarning(String note, Throwable cause) {
logger.log(Level.WARNING, note + '\n' + getDetails(), cause);
}
public void logDetailedInfo(String note, Throwable cause) {
logger.log(Level.INFO, note + '\n' + getDetails(), cause);
}
/**
* Add a request/response pair to our trace of actions associated with this request.
*/
public void addRequestTrace(HttpRequest request, HttpResponse response) {
this.requestTrace.add(Pairs.newPair(request, response));
}
/**
* @return true if the target server returned an error at some point during the request
*/
public boolean sawErrorResponse() {
for (Pair event : requestTrace) {
if (event.two == null || event.two.isError()) {
return true;
}
}
return false;
}
private String getDetails() {
return "OAuth error [" + error + ", " + errorText + "] for application " +
securityToken.getAppUrl() + ". Request trace:" + getRequestTrace();
}
private String getRequestTrace() {
StringBuilder trace = new StringBuilder();
trace.append("\n==== Original request:\n");
trace.append(originalRequest);
trace.append("\n====");
int i = 1;
for (Pair event : requestTrace) {
trace.append("\n==== Sent request " + i + ":\n");
if (event.one != null) {
trace.append(filterSecrets(event.one.toString()));
}
trace.append("\n==== Received response " + i + ":\n");
if (event.two != null) {
trace.append(filterSecrets(event.two.toString()));
}
trace.append("\n====");
++i;
}
return trace.toString();
}
/**
* Removes security sensitive parameters from requests and responses.
*/
static String filterSecrets(String in) {
Matcher m = REMOVE_SECRETS.matcher(in);
return m.replaceAll("REMOVED");
}
/**
* Update a response with additional data to be returned to the application.
*/
public void addToResponse(HttpResponseBuilder response) {
if (!newClientState.isEmpty()) {
try {
response.setMetadata(CLIENT_STATE, newClientState.getEncryptedState());
} catch (BlobCrypterException e) {
// Configuration error somewhere, this should never happen.
throw new RuntimeException(e);
}
}
if (aznUrl != null) {
response.setMetadata(APPROVAL_URL, aznUrl);
}
if (error != null) {
response.setMetadata(ERROR_CODE, error);
}
if (errorText != null || sendTraceToClient) {
StringBuilder verboseError = new StringBuilder();
if (errorText != null) {
verboseError.append(errorText);
}
if (sendTraceToClient) {
verboseError.append('\n');
verboseError.append(getRequestTrace());
}
response.setMetadata(ERROR_TEXT, verboseError.toString());
}
}
/**
* Get the state we will return to the client.
*/
public OAuthClientState getNewClientState() {
return newClientState;
}
public String getAznUrl() {
return aznUrl;
}
/**
* Set the authorization URL we will return to the client.
*/
public void setAznUrl(String aznUrl) {
this.aznUrl = aznUrl;
}
public boolean sendTraceToClient() {
return sendTraceToClient;
}
public void setSendTraceToClient(boolean sendTraceToClient) {
this.sendTraceToClient = sendTraceToClient;
}
public String getError() {
return error;
}
public OAuthRequestException oauthRequestException(OAuthError error, String errorText) {
return oauthRequestException(error.toString(), errorText);
}
public OAuthRequestException oauthRequestException(OAuthError error, String errorText,
Throwable cause) {
return oauthRequestException(error.toString(), errorText, cause);
}
/**
* Create an exception and record information about the exception to be returned to the gadget.
*/
public OAuthRequestException oauthRequestException(String error, String errorText) {
this.error = Preconditions.checkNotNull(error);
this.errorText = Preconditions.checkNotNull(errorText);
return new OAuthRequestException('[' + error + ',' + errorText + ']');
}
/**
* Create an exception and record information about the exception to be returned to the gadget.
*/
public OAuthRequestException oauthRequestException(String error, String errorText,
Throwable cause) {
this.error = Preconditions.checkNotNull(error);
this.errorText = Preconditions.checkNotNull(errorText);
return new OAuthRequestException('[' + error + ',' + errorText + ']', cause);
}
/**
* Superclass for all exceptions thrown from OAuthRequest and friends.
*
* The constructors are private, use OAuthResponseParams.oauthRequestException to create this
* exception. This makes sure that any exception thrown is also exposed to the calling gadget
* in a useful way.
*/
public static class OAuthRequestException extends Exception {
private OAuthRequestException(String message) {
super(message);
}
private OAuthRequestException(String message, Throwable cause) {
super(message, cause);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy