From 0fd690cf61ce8b954cd742fb790cd8c3cce18d6d Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期二, 03 一月 2023 17:31:02 +0800
Subject: [PATCH] 备份

---
 AndroidOpenDemo/DeviceAddModule/src/main/java/com/mm/android/deviceaddmodule/openapi/HttpClient.java |  113 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 110 insertions(+), 3 deletions(-)

diff --git a/AndroidOpenDemo/DeviceAddModule/src/main/java/com/mm/android/deviceaddmodule/openapi/HttpClient.java b/AndroidOpenDemo/DeviceAddModule/src/main/java/com/mm/android/deviceaddmodule/openapi/HttpClient.java
index 1a698f3..3dffb94 100644
--- a/AndroidOpenDemo/DeviceAddModule/src/main/java/com/mm/android/deviceaddmodule/openapi/HttpClient.java
+++ b/AndroidOpenDemo/DeviceAddModule/src/main/java/com/mm/android/deviceaddmodule/openapi/HttpClient.java
@@ -1,15 +1,37 @@
 package com.mm.android.deviceaddmodule.openapi;
 
+import android.net.Uri;
+import android.text.TextUtils;
+
+import com.google.gson.Gson;
+import com.google.gson.GsonBuilder;
+import com.google.gson.JsonElement;
+import com.google.gson.JsonObject;
+import com.google.gson.JsonParser;
+import com.google.gson.reflect.TypeToken;
+import com.mm.android.deviceaddmodule.LCDeviceEngine;
 import com.mm.android.deviceaddmodule.mobilecommon.utils.LogUtil;
 import java.io.ByteArrayOutputStream;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.OutputStream;
 import java.net.URL;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+import java.util.Map;
+
 import javax.net.ssl.HttpsURLConnection;
 
 public class HttpClient {
     private static final String TAG=HttpClient.class.getSimpleName();
+
+    private static boolean showErrorInfo = false;
+
+    public static void SetShowErrorInfo(boolean isShow){
+        showErrorInfo = isShow;
+    }
+
     /**
      * post
      *
@@ -20,7 +42,7 @@
      * @return
      */
     public static String post(String urlStr, String paramStr, String contentType, String debugTag,int timeOut) throws IOException {
-        LogUtil.debugLog(TAG,urlStr+"..."+paramStr);
+        LogUtil.debugLog(TAG,urlStr+"..debuglogHdlkaede.."+paramStr);
         HttpsURLConnection conn = null;
         String resultData = "";
         OutputStream outputStream = null;
@@ -38,6 +60,7 @@
             conn.setUseCaches(false);
             conn.setInstanceFollowRedirects(true);
             conn.setRequestProperty("Content-Type", contentType);
+            conn.setRequestProperty("Authorization","Bearer "+ LCDeviceEngine.newInstance().accessToken);
             conn.connect();
             outputStream = conn.getOutputStream();
             outputStream.write(paramStr.getBytes());
@@ -60,8 +83,11 @@
                 baos.flush();
                 if (debugTag != null)
                     LogUtil.debugLog(debugTag, "request data " + resultData);
-            } else
-                throw new IOException(String.format("http_get failed: status=%d", responseCode));
+            } else {
+                if(showErrorInfo) {
+                    throw new IOException(String.format("http_get failed: status=%d : url=%d", responseCode,urlStr));
+                }
+            }
         } catch (IOException e) {
             throw e;
         } catch (Throwable e) {
@@ -85,4 +111,85 @@
         }
         return resultData;
     }
+
+
+    /**
+     * 闇�瑕佹寜瀛楁瘝鎺掑簭
+     *
+     * @param json 鎵�鏈夊瓧娈典娇鐢╱rlParameter鎷兼帴锛岄櫎浜哸ppSecret
+     */
+    public static String getSign(JsonObject json, String appSecret) {
+        String builder = jsonToUrlParameter(json) +
+                appSecret;
+        return HDLMD5Utils.encodeMD5(builder);
+    }
+
+
+    private static JsonObject getBodyJson(Map<String,Object> map) {
+
+        JsonObject object = new JsonObject();
+
+        for (Map.Entry<String, Object> entry : map.entrySet()) {
+            object.addProperty(entry.getKey(), entry.getValue().toString());
+        }
+        return object;
+    }
+
+
+
+
+    /**
+     * 娣诲姞sign瀛楁
+     */
+    public static JsonObject encrypt(Map<String,Object> map ) {
+        final String timestamp = String.valueOf(System.currentTimeMillis());
+        final JsonObject json = getBodyJson(map);
+        if (json != null) {
+            json.addProperty("appKey", CONST.APPID);
+            json.addProperty("timestamp", timestamp);
+            json.addProperty("sign", getSign(json, CONST.SECRET));
+        }
+        return json;
+    }
+
+
+
+    private static String jsonToUrlParameter(JsonObject object) {
+        final Map<String, String> map = new Gson().fromJson(object, new TypeToken<Map<String, String>>() {
+        }.getType());
+        final Uri.Builder builder = new Uri.Builder();
+        List<String> list = new ArrayList<>(map.keySet());
+        Collections.sort(list);
+        for (String key : list) {
+            //鍒ゆ柇褰撳墠鍊兼槸鍚﹂渶瑕佸弬涓庣鍚嶏紝淇濇寔璺熶簯绔竴鑷�
+            if (IfValueNeedSign(map.get(key))) {
+                builder.appendQueryParameter(key, map.get(key));
+//                HDLSDKLog.e("瑕佺鍚嶏細" + key + " 锛�" + map.get(key));
+            } else {
+//                HDLSDKLog.e("涓嶉渶瑕佺鍚嶏細" + key + " 锛�" + map.get(key));
+            }
+        }
+        return builder.build().getQuery();
+    }
+
+    /**
+     * 鍒ゆ柇褰撳墠鍊兼槸鍚﹂渶瑕佸弬涓庣鍚嶏紝淇濇寔璺熶簯绔竴鑷�
+     * 绌哄瓧绗︿覆涓嶅弬涓�
+     * 鏁扮粍,闆嗗悎,瀵硅薄涓嶅弬涓�
+     *
+     * @param valueStr
+     * @return
+     */
+    private static boolean IfValueNeedSign(String valueStr) {
+        if (TextUtils.isEmpty(valueStr))
+            return false;
+        final char[] strChar = valueStr.substring(0, 1).toCharArray();
+        final char firstChar = strChar[0];
+        //System.out.println("getJSONType firstChar = "+firstChar);
+        if (firstChar != '{' && firstChar != '[')
+            return true;
+
+        return false;
+    }
+
 }

--
Gitblit v1.8.0