com.github.bootfastconfig.springtool.WebUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boot-fast-spring-tool Show documentation
Show all versions of boot-fast-spring-tool Show documentation
Parent pom providing dependency and plugin management for applications
built with Maven
package com.github.bootfastconfig.springtool;
import com.google.common.base.Charsets;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import org.springframework.util.StreamUtils;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.context.request.RequestAttributes;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.util.WebUtils;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.nio.charset.Charset;
import java.util.Enumeration;
import java.util.function.Predicate;
public class WebUtil extends WebUtils {
private static final Logger log = LoggerFactory.getLogger(WebUtil.class);
private static final String[] IP_HEADER_NAMES = new String[]{"x-forwarded-for", "Proxy-Client-IP", "WL-Proxy-Client-IP", "HTTP_CLIENT_IP", "HTTP_X_FORWARDED_FOR"};
private static final Predicate IP_PREDICATE = (ip) -> {
return StringUtil.isBlank(ip) || "unknown".equalsIgnoreCase(ip);
};
public WebUtil() {
}
public static boolean isBody(HandlerMethod handlerMethod) {
ResponseBody responseBody = (ResponseBody) ClassUtil.getAnnotation(handlerMethod, ResponseBody.class);
return responseBody != null;
}
@Nullable
public static String getCookieVal(String name) {
HttpServletRequest request = getRequest();
Assert.notNull(request, "request from RequestContextHolder is null");
return getCookieVal(request, name);
}
@Nullable
public static String getCookieVal(HttpServletRequest request, String name) {
Cookie cookie = getCookie(request, name);
return cookie != null ? cookie.getValue() : null;
}
public static void removeCookie(HttpServletResponse response, String key) {
setCookie(response, key, (String) null, 0);
}
public static void setCookie(HttpServletResponse response, String name, @Nullable String value, int maxAgeInSeconds) {
Cookie cookie = new Cookie(name, value);
cookie.setPath("/");
cookie.setMaxAge(maxAgeInSeconds);
cookie.setHttpOnly(true);
response.addCookie(cookie);
}
public static HttpServletRequest getRequest() {
RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes();
return requestAttributes == null ? null : ((ServletRequestAttributes) requestAttributes).getRequest();
}
public static String getIP() {
return getIP(getRequest());
}
@Nullable
public static String getIP(@Nullable HttpServletRequest request) {
if (request == null) {
return "";
} else {
String ip = null;
String[] var2 = IP_HEADER_NAMES;
int var3 = var2.length;
for (int var4 = 0; var4 < var3; ++var4) {
String ipHeader = var2[var4];
ip = request.getHeader(ipHeader);
if (!IP_PREDICATE.test(ip)) {
break;
}
}
if (IP_PREDICATE.test(ip)) {
ip = request.getRemoteAddr();
}
return StringUtil.isBlank(ip) ? null : StringUtil.splitTrim(ip, ",")[0];
}
}
public static String getRequestParamString(HttpServletRequest request) {
try {
return getRequestStr(request);
} catch (Exception var2) {
return "";
}
}
public static String getRequestStr(HttpServletRequest request) throws IOException {
String queryString = request.getQueryString();
return StringUtil.isNotBlank(queryString) ? (new String(queryString.getBytes(Charsets.ISO_8859_1), Charsets.UTF_8)).replaceAll("&", "&").replaceAll("%22", "\"") : getRequestStr(request, getRequestBytes(request));
}
public static byte[] getRequestBytes(HttpServletRequest request) throws IOException {
int contentLength = request.getContentLength();
if (contentLength < 0) {
return null;
}
return StreamUtils.copyToByteArray(request.getInputStream());
}
public static String getRequestInputStreamStr(HttpServletRequest request) throws IOException {
String charEncoding = request.getCharacterEncoding();
if (charEncoding == null) {
charEncoding = "UTF-8";
}
Charset charset = Charset.forName(charEncoding);
return StreamUtils.copyToString(request.getInputStream(), charset);
}
public static String getRequestStr(HttpServletRequest request, byte[] buffer) throws IOException {
String charEncoding = request.getCharacterEncoding();
if (charEncoding == null) {
charEncoding = "UTF-8";
}
String str = (new String(buffer, charEncoding)).trim();
if (StringUtil.isBlank(str)) {
StringBuilder sb = new StringBuilder();
Enumeration parameterNames = request.getParameterNames();
while (parameterNames.hasMoreElements()) {
String key = (String) parameterNames.nextElement();
String value = request.getParameter(key);
StringUtil.appendBuilder(sb, new CharSequence[]{key, "=", value, "&"});
}
str = StringUtil.removeSuffix(sb.toString(), "&");
}
return str.replaceAll("&", "&");
}
}