2020-04-16 01:53:25 +08:00
|
|
|
package com.yutou.tools.utils;
|
|
|
|
|
2020-04-17 14:32:22 +08:00
|
|
|
import com.alibaba.fastjson.JSONArray;
|
2020-06-03 00:01:11 +08:00
|
|
|
import com.yutou.tools.interfaces.DownloadInterface;
|
2020-05-27 14:40:25 +08:00
|
|
|
import com.yutou.tools.nas.UpdateIp;
|
2020-05-14 17:48:34 +08:00
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
2020-04-17 14:32:22 +08:00
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
2020-04-16 01:53:25 +08:00
|
|
|
import javax.servlet.http.Cookie;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
2020-04-17 14:32:22 +08:00
|
|
|
import javax.servlet.http.HttpServletResponse;
|
2020-06-03 00:01:11 +08:00
|
|
|
import java.io.*;
|
2020-04-17 14:32:22 +08:00
|
|
|
import java.net.HttpURLConnection;
|
|
|
|
import java.net.URL;
|
|
|
|
import java.net.URLEncoder;
|
2020-05-14 17:48:34 +08:00
|
|
|
import java.util.Date;
|
2020-04-17 14:32:22 +08:00
|
|
|
import java.util.Random;
|
2020-04-16 01:53:25 +08:00
|
|
|
|
|
|
|
public class Tools {
|
2020-04-17 14:32:22 +08:00
|
|
|
/**
|
2020-05-27 14:40:25 +08:00
|
|
|
* 设置Cookie
|
|
|
|
*
|
2020-04-17 14:32:22 +08:00
|
|
|
* @param response
|
|
|
|
* @param key
|
|
|
|
* @param value
|
|
|
|
* @param time
|
|
|
|
*/
|
2020-05-27 14:40:25 +08:00
|
|
|
public static void setCookie(HttpServletResponse response, String key, String value, int time) {
|
2020-04-17 14:32:22 +08:00
|
|
|
Cookie cookie = new Cookie(key, value);
|
2020-05-27 14:40:25 +08:00
|
|
|
if (time != -1) {
|
2020-04-17 14:32:22 +08:00
|
|
|
cookie.setMaxAge(time);
|
|
|
|
}
|
2020-05-04 03:26:52 +08:00
|
|
|
cookie.setPath("/");
|
2020-04-17 14:32:22 +08:00
|
|
|
response.addCookie(cookie);
|
2020-05-04 03:26:52 +08:00
|
|
|
|
2020-04-17 14:32:22 +08:00
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
|
2020-04-17 14:32:22 +08:00
|
|
|
/**
|
|
|
|
* 获取Cookie
|
2020-05-27 14:40:25 +08:00
|
|
|
*
|
2020-04-17 14:32:22 +08:00
|
|
|
* @param request
|
|
|
|
* @param key
|
|
|
|
* @return
|
|
|
|
*/
|
2020-05-27 14:40:25 +08:00
|
|
|
public static Cookie getCookie(HttpServletRequest request, String key) {
|
2020-04-17 14:32:22 +08:00
|
|
|
Cookie[] cookies = request.getCookies();
|
2020-05-04 03:26:52 +08:00
|
|
|
try {
|
|
|
|
for (Cookie cookie : cookies) {
|
2020-05-27 14:40:25 +08:00
|
|
|
if (key != null && cookie.getName().equals(key)) {
|
2020-05-04 03:26:52 +08:00
|
|
|
return cookie;
|
|
|
|
}
|
2020-04-16 01:53:25 +08:00
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
} catch (Exception ignored) {
|
2020-05-04 03:26:52 +08:00
|
|
|
|
2020-04-16 01:53:25 +08:00
|
|
|
}
|
2020-05-04 03:26:52 +08:00
|
|
|
|
2020-04-16 01:53:25 +08:00
|
|
|
return null;
|
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
|
2020-04-17 14:32:22 +08:00
|
|
|
/**
|
|
|
|
* 删除Cookie
|
2020-05-27 14:40:25 +08:00
|
|
|
*
|
2020-04-17 14:32:22 +08:00
|
|
|
* @param request
|
|
|
|
* @param response
|
|
|
|
* @param key
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public static String deleteCookie(HttpServletRequest request, HttpServletResponse response, String key) {
|
2020-05-04 03:26:52 +08:00
|
|
|
for (Cookie cookie : request.getCookies()) {
|
2020-05-27 14:40:25 +08:00
|
|
|
if (cookie.getName().equals(key)) {
|
|
|
|
System.out.println("删除key=" + key);
|
2020-05-04 03:26:52 +08:00
|
|
|
cookie.setMaxAge(0);
|
|
|
|
cookie.setPath("/");
|
|
|
|
cookie.setValue(null);
|
|
|
|
response.addCookie(cookie);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "ok";
|
2020-04-17 14:32:22 +08:00
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
|
|
|
|
public static void sendServer(String title, String msg) {
|
|
|
|
try {
|
|
|
|
System.out.println("title=" + title + " msg=" + msg);
|
|
|
|
HttpURLConnection connection = (HttpURLConnection) new URL("https://sc.ftqq.com/SCU64034T5adf5c5940dcecc016e0e9d0cf9b1e725da126ff47475.send?text="
|
|
|
|
+ URLEncoder.encode(title, "UTF-8") + "&desp=" + URLEncoder.encode(msg, "UTF-8")).openConnection();
|
2020-04-17 14:32:22 +08:00
|
|
|
connection.connect();
|
2020-05-27 14:40:25 +08:00
|
|
|
InputStream inputStream = connection.getInputStream();
|
|
|
|
int i = inputStream.read();
|
2020-04-17 14:32:22 +08:00
|
|
|
inputStream.close();
|
2020-05-04 03:26:52 +08:00
|
|
|
connection.disconnect();
|
2020-05-27 14:40:25 +08:00
|
|
|
if (UpdateIp.nas_ip != null) {
|
2020-05-29 10:26:55 +08:00
|
|
|
String url="http://" + UpdateIp.nas_ip + ":8000/localhome/bot/send.do?msg=" + URLEncoder.encode((title + "\n" + msg), "UTF-8") + "&token=zIrsh9TUZP2lfRW753PannG49E7VJvor";
|
|
|
|
System.out.println(url);
|
|
|
|
connection = (HttpURLConnection) new URL(url).openConnection();
|
2020-05-27 14:40:25 +08:00
|
|
|
connection.connect();
|
2020-05-28 00:46:07 +08:00
|
|
|
inputStream=connection.getInputStream();
|
|
|
|
i=inputStream.read();
|
|
|
|
inputStream.close();
|
|
|
|
connection.disconnect();
|
2020-05-27 14:40:25 +08:00
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
2020-04-17 14:32:22 +08:00
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取项目路径
|
2020-05-27 14:40:25 +08:00
|
|
|
*
|
2020-04-17 14:32:22 +08:00
|
|
|
* @param request
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public static String getPath(HttpServletRequest request) {
|
|
|
|
return request.getServletContext().getRealPath("/") + "/";
|
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
|
2020-04-17 14:32:22 +08:00
|
|
|
/**
|
|
|
|
* 获取客户端IP
|
|
|
|
*
|
|
|
|
* @param request
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public static String getRemoteAddress(HttpServletRequest request) {
|
|
|
|
String ip = request.getHeader("x-forwarded-for");
|
|
|
|
if (ip == null || ip.length() == 0 || ip.equalsIgnoreCase("unknown")) {
|
|
|
|
ip = request.getHeader("Proxy-Client-IP");
|
|
|
|
}
|
|
|
|
if (ip == null || ip.length() == 0 || ip.equalsIgnoreCase("unknown")) {
|
|
|
|
ip = request.getHeader("WL-Proxy-Client-IP");
|
|
|
|
}
|
|
|
|
if (ip == null || ip.length() == 0 || ip.equalsIgnoreCase("unknown")) {
|
|
|
|
ip = request.getRemoteAddr();
|
|
|
|
}
|
|
|
|
return ip;
|
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
|
2020-04-17 14:32:22 +08:00
|
|
|
/**
|
|
|
|
* N以内的不重复随机数
|
|
|
|
*
|
2020-05-27 14:40:25 +08:00
|
|
|
* @param min 最小值
|
|
|
|
* @param max 最大值
|
2020-04-17 14:32:22 +08:00
|
|
|
* @param n
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public static int[] randomCommon(int min, int max, int n) {
|
|
|
|
int len = max - min + 1;
|
|
|
|
if (max < min || n > len) {
|
|
|
|
return new int[0];
|
|
|
|
}
|
|
|
|
// 初始化给定范围的待选数组
|
|
|
|
int[] source = new int[len];
|
|
|
|
for (int i = min; i < min + len; i++) {
|
|
|
|
source[i - min] = i;
|
|
|
|
}
|
|
|
|
int[] result = new int[n];
|
|
|
|
Random rd = new Random();
|
|
|
|
int index = 0;
|
|
|
|
for (int i = 0; i < result.length; i++) {
|
|
|
|
// 待选数组0到(len-2)随机一个下标
|
|
|
|
index = Math.abs(rd.nextInt() % len--);
|
|
|
|
// 将随机到的数放入结果集
|
|
|
|
result[i] = source[index];
|
|
|
|
// 将待选数组中被随机到的数,用待选数组(len-1)下标对应的数替换
|
|
|
|
source[index] = source[len];
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
|
|
|
|
public static int checkWebLogin(HttpServletRequest request) {
|
|
|
|
JSONArray array = new JSONArray();
|
|
|
|
if (RedisTools.get("bean") != null) {
|
|
|
|
array = JSONArray.parseArray(RedisTools.get("bean"));
|
2020-04-17 14:32:22 +08:00
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
if (array.contains(Tools.getRemoteAddress(request))) {
|
2020-04-17 14:32:22 +08:00
|
|
|
System.out.println("IP已被封禁");
|
|
|
|
return -100;
|
|
|
|
}
|
|
|
|
Cookie cookie = Tools.getCookie(request, "user");
|
|
|
|
if (cookie == null) {
|
|
|
|
return -1;
|
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
if (RedisTools.get(cookie.getValue()).equals("ok")) {
|
|
|
|
return 1;
|
2020-04-17 14:32:22 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
|
|
|
|
public static String get(String url) {
|
|
|
|
try {
|
|
|
|
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
|
|
|
|
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
|
|
|
|
StringBuilder str = new StringBuilder();
|
2020-05-10 18:51:01 +08:00
|
|
|
String tmp;
|
2020-05-27 14:40:25 +08:00
|
|
|
while ((tmp = reader.readLine()) != null) {
|
2020-05-10 18:51:01 +08:00
|
|
|
str.append(tmp);
|
|
|
|
}
|
|
|
|
reader.close();
|
|
|
|
connection.disconnect();
|
|
|
|
return str.toString();
|
2020-05-27 14:40:25 +08:00
|
|
|
} catch (Exception e) {
|
2020-05-10 18:51:01 +08:00
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
|
2020-05-14 17:48:34 +08:00
|
|
|
/**
|
|
|
|
* 保存上传的文件
|
|
|
|
*
|
2020-05-27 14:40:25 +08:00
|
|
|
* @param path 路径
|
|
|
|
* @param file 文件
|
2020-05-14 17:48:34 +08:00
|
|
|
* @return
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
public static String createFile(String path, MultipartFile file, String newFileName) throws Exception {
|
2020-05-27 14:40:25 +08:00
|
|
|
String savePath = new File("").getAbsolutePath() + File.separator + "html" + File.separator + path;
|
2020-05-14 17:48:34 +08:00
|
|
|
File servicePath = new File(savePath);
|
|
|
|
if (!servicePath.exists()) {
|
|
|
|
servicePath.mkdirs();
|
|
|
|
}
|
2020-05-27 14:40:25 +08:00
|
|
|
String fileName = file.getOriginalFilename();
|
|
|
|
if (newFileName != null) {
|
|
|
|
fileName = newFileName;
|
2020-05-14 17:48:34 +08:00
|
|
|
}
|
|
|
|
File saveFile = new File(savePath + "/" + fileName);
|
2020-05-27 14:40:25 +08:00
|
|
|
if (saveFile.exists()) {
|
|
|
|
if (!saveFile.delete()) {
|
|
|
|
saveFile = new File(savePath + "/" + fileName.replace(".", "_" + new Date().getTime() + "."));
|
2020-05-14 17:48:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
file.transferTo(saveFile);
|
2020-05-27 14:40:25 +08:00
|
|
|
fileName = URLEncoder.encode(fileName, "UTF-8");
|
|
|
|
System.out.println("上传文件保存路径:" + saveFile.getAbsolutePath());
|
|
|
|
return path + fileName;
|
2020-05-14 17:48:34 +08:00
|
|
|
}
|
2020-06-03 00:01:11 +08:00
|
|
|
|
|
|
|
public static void download(String url, DownloadInterface downloadInterface) {
|
|
|
|
try {
|
|
|
|
HttpURLConnection connection= (HttpURLConnection) new URL(url).openConnection();
|
|
|
|
connection.disconnect();
|
|
|
|
new File("tmp").mkdirs();
|
|
|
|
File file=new File("tmp"+File.separator+url.trim().split("/")[url.trim().split("/").length-1]);
|
|
|
|
if(file.exists()){
|
|
|
|
file.delete();
|
|
|
|
}
|
|
|
|
FileOutputStream outputStream=new FileOutputStream(file);
|
|
|
|
InputStream inputStream=connection.getInputStream();
|
|
|
|
byte[] bytes=new byte[4096];
|
|
|
|
int len;
|
|
|
|
while ((len=inputStream.read(bytes))!=-1){
|
|
|
|
outputStream.write(bytes,0,len);
|
|
|
|
outputStream.flush();
|
|
|
|
}
|
|
|
|
outputStream.close();
|
|
|
|
inputStream.close();
|
|
|
|
downloadInterface.onDownload(file.getAbsolutePath());
|
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
downloadInterface.onError(e);
|
|
|
|
}
|
|
|
|
}
|
2020-04-16 01:53:25 +08:00
|
|
|
}
|