From 148af6b2f57be264c84d0991237fbd7ddea491a4 Mon Sep 17 00:00:00 2001
From: yujian <yujian@123.com>
Date: 星期一, 04 十一月 2019 09:55:55 +0800
Subject: [PATCH] Merge branch 'div' of ssh://193.112.35.168:29418/fanli-server into div

---
 utils/src/main/java/org/yeshi/utils/HttpUtil.java |  121 ++++++++++++++++++++++++++++++----------
 1 files changed, 91 insertions(+), 30 deletions(-)

diff --git a/utils/src/main/java/org/yeshi/utils/HttpUtil.java b/utils/src/main/java/org/yeshi/utils/HttpUtil.java
index d1fbf3f..cd6654a 100644
--- a/utils/src/main/java/org/yeshi/utils/HttpUtil.java
+++ b/utils/src/main/java/org/yeshi/utils/HttpUtil.java
@@ -9,8 +9,11 @@
 import java.net.MalformedURLException;
 import java.net.URL;
 import java.net.URLEncoder;
+import java.security.KeyStore;
 import java.util.Iterator;
 import java.util.Map;
+
+import javax.net.ssl.SSLContext;
 
 import org.apache.commons.httpclient.Header;
 import org.apache.commons.httpclient.HttpClient;
@@ -24,6 +27,7 @@
 import org.apache.commons.httpclient.methods.multipart.Part;
 import org.apache.commons.httpclient.methods.multipart.StringPart;
 import org.apache.commons.io.FileUtils;
+import org.apache.http.HttpEntity;
 import org.apache.http.HttpHost;
 import org.apache.http.auth.AuthScope;
 import org.apache.http.auth.UsernamePasswordCredentials;
@@ -31,13 +35,15 @@
 import org.apache.http.client.config.RequestConfig;
 import org.apache.http.client.methods.CloseableHttpResponse;
 import org.apache.http.client.methods.HttpPost;
+import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
+import org.apache.http.conn.ssl.SSLContexts;
+import org.apache.http.entity.StringEntity;
 import org.apache.http.impl.client.BasicCredentialsProvider;
 import org.apache.http.impl.client.CloseableHttpClient;
 import org.apache.http.impl.client.HttpClients;
 import org.apache.http.util.EntityUtils;
 import org.yeshi.utils.entity.ProxyIP;
 
-import net.sf.json.JSONArray;
 import net.sf.json.JSONObject;
 
 public class HttpUtil {
@@ -52,39 +58,41 @@
 		return "";
 	}
 
-	public static String getShortLink(String url) {
-		String shortLink = getShortLink2(url);
-		if (StringUtil.isNullOrEmpty(shortLink))
-			shortLink = getShortLink3(url);
+	public static String getShortLink(String url) {
+		// return url;
+		String shortLink = getShortLink3(url);
 		if (StringUtil.isNullOrEmpty(shortLink))
 			shortLink = getShortLink1(url);
+		if (StringUtil.isNullOrEmpty(shortLink))
+			shortLink = getShortLink2(url);
 		return shortLink;
 	}
 
 	private static String getShortLink1(String url) {
 		try {
-			String totalUrl = String.format("http://api.suolink.cn/api.php?url=%s", URLEncoder.encode(url));
+			String totalUrl = String.format(
+					"http://suo.im/api.htm?format=json&url=%s&key=5d7728078e676d45275f816b@681bb0446f1e6af4f8fc6ce3cad2a684",
+					URLEncoder.encode(url));
 			String result = get(totalUrl, null);
-			if (!StringUtil.isNullOrEmpty(result) && result.startsWith("http"))
-				return result.trim();
+			System.out.println(result);
+			try {
+				JSONObject json = JSONObject.fromObject(result);
+				return json.optString("url");
+			} catch (Exception e) {
+			}
 		} catch (Exception e) {
-			return url;
 		}
 		return null;
 	}
 
+	// 鎼滅嫄缃戝潃
 	private static String getShortLink2(String url) {
 		try {
-			String totalUrl = String.format(
-					"https://api.weibo.com/2/short_url/shorten.json?source=3403499693&url_long=%s",
-					URLEncoder.encode(url));
+			String totalUrl = String.format("https://sohu.gg/api/?key=2zumZxsL8MuX&url=%s",
+					URLEncoder.encode(url, "UTF-8"));
 			String result = get(totalUrl, null);
-			JSONObject data = JSONObject.fromObject(result);
-			JSONArray array = data.optJSONArray("urls");
-			data = array.optJSONObject(0);
-			String shortUrl = data.optString("url_short");
-			if (!StringUtil.isNullOrEmpty(shortUrl))
-				return shortUrl;
+			if (result != null && result.startsWith("http"))
+				return result;
 		} catch (Exception e) {
 			e.printStackTrace();
 		}
@@ -93,16 +101,11 @@
 
 	private static String getShortLink3(String url) {
 		try {
-			String totalUrl = String.format(
-					"https://api.weibo.com/2/short_url/shorten.json?source=2963429064&url_long=%s",
-					URLEncoder.encode(url));
+			String totalUrl = String.format("http://h5.flq001.com/short/createShort?url=%s",
+					URLEncoder.encode(url, "UTF-8"));
 			String result = get(totalUrl, null);
 			JSONObject data = JSONObject.fromObject(result);
-			JSONArray array = data.optJSONArray("urls");
-			data = array.optJSONObject(0);
-			String shortUrl = data.optString("url_short");
-			if (!StringUtil.isNullOrEmpty(shortUrl))
-				return shortUrl;
+			return data.optString("short_url");
 		} catch (Exception e) {
 			e.printStackTrace();
 		}
@@ -321,7 +324,6 @@
 		return null;
 	}
 
-	
 	public static String postSimple(String url) {
 		HttpClient client = new HttpClient();
 		PostMethod method = new PostMethod(url);
@@ -335,8 +337,7 @@
 		}
 		return "";
 	}
-	
-	
+
 	public static String post(String url) {
 		HttpClient client = new HttpClient();
 		PostMethod method = new PostMethod(url);
@@ -413,7 +414,7 @@
 
 	public static String post(String url, Map<String, String> map, Map<String, String> headers) {
 		HttpClient client = new HttpClient();
-//		 client.getHostConfiguration().setProxy("192.168.1.122", 8888);
+		// client.getHostConfiguration().setProxy("192.168.1.122", 8888);
 		PostMethod pm = new PostMethod(url);// 鍒涘缓HttpPost瀵硅薄
 		NameValuePair[] ns = new NameValuePair[map.keySet().size()];
 		Iterator<String> its = map.keySet().iterator();
@@ -543,4 +544,64 @@
 		}
 		return null;
 	}
+
+	@SuppressWarnings("deprecation")
+	public static String httpsPost(String url, String body, String pwd, InputStream cert) throws Exception {
+		String result = "";
+		KeyStore keyStore = KeyStore.getInstance("PKCS12");
+		InputStream instream = cert;
+		try {
+			keyStore.load(instream, pwd.toCharArray());
+		} finally {
+			instream.close();
+		}
+
+		// Trust own CA and all self-signed certs
+		SSLContext sslcontext = SSLContexts.custom().loadKeyMaterial(keyStore, pwd.toCharArray()).build();
+		// Allow TLSv1 protocol only
+		SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslcontext, new String[] { "TLSv1" }, null,
+				SSLConnectionSocketFactory.BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
+		CloseableHttpClient httpclient = HttpClients.custom().setSSLSocketFactory(sslsf).build();
+		try {
+			HttpPost httppost = new HttpPost(url);
+			httppost.setHeader("Content-Type", "text/html;charset=UTF-8");
+			System.out.println("executing request" + httppost.getRequestLine());
+			httppost.setEntity(new StringEntity(body, "UTF-8"));
+			CloseableHttpResponse response = httpclient.execute(httppost);
+			try {
+				HttpEntity entity = response.getEntity();
+				if (entity != null) {
+					result = convertInputStreamToString(entity.getContent());
+				}
+				EntityUtils.consume(entity);
+			} finally {
+				response.close();
+			}
+		} finally {
+			httpclient.close();
+		}
+
+		return result;
+	}
+	
+	
+	
+	/**
+	 * 鑾峰彇post杩斿洖location
+	 * @param url
+	 * @return
+	 */
+	public static String getLocation(String url) {
+		HttpClient client = new HttpClient();
+		PostMethod method = new PostMethod(url);
+		try {
+			client.executeMethod(method);
+            return method.getResponseHeader("location").getValue();
+		} catch (HttpException e) {
+			e.printStackTrace();
+		} catch (IOException e) {
+			e.printStackTrace();
+		}
+		return null;
+	}
 }

--
Gitblit v1.8.0