blob: de3c2e912c6a49daca1660ad179b78709ee0318c [file] [log] [blame]
/*
* 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.struts2.json;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts2.ServletActionContext;
import org.apache.struts2.result.Redirectable;
import org.apache.struts2.result.ServletActionRedirectResult;
/**
* Specialized form of {@link ServletActionRedirectResult} which takes care of
* situation that browser has a JS/AJAX context, there are no validation errors
* and action is executed. In this case a http redirect is harmful as browsers
* don't pass them to JS handlers. So this result produces a JSON response
* containing redirect data.
*
* <p>To be used along with {@link JSONValidationInterceptor}.</p>
*
* <p>Response JSON looks like this:
*
* <pre>{"location": "$redirect url$"}</pre>
* </p>
*
*/
public class JSONActionRedirectResult extends ServletActionRedirectResult implements Redirectable {
private static final long serialVersionUID = 3107276294073879542L;
@Override
protected void sendRedirect(HttpServletResponse response, String finalLocation) throws IOException {
if (sendJsonInsteadOfRedirect()) {
printJson(response, finalLocation);
} else {
super.sendRedirect(response, finalLocation);
}
}
/**
* If browser has called action in a JS/AJAX context we cannot send a
* redirect as response.
*
* @return true if a JSON response shall be generated, false if a redirect
* shall be sent.
*/
protected boolean sendJsonInsteadOfRedirect() {
HttpServletRequest request = ServletActionContext.getRequest();
return isJsonEnabled(request) && !isValidateOnly(request);
}
protected void printJson(HttpServletResponse response, String finalLocation) throws IOException {
response.setStatus(HttpServletResponse.SC_OK);
response.setContentType("application/json");
response.setHeader("Location", finalLocation);
PrintWriter writer = response.getWriter();
writer.write("{\"location\": \"");
writer.write(finalLocation);
writer.write("\"}");
writer.close();
}
protected boolean isJsonEnabled(HttpServletRequest request) {
return "true".equals(request.getParameter(JSONValidationInterceptor.VALIDATE_JSON_PARAM));
}
protected boolean isValidateOnly(HttpServletRequest request) {
return "true".equals(request.getParameter(JSONValidationInterceptor.VALIDATE_ONLY_PARAM));
}
}