2020-02-13 10:48:51 +08:00
|
|
|
package com.ruoyi.common.utils;
|
|
|
|
|
2021-03-15 16:38:43 +08:00
|
|
|
import cn.hutool.core.convert.Convert;
|
2021-06-12 20:13:35 +08:00
|
|
|
import cn.hutool.extra.servlet.ServletUtil;
|
|
|
|
import cn.hutool.http.HttpStatus;
|
2022-07-06 14:20:58 +08:00
|
|
|
import com.ruoyi.common.constant.Constants;
|
2021-12-06 10:59:54 +08:00
|
|
|
import lombok.AccessLevel;
|
|
|
|
import lombok.NoArgsConstructor;
|
2021-06-12 20:13:35 +08:00
|
|
|
import org.springframework.http.MediaType;
|
2020-02-13 10:48:51 +08:00
|
|
|
import org.springframework.web.context.request.RequestAttributes;
|
|
|
|
import org.springframework.web.context.request.RequestContextHolder;
|
|
|
|
import org.springframework.web.context.request.ServletRequestAttributes;
|
2021-03-15 16:38:43 +08:00
|
|
|
|
2022-11-24 15:14:47 +08:00
|
|
|
import javax.servlet.ServletRequest;
|
2021-03-15 16:38:43 +08:00
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
import javax.servlet.http.HttpSession;
|
|
|
|
import java.io.IOException;
|
2022-07-06 14:20:58 +08:00
|
|
|
import java.io.UnsupportedEncodingException;
|
|
|
|
import java.net.URLDecoder;
|
|
|
|
import java.net.URLEncoder;
|
2021-06-12 20:13:35 +08:00
|
|
|
import java.nio.charset.StandardCharsets;
|
2022-11-24 15:14:47 +08:00
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
2020-02-13 10:48:51 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 客户端工具类
|
2021-06-12 20:13:35 +08:00
|
|
|
*
|
2020-02-13 10:48:51 +08:00
|
|
|
* @author ruoyi
|
|
|
|
*/
|
2021-12-06 10:59:54 +08:00
|
|
|
@NoArgsConstructor(access = AccessLevel.PRIVATE)
|
2021-06-12 20:13:35 +08:00
|
|
|
public class ServletUtils extends ServletUtil {
|
2021-10-22 10:04:15 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取String参数
|
|
|
|
*/
|
|
|
|
public static String getParameter(String name) {
|
|
|
|
return getRequest().getParameter(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取String参数
|
|
|
|
*/
|
|
|
|
public static String getParameter(String name, String defaultValue) {
|
|
|
|
return Convert.toStr(getRequest().getParameter(name), defaultValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取Integer参数
|
|
|
|
*/
|
|
|
|
public static Integer getParameterToInt(String name) {
|
|
|
|
return Convert.toInt(getRequest().getParameter(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取Integer参数
|
|
|
|
*/
|
|
|
|
public static Integer getParameterToInt(String name, Integer defaultValue) {
|
|
|
|
return Convert.toInt(getRequest().getParameter(name), defaultValue);
|
|
|
|
}
|
2021-06-12 20:13:35 +08:00
|
|
|
|
2021-09-02 10:49:56 +08:00
|
|
|
/**
|
|
|
|
* 获取Boolean参数
|
|
|
|
*/
|
|
|
|
public static Boolean getParameterToBool(String name) {
|
|
|
|
return Convert.toBool(getRequest().getParameter(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取Boolean参数
|
|
|
|
*/
|
|
|
|
public static Boolean getParameterToBool(String name, Boolean defaultValue) {
|
|
|
|
return Convert.toBool(getRequest().getParameter(name), defaultValue);
|
|
|
|
}
|
|
|
|
|
2022-11-24 15:14:47 +08:00
|
|
|
/**
|
|
|
|
* 获得所有请求参数
|
|
|
|
*
|
|
|
|
* @param request 请求对象{@link ServletRequest}
|
|
|
|
* @return Map
|
|
|
|
*/
|
|
|
|
public static Map<String, String[]> getParams(ServletRequest request) {
|
|
|
|
final Map<String, String[]> map = request.getParameterMap();
|
|
|
|
return Collections.unmodifiableMap(map);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获得所有请求参数
|
|
|
|
*
|
|
|
|
* @param request 请求对象{@link ServletRequest}
|
|
|
|
* @return Map
|
|
|
|
*/
|
|
|
|
public static Map<String, String> getParamMap(ServletRequest request) {
|
|
|
|
Map<String, String> params = new HashMap<>();
|
|
|
|
for (Map.Entry<String, String[]> entry : getParams(request).entrySet()) {
|
|
|
|
params.put(entry.getKey(), StringUtils.join(entry.getValue(), ","));
|
|
|
|
}
|
|
|
|
return params;
|
|
|
|
}
|
|
|
|
|
2021-09-02 10:49:56 +08:00
|
|
|
/**
|
|
|
|
* 获取request
|
|
|
|
*/
|
|
|
|
public static HttpServletRequest getRequest() {
|
|
|
|
return getRequestAttributes().getRequest();
|
|
|
|
}
|
2021-06-12 20:13:35 +08:00
|
|
|
|
2021-10-22 10:04:15 +08:00
|
|
|
/**
|
|
|
|
* 获取response
|
|
|
|
*/
|
|
|
|
public static HttpServletResponse getResponse() {
|
|
|
|
return getRequestAttributes().getResponse();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取session
|
|
|
|
*/
|
|
|
|
public static HttpSession getSession() {
|
|
|
|
return getRequest().getSession();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static ServletRequestAttributes getRequestAttributes() {
|
|
|
|
RequestAttributes attributes = RequestContextHolder.getRequestAttributes();
|
|
|
|
return (ServletRequestAttributes) attributes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 将字符串渲染到客户端
|
|
|
|
*
|
|
|
|
* @param response 渲染对象
|
|
|
|
* @param string 待渲染的字符串
|
|
|
|
*/
|
2022-02-14 14:27:13 +08:00
|
|
|
public static void renderString(HttpServletResponse response, String string) {
|
2021-10-22 10:04:15 +08:00
|
|
|
try {
|
|
|
|
response.setStatus(HttpStatus.HTTP_OK);
|
|
|
|
response.setContentType(MediaType.APPLICATION_JSON_VALUE);
|
|
|
|
response.setCharacterEncoding(StandardCharsets.UTF_8.toString());
|
|
|
|
response.getWriter().print(string);
|
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 是否是Ajax异步请求
|
|
|
|
*
|
|
|
|
* @param request
|
|
|
|
*/
|
|
|
|
public static boolean isAjaxRequest(HttpServletRequest request) {
|
|
|
|
|
|
|
|
String accept = request.getHeader("accept");
|
2022-07-04 11:30:43 +08:00
|
|
|
if (accept != null && accept.contains(MediaType.APPLICATION_JSON_VALUE)) {
|
2021-10-22 10:04:15 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
String xRequestedWith = request.getHeader("X-Requested-With");
|
2022-02-14 14:27:13 +08:00
|
|
|
if (xRequestedWith != null && xRequestedWith.contains("XMLHttpRequest")) {
|
2021-10-22 10:04:15 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
String uri = request.getRequestURI();
|
|
|
|
if (StringUtils.equalsAnyIgnoreCase(uri, ".json", ".xml")) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
String ajax = request.getParameter("__ajax");
|
2022-02-14 14:27:13 +08:00
|
|
|
return StringUtils.equalsAnyIgnoreCase(ajax, "json", "xml");
|
2021-10-22 10:04:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public static String getClientIP() {
|
|
|
|
return getClientIP(getRequest());
|
|
|
|
}
|
2021-06-12 20:13:35 +08:00
|
|
|
|
2022-07-06 14:20:58 +08:00
|
|
|
/**
|
|
|
|
* 内容编码
|
|
|
|
*
|
|
|
|
* @param str 内容
|
|
|
|
* @return 编码后的内容
|
|
|
|
*/
|
|
|
|
public static String urlEncode(String str) {
|
|
|
|
try {
|
|
|
|
return URLEncoder.encode(str, Constants.UTF8);
|
|
|
|
} catch (UnsupportedEncodingException e) {
|
|
|
|
return StringUtils.EMPTY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 内容解码
|
|
|
|
*
|
|
|
|
* @param str 内容
|
|
|
|
* @return 解码后的内容
|
|
|
|
*/
|
|
|
|
public static String urlDecode(String str) {
|
|
|
|
try {
|
|
|
|
return URLDecoder.decode(str, Constants.UTF8);
|
|
|
|
} catch (UnsupportedEncodingException e) {
|
|
|
|
return StringUtils.EMPTY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-13 10:48:51 +08:00
|
|
|
}
|