From f718d23a262a5a8e1241fdeaeb4153399f95e79d Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期二, 21 四月 2020 09:19:05 +0800
Subject: [PATCH] 20200421

---
 HDL_ON/DAL/Server/HttpServerRequest.cs |  970 ++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 922 insertions(+), 48 deletions(-)

diff --git a/HDL_ON/DAL/Server/HttpServerRequest.cs b/HDL_ON/DAL/Server/HttpServerRequest.cs
index 30f853f..d7c2587 100644
--- a/HDL_ON/DAL/Server/HttpServerRequest.cs
+++ b/HDL_ON/DAL/Server/HttpServerRequest.cs
@@ -1,74 +1,948 @@
-锘縩amespace HDL_ON.DAL.Server
+锘縰sing System;
+using System.Collections.Generic;
+using System.IO;
+using System.Net;
+using System.Text;
+using HDL_ON.Entity;
+using Newtonsoft.Json.Linq;
+using Shared;
+
+namespace HDL_ON.DAL.Server
 {
     public partial class HttpServerRequest
     {
+
+        /*
+         * json鏍煎紡
+           "{" +
+              "\"sss\":" + "\"" + sss + "\"" + "," +
+              "\"xxx\":" + xxx + "," +
+           "}";
+
+            鑾峰彇杩斿洖鐨勬暟鎹�
+            var sss = Newtonsoft.Json.Linq.JObject.FromObject("sss");
+            var xxx = homeJsonStr.GetValue("xxx").ToString(),
+
+            
+                    Dictionary<string, object> d = new Dictionary<string, object>();
+                    d.Add("Id", fId);
+                    var jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+
+
+              */
+
+        public string relaseaSever = "https://global.hdlcontrol.com/HangZhouHdlCloudApi";
+        public string debugSever = "https://global.hdlcontrol.com/ProposedProductionApi";
+
+        string severAddress;
+
+        public HttpServerRequest()
+        {
+#if DEBUG
+            severAddress = debugSever;
+#else
+            severAddress = relaseaSever;
+#endif
+        }
+
+        public string GetRequestResultMsg(string resultCode)
+        {
+            string result = "";
+            switch (resultCode.ToUpper())
+            {
+                case "USERNAMEORPWDERROR":
+                    result = Language.StringByID(StringId.LoginFailed_AccountOrPasswordError);
+                    break;
+                case "ACCOUNTNOEXISTS":
+                    result = Language.StringByID(StringId.ACCOUNTNOEXISTS);
+                    break;
+                case "SENDFAIL":
+                    result = Language.StringByID(StringId.FailedToSendVerificationCode);
+                    break;
+                case "EXIST":
+                    result = Language.StringByID(StringId.AccountAlreadyExists);
+                    break;
+                case "Self:Net_Error":
+                    result = Language.StringByID(StringId.NetworkAnomaly);
+                    break;
+            }
+            return result;
+        }
+
+
+
+        #region 娉ㄥ唽銆佺櫥褰曢儴鍒�
         /// <summary>
         /// 璐﹀彿鐧诲綍-浣跨敤瀵嗙爜
         /// </summary>
-        public ResponsePack LoginByPassword(string account,string password,int company)
+        public ResponsePack LoginByPassword(string account, string password)
         {
-            var requestObj = new LoginObj() { Account = account, Password = password, Company = company };
-            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(requestObj);
-            var revertObj = RequestHttps(HttpRequesMethods.Login.ToString(), requestJson, "");
-            return revertObj;
+            string jsonString = "{" +
+                                "\"Account\":" + "\"" + account + "\"" + "," +
+                                "\"Password\":" + "\"" + password + "\"" + 
+                                "}";
+            return RequestHttps($"{severAddress}/ZigbeeUsers/Login", jsonString, false);
         }
 
         /// <summary>
-        /// 鎵嬫満鍙风爜娉ㄥ唽寮犲悧
+        /// 楠岃瘉鐮佺櫥褰�
+        /// </summary>
+        public ResponsePack LoginValidCode(string account,string vCode)
+        {
+            Dictionary<string, object> d = new Dictionary<string, object>();
+            d.Add("Account", account);
+            d.Add("Code", vCode);
+            d.Add("Language", Language.CurrentLanguage);
+            d.Add("AreaCode", "86");
+            var jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+            return RequestHttps($"{severAddress}/ZigbeeUsers/LoginValidCode", jsonString, false);
+        }
+
+        /// <summary>
+        /// 鎵嬫満鍙风爜娉ㄥ唽
         /// </summary>
         /// <param name="mobileNumber"></param>
         /// <param name="password"></param>
         /// <param name="language"></param>
         public ResponsePack RegisterPhone(string mobileNumber, string password, string language)
         {
-            var requestObj = new SignInObj() { Account = mobileNumber, Password = password, Language = language };
-            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(requestObj);
-            return RequestHttps(HttpRequesMethods.SignIn.ToString(), requestJson, "");
+            string jsonString = "{" +
+                                "\"Account\":" + "\"" + mobileNumber + "\"" + "," +
+                                "\"Password\":" + "\"" + password + "\"" + "," +
+                                "\"Language\":" + "\"" + language + "\"" +
+                                "\"AreaCode\":" + "\"" + "86" + "\"" +
+                                "}";
+            return RequestHttps($"{severAddress}/SignIn", jsonString, false);
+        }
+
+        public ResponsePack GetAreaCode()
+        {
+            string requestJson = "{}";
+            return RequestHttps($"{severAddress}/ZigbeeUsers/GetAreaCode", requestJson, false);
         }
 
         /// <summary>
-        /// 楠岃瘉楠岃瘉鐮�
+        /// 楠岃瘉鐭俊鎴栬�呴偖绠遍獙璇佺爜锛屼箣鍚庢敞鍐�
         /// </summary>
-        public ResponsePack ValidateSmsCode(string mobileNumber, string code)
-        {
-            var requestObj = new ValidateSmsCodeObj() { Phone = mobileNumber, Code = code };
-            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(requestObj);
-            return RequestHttps(HttpRequesMethods.ValidateSmsCode.ToString(), requestJson, "");
-        }
-
-        /// <summary>
-        /// 楠岃瘉鎵嬫満鍙锋槸鍚﹀凡缁忚娉ㄥ唽
-        /// </summary>
-        /// <param name="phoneNum">鎵嬫満鍙风爜</param>
-        public ResponsePack IsExistingAccount(string phoneNum)
-        {
-            var requestObj = new IsExistingAccountObj() { Account = phoneNum };
-            var requesetJson = Newtonsoft.Json.JsonConvert.SerializeObject(requestObj);
-            return RequestHttps(HttpRequesMethods.IsExistingAccount.ToString(), requesetJson, "");
-        }
-        /// <summary>
-        /// 鑾峰彇楠岃瘉鐮�
-        /// </summary>
-        /// <param name="phoneNum">鎵嬫満鍙风爜</param>
-        public ResponsePack GetPhoneVerificationCode(string phoneNum, int company)
-        {
-            var requestObj = new SignPhoneObj() { Phone = phoneNum, Company = company };
-            var requesetJson = Newtonsoft.Json.JsonConvert.SerializeObject(requestObj);
-            return RequestHttps(HttpRequesMethods.SignPhone.ToString(), requesetJson, "");
-        }
-
-        /// <summary>
-        /// 楠岃瘉楠岃瘉鐮�
-        /// </summary>
-        /// <param name="mobileNumber"></param>
-        /// <param name="vCode"></param>
+        /// <param name="account">璐﹀彿</param>
+        /// <param name="password">瀵嗙爜</param>
+        /// <param name="entryPassword">纭瀵嗙爜</param>
+        /// <param name="code">楠岃瘉鐮�</param>
+        /// <param name="areaCode"></param>
         /// <returns></returns>
-        public ResponsePack SendSms(string mobileNumber, string vCode)
+        public ResponsePack ValidataCodeAndRegister(string account, string password, string entryPassword, string code, int areaCode)
         {
-            var requestObj = new ValidateSmsCodeObj() { Phone = mobileNumber, Code = vCode };
-            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(requestObj);
-            return RequestHttps(HttpRequesMethods.ValidateSmsCode.ToString(), requestJson, "");
+            //var requestObj = new ValidateSmsCodeObj() { Phone = accout, Code = code };
+            //var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(requestObj);
+            string requestJson = "{" +
+                                "\"Account\":" + "\"" + account + "\"" + "," +
+                                "\"Password\":" + "\"" + password + "\"" + "," +
+                                "\"EnterPassword\":" + "\"" + entryPassword + "\"" + "," +
+                                "\"Language\":" + "\"" + MainPage.LoginUser.language.ToLower() + "\"" + "," +
+                                "\"Code\":" + "\"" + code + "\"" + "," +
+                                "\"RegisterSoruce\":" + 0 + "," +
+                                "\"AreaCode\":" + areaCode +
+                                "}";
+            return RequestHttps($"{severAddress}/ZigbeeUsers/ValidataCodeAndRegisterAccount", requestJson, false);
         }
 
+
+        /// <summary>
+        /// 鑾峰彇娉ㄥ唽楠岃瘉鐮�
+        /// </summary>
+        public ResponsePack GetPhoneRegisterVerCode(string account)
+        {
+            string jsonString = "{" +
+                                "\"Account\":" + "\"" + account + "\"" + "," +
+                                "\"Company\":" + MainPage.Company + "," +
+                                "\"Language\":" + "\"" +  MainPage.LoginUser.language.ToLower() + "\"" + "," +
+                                "\"AreaCode\":" + OnAppConfig.Instance.CountryNumber +
+                                "}";
+            return RequestHttps($"{severAddress}/ZigbeeUsers/RegisterSendVerCode", jsonString, false);
+
+        }
+
+        
+
+
+        /// <summary>
+        /// 鑾峰彇鐧诲綍楠岃瘉鐮�
+        /// </summary>
+        /// <param name="phoneNum">鎵嬫満鍙风爜</param>
+        public ResponsePack GetPhoneLoginVerCode(string phoneNum)
+        {
+
+            string jsonString = "{" +
+                                "\"Account\":" + "\"" + phoneNum + "\"" + "," +
+                                "\"AreaCode\":" + "86" + 
+                                "}";
+            return RequestHttps($"{severAddress}/ZigbeeUsers/LoginSendVerCode", jsonString, false);
+        }
+
+        /// <summary>
+        /// 鍙戦�侀獙璇佺爜
+        /// </summary>
+        public ResponsePack SendSms(string account)
+        {
+            string jsonString = "{" +
+                                "\"Account\":" + "\"" + account + "\"" + "," +
+                                "\"Company\":" + MainPage.Company + "," +
+                                "\"Language\":" + "\"" + Language.CurrentLanguage + "\"" + "," +
+                                "\"AreaCode\":" + OnAppConfig.Instance.CountryNumber +
+                                "}";
+            return RequestHttps($"{severAddress}/ZigbeeUsers/LoginSendVerCode", jsonString, false);
+        }
+
+        /// <summary>
+        /// 楠岃瘉楠岃瘉鐮�
+        /// </summary>
+        /// <param name="account"></param>
+        /// <param name="code"></param>
+        /// <returns></returns>
+        public ResponsePack ValidatorCode(string account, string code, int countryIndex)
+        {
+            string jsonString = "{" +
+                                "\"Account\":" + "\"" + account + "\"" + "," +
+                                "\"Code\":" + "\"" + code + "\"" + "," +
+                                "\"Language\":" + "\"" + Language.CurrentLanguage + "\"" + "," +
+                                "\"AreaCode\":" + countryIndex +
+                                "}";
+            return RequestHttps($"{severAddress}/ZigbeeUsers/ValidatorCode", jsonString, false);
+        }
+
+        /// <summary>
+        /// 閲嶈瀵嗙爜
+        /// </summary>
+        /// <returns></returns>
+        public ResponsePack ResetPassword(string account, string password, string rePassword, int countryIndex)
+        {
+            string jsonString = "{" +
+                                "\"Account\":" + "\"" + account + "\"" + "," +
+                                "\"Password\":" + "\"" + password + "\"" + "," +
+                                "\"AgainPassword\":" + "\"" + rePassword + "\"" + "," +
+                                "\"AreaCode\":" + countryIndex +
+                                "}";
+            return RequestHttps($"{severAddress}/ZigbeeUsers/ResetPassword", jsonString, false);
+        }
+        #endregion
+
+        #region 涓汉淇℃伅閮ㄥ垎
+        /// <summary>
+        /// 鑾峰彇鐢ㄦ埛淇℃伅
+        /// </summary>
+        /// <returns></returns>
+        public void GetUserInfo()
+        {
+            Dictionary<string, object> d = new Dictionary<string, object>();
+            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+            var revertObj = RequestHttps($"{severAddress}/ZigbeeUsers/GetAccountInfo", requestJson, true);
+
+            if (revertObj.StateCode.ToUpper() == "SUCCESS")
+            {
+                var dataStr = JObject.FromObject(revertObj.ResponseData);
+                //"DistributedMark": "96439601-fd26-4768-8440-1d9dfa32c109",  < !--甯愬彿Id-- >
+                MainPage.LoginUser.userEmailInfo = dataStr.GetValue("Email").ToString();
+                MainPage.LoginUser.userMobileInfo = dataStr.GetValue("Phone").ToString();
+                FileStream fs = null;
+                try
+                {
+                    var headImageString = dataStr.GetValue("HeadImage").ToString();
+                    var jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(headImageString);
+                    var headImageBytes = Newtonsoft.Json.JsonConvert.DeserializeObject<byte[]>(jsonString);
+                    MainPage.LoginUser.headImagePageBytes = headImageBytes;
+                    var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "/", "headImage.png");
+
+#if DEBUG
+                    Application.RunOnMainThread(() =>
+                    {
+                        new Tip() { CloseTime = 5, Text = filePath }.Show(MainPage.BasePageView);
+                    });
+#endif
+                    fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
+                    fs.Write(headImageBytes, 0, headImageBytes.Length);
+                    fs.Flush();
+                    MainPage.LoginUser.headImagePagePath = filePath;
+                } catch (Exception ex)
+                {
+                    MainPage.Log($"download headImage error : {ex.Message}");
+                }
+                finally
+                {
+                    if (fs != null)
+                    {
+                        fs.Close();
+                    }
+                }
+                // "GesturePwd": null,  < !--鎵嬪娍瀵嗙爜-- >
+                // "StringPwd": null , < !--瀛楃涓插瘑鐮�-- >
+                MainPage.LoginUser.userName = dataStr.GetValue("UserName").ToString();
+
+                Application.RunOnMainThread(() =>
+                {
+                });
+
+                MainPage.LoginUser.SaveUserInfo();
+                MainPage.Log("鑾峰彇鐢ㄦ埛淇℃伅鎴愬姛銆�");
+            }
+
+        }
+
+        /// <summary>
+        /// 鏇存柊鐢ㄦ埛鏄电О
+        /// </summary>
+        /// <param name="userName"></param>
+        /// <returns></returns>
+        public ResponsePack EditUserName(string userName)
+        {
+            Dictionary<string, string> d = new Dictionary<string, string>();
+            d.Add("UserName", userName);
+            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+            var revertObj = RequestHttps($"{severAddress}/ZigbeeUsers/UpdateUserName", requestJson, true);
+            return revertObj;
+
+        }
+
+        /// <summary>
+        /// 鏇存柊鐢ㄦ埛澶村儚
+        /// </summary>
+        /// <param name="vs"></param>
+        /// <returns></returns>
+        public string UpdataUserHeadImage(string fileName)
+        {
+            FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read);
+            byte[] bytes = new byte[fs.Length];
+            fs.Read(bytes, 0, bytes.Length);
+
+            Dictionary<string, byte[]> d = new Dictionary<string, byte[]>();
+            d.Add("HeadImage", bytes);
+            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+
+            var revertObj = RequestHttps($"{severAddress}/ZigbeeUsers/UpdateHeadImage", requestJson, true);
+            return revertObj.StateCode;
+        }
+        #endregion
+
+        #region 浣忓畢閮ㄥ垎
+        /// <summary>
+        /// 鑾峰彇浣忓畢鍒楄〃
+        /// </summary>
+        public string GetHomePager()
+        {
+            string jsonString = "{" +
+                                "\"RequestVersion\":" + "\"" + MainPage.VersionString + "\"" + "," +
+                                "\"RequestSource\":" + "\"" + "2" + "\"" + "," +
+                                "\"HomeType\":" + "\"" + "1" + "\"" + "," +
+                                "\"LoginAccessToken\":" + "\"" + MainPage.LoginUser.loginTokenString + "\"" +
+                                "}";
+            var responsePack = RequestHttps($"{severAddress}/App/GetHomePager", jsonString,false);
+
+            if (responsePack.StateCode.ToUpper() == "SUCCESS")
+            {
+                var dataStr = JObject.FromObject(responsePack.ResponseData);
+                //娌℃湁浣忓畢
+                if (dataStr.GetValue("PageData").ToString() == "[]")
+                {
+
+                }
+                else
+                {
+                    MainPage.LoginUser.regionList = new List<RegionInfoRes>();
+                    foreach (var jsonData in dataStr.GetValue("PageData"))
+                    {
+                        var homeJsonStr = JObject.FromObject(jsonData);
+                        var home = new RegionInfoRes()
+                        {
+                            RegionID = homeJsonStr.GetValue("Id").ToString(),
+                            RegionName = homeJsonStr.GetValue("RegionName").ToString(),
+                            Name = homeJsonStr.GetValue("Name").ToString(),
+                            Address = homeJsonStr.GetValue("Address").ToString(),
+                        };
+                        MainPage.LoginUser.regionList.Add(home);
+                    }
+                    DB_ResidenceData.residenceData.SaveResidenceData();
+                    MainPage.LoginUser.SaveUserInfo();
+                }
+            }
+            return responsePack.StateCode;
+
+
+        }
+        /// <summary>
+        /// 缂栬緫浣忓畢淇℃伅
+        /// </summary>
+        /// <returns></returns>
+        public ResponsePack EditResidenceInfo()
+        {
+            //鍒涘缓瀛楀吀
+            Dictionary<string, object> d = new Dictionary<string, object>();
+            //娣诲姞鍏冪礌
+            d.Add("RequestVersion", MainPage.VersionString);
+            d.Add("RequestSource", "2");
+            d.Add("LoginAccessToken", MainPage.LoginUser.loginTokenString);
+            d.Add("HomeId", DB_ResidenceData.residenceData.residecenInfo.RegionID);
+            d.Add("HomeType", 1);
+            d.Add("Name", DB_ResidenceData.residenceData.residecenInfo.Name);
+            d.Add("Address", DB_ResidenceData.residenceData.residecenInfo.Address);
+            //娣诲姞瀹屾垚浠ュ悗鎶婂瓧鍏哥被涓暟鎹牸寮忓寲涓簀son瀛楃涓�
+            //灏嗗璞¤浆涓簀son瀛楃涓�
+
+            string jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+            return RequestHttps($"{severAddress}/App/EditHome", jsonString, false);
+        }
+
+
+        #endregion
+
+        #region 鑾峰彇澶╂皵閮ㄥ垎
+        /// <summary>
+        /// 鑾峰彇鎸囧畾缁忕含搴︾殑鍩庡競淇℃伅
+        /// </summary>
+        public void GetCityInfo(string lon, string lat)
+        {
+            System.Threading.Tasks.Task.Run(() =>
+            {
+                while (true)
+                {
+                    //鑾峰彇澶╂皵
+                    var webClient = new WebClient();
+                    string url = $"https://developer.hdlcontrol.com/Weather/Weather/FindCity/?lon={lon}&lat={lat}";
+                    string responseString = null;
+                    try
+                    {
+                        responseString = Encoding.UTF8.GetString(webClient.DownloadData(url));
+                    }
+                    catch (Exception ex)
+                    {
+                        MainPage.Log(ex.Message);
+                    }
+
+                    if (responseString != null)
+                    {
+                        try
+                        {
+                            var revertObj = Newtonsoft.Json.JsonConvert.DeserializeObject<ResponsePack>(responseString);
+                            JObject jt = Newtonsoft.Json.JsonConvert.DeserializeObject<JObject>(revertObj.ResponseData.ToString());
+                            MainPage.cityInfo.city = jt["City"].ToString();
+                            MainPage.cityInfo.cid = jt["Cid"].ToString();
+                            MainPage.cityInfo.location = jt.GetValue("Location").ToString();
+                            MainPage.cityInfo.province = jt.GetValue("Province").ToString();
+                            MainPage.cityInfo.country = jt.GetValue("Country").ToString();
+                            MainPage.cityInfo.timeZone = jt.GetValue("TimeZone").ToString();
+                            url = $"https://developer.hdlcontrol.com/Weather/Weather/GetAirQualityAndWeather/?cid={MainPage.cityInfo.cid}";
+                            responseString = null;
+                            responseString = Encoding.UTF8.GetString(webClient.DownloadData(url));
+                            revertObj = Newtonsoft.Json.JsonConvert.DeserializeObject<ResponsePack>(responseString);
+                            jt = Newtonsoft.Json.JsonConvert.DeserializeObject<JObject>(revertObj.ResponseData.ToString());
+                            MainPage.cityInfo.temperature = jt.GetValue("Temperature").ToString()+ "掳";
+                            MainPage.cityInfo.humidity = jt.GetValue("Humidity").ToString()+"%";
+                            MainPage.cityInfo.pm25 = jt.GetValue("Air_Quality").ToString();
+                            break;
+                        }
+                        catch (Exception ex)
+                        {
+                            MainPage.Log($"get weather error : {ex.Message}");
+                        }
+                    }
+                    System.Threading.Thread.Sleep(1000);
+                }
+                Shared.Application.RunOnMainThread(() => {
+                    try
+                    {
+                        HDL_ON.UI.HomePage.LoadEvent_RefreshAir();
+                    }
+                    catch { }
+                });
+            });
+        }
+
+        #endregion
+
+
+        #region 澶囦唤閮ㄥ垎
+        /// <summary>
+        /// 鑾峰彇浣忓畢澶囦唤鍒楄〃
+        /// </summary>
+        public Dictionary<int,string> GetRegionLastBackupId()
+        {
+            //Dialog dialog = new Dialog();
+            //dialog.Show();
+
+            Dictionary<int, string> backupList = new Dictionary<int, string>();
+            Dictionary<string, object> d = new Dictionary<string, object>();
+            d.Add("LevelID", DB_ResidenceData.residenceData.residecenInfo.RegionID);// 199200);
+            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+            var revertObj = RequestHttps("https://developer.hdlcontrol.com/api/GetUserFolder", requestJson, true);
+            if(revertObj == null || revertObj.ResponseData == null)
+            {
+                return new Dictionary<int, string>();
+            }
+            var jt = Newtonsoft.Json.JsonConvert.DeserializeObject<List<JObject>>(revertObj.ResponseData.ToString());
+            foreach (var j in jt)
+            {
+                var folderId = (int)j.GetValue("FolderID");
+                var folderName = j.GetValue("FolderName").ToString();
+                backupList.Add(folderId, folderName);
+            }
+            return backupList;
+        }
+
+        /// <summary>
+        /// 鑾峰彇澶囦唤鏂囦欢鍒楄〃
+        /// </summary>
+        public void GetBackupFileList(int levelId)
+        {
+            Dialog dialog = new Dialog();
+            dialog.Show();
+            Loading loading = new Loading();
+            dialog.AddChidren(loading);
+            loading.Start("");
+            new System.Threading.Thread(() =>
+            {
+                Dictionary<string, object> d = new Dictionary<string, object>();
+                d.Add("LevelID", levelId);
+                var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+                var revertObj = RequestHttps("https://developer.hdlcontrol.com/api/UserBackupList", requestJson, true);
+                var jt = Newtonsoft.Json.JsonConvert.DeserializeObject<List<JObject>>(revertObj.ResponseData.ToString());
+                #region 鎭㈠鎴块棿鏁版嵁
+
+
+                GetBackupRoom(jt,loading);
+                #endregion
+               
+                Application.RunOnMainThread(() => {
+                    loading.Hide();
+                    dialog.Close();
+                });
+            })
+            { IsBackground = true }.Start();
+
+        }
+
+        /// <summary>
+        /// 涓嬭浇鍥剧墖
+        /// </summary>
+        /// <param name="fileName"></param>
+        void DownloadImage(string fileName,int fId)
+        {
+            if (downImageList.Contains(fileName))
+            {
+                return;
+            }
+            else
+            {
+                downDeviceList.Add(fileName);
+            }
+
+            System.Text.RegularExpressions.Match match = System.Text.RegularExpressions.Regex.Match(fileName, @"^[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
+            if (match.Success)
+            {
+                FileStream fs = null;
+                try
+                {
+                    Dictionary<string, object> d = new Dictionary<string, object>();
+                    d.Add("Id", fId);
+                    var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+                    var revertObj = RequestHttps("https://developer.hdlcontrol.com/api/BackupDetail", requestJson, true);
+                    var jsonBytes = Newtonsoft.Json.JsonConvert.SerializeObject(revertObj.ResponseData);
+
+                    var bytes = Newtonsoft.Json.JsonConvert.DeserializeObject<byte[]>(jsonBytes);
+                    var byteStr = Encoding.UTF8.GetString(bytes);
+                    var ss = Newtonsoft.Json.JsonConvert.DeserializeObject<JObject>(byteStr);
+                    var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "/", fileName+".png");
+                    fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
+                    fs.Write(bytes, 0, bytes.Length);
+                    fs.Flush();
+
+                    MainPage.Log($"download image {fileName}");
+                }
+                catch (Exception ex)
+                {
+                    MainPage.Log("FileUtiles Code 113:" + ex.ToString());
+                }
+                finally
+                {
+                    try
+                    {
+                        if (fs != null)
+                        {
+                            fs.Close();
+                        }
+                    }
+                    catch (Exception ex)
+                    {
+                        MainPage.Log("FileUtils Code 121 :" + ex.ToString());
+                    }
+                }
+            }
+        }
+
+        /// <summary>
+        /// 鑾峰彇澶囦唤鎴块棿鏁版嵁
+        /// </summary>
+        void GetBackupRoom(List<JObject> jt, Loading loading)
+        {
+            var roomList = new Dictionary<JObject, Room>();
+
+            var roomsObject = jt.FindAll((room) => room.GetValue("FileName").ToString().StartsWith("Room_") && room.GetValue("FileName").ToString().Split('_').Length == 2);
+            foreach(var pp in jt)
+            {
+                if(pp.GetValue("FileName").ToString().StartsWith("Equipment"))
+                {
+                    MainPage.Log(pp.GetValue("FileName").ToString());
+
+
+                }
+
+
+            }
+            roomsObject = jt.FindAll((room) => room.GetValue("FileName").ToString().StartsWith("Equipment_OnePortBus"));
+            foreach (var roomJObj in roomsObject)
+            {
+                Dictionary<string, object> d = new Dictionary<string, object>();
+                d.Add("Id", (int)roomJObj.GetValue("Id"));
+                var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+                var revertObj = RequestHttps("https://developer.hdlcontrol.com/api/BackupDetail", requestJson, true);
+                var jsonBytes = Newtonsoft.Json.JsonConvert.SerializeObject(revertObj.ResponseData);
+                var byresss = Newtonsoft.Json.JsonConvert.DeserializeObject<byte[]>(jsonBytes);
+                var byteStr = Encoding.UTF8.GetString(byresss);
+                var ss = Newtonsoft.Json.JsonConvert.DeserializeObject<JObject>(byteStr);
+                //var RootPath = Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "/";
+                //var filePath = Path.Combine(RootPath, ss.GetValue("BackGroundImage").ToString()) + ".png";
+                //var room1 = new Room()
+                //{
+                //    sid = Guid.NewGuid().ToString(),
+                //    name = ss.GetValue("Name").ToString(),
+                //    floorIndex = 1,
+                //    backgroundImage = "Classification/Room/Roombg.png",
+                //    //backgroundImage = ss.GetValue("BackGroundImage").ToString() == "Room/r1.png" ? "Classification/Room/Roombg.png" : filePath,
+                //};
+                //DB_ResidenceData.residenceData.rooms.Add(room1);
+                //roomList.Add(ss, room1);
+
+            }
+            var index = 1;
+            foreach (var j in jt)
+            {
+                Application.RunOnMainThread(() =>
+                {
+                    int pro = (int)(index * 1.0 / jt.Count * 100);
+                    loading.Text = pro.ToString() + "%";
+                });
+                var fileName = j.GetValue("FileName").ToString();
+                var fileNameArrary = fileName.Split('_');
+                if (fileNameArrary.Length == 5 && fileName.Split('_')[0] == "Equipment")
+                {
+                    GetBackupFile(fileName, (int)j.GetValue("Id"), roomList);
+                }
+                else
+                {
+                    DownloadImage(fileName, (int)j.GetValue("Id"));
+                }
+                index++;
+            }
+            DB_ResidenceData.residenceData.SaveResidenceData();
+        }
+
+        List<string> downDeviceList = new List<string>();
+        List<string> downImageList = new List<string>();
+
+        /// <summary>
+        /// 鑾峰彇澶囦唤璁惧鏂囦欢
+        /// </summary>
+        void GetBackupFile(string fileName, int fId, Dictionary<JObject, Room> dir)
+        {
+            var type = fileName.Split('_')[1];
+            if (downDeviceList.Contains(fileName))
+            {
+                return;
+            }
+            else
+            {
+                downDeviceList.Add(fileName);
+            }
+            if (type == "LightSwitch" ||
+                type == "LightMixSwitch" ||
+                type == "LightDimming" ||
+                type == "LightDALI" ||
+                    type == "LightMixDimming" ||
+                    type == "LightLogic" ||
+                    type == "LightRGB" ||
+                    type == "AC" ||
+                    type == "HVAC" ||
+                    type == "ACPanel" ||
+                    type == "ACInfrared" ||
+                    type == "CurtainModel" ||
+                    type == "CurtainRoller" ||
+                    type == "CurtainTrietex")
+            {
+
+                MainPage.Log($"download file {fileName}");
+                Dictionary<string, object> d = new Dictionary<string, object>();
+                d.Add("Id", fId);
+                var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(d);
+                var revertObj = RequestHttps("https://developer.hdlcontrol.com/api/BackupDetail", requestJson, true);
+                //var jt = Newtonsoft.Json.JsonConvert.DeserializeObject<byte[]>(revertObj.ResponseData.ToString());
+                var jsonBytes = Newtonsoft.Json.JsonConvert.SerializeObject(revertObj.ResponseData);
+                var byresss = Newtonsoft.Json.JsonConvert.DeserializeObject<byte[]>(jsonBytes);
+                var byteStr = System.Text.Encoding.UTF8.GetString(byresss);
+                var ss = Newtonsoft.Json.JsonConvert.DeserializeObject<JObject>(byteStr);
+
+                /// <summary>
+                /// 鍔熻兘ID
+                /// 鍘傚晢浠g爜	2bytes;     01	HDL
+                /// 閫氳鏂瑰紡	1byte ;     01	HDL Bus; 02	Zigbee;03	KNX;04	Z-Wave
+                /// 浜у搧GUID	8bytes
+                /// 浜у搧绫诲埆	1byte ;     01  璋冨厜鍣�;02缁х數鍣�;03骞叉帴鐐规ā鍧�;04浼犳劅鍣�;05闈㈡澘
+                /// 鐗╂ā鍨嬬被鍨�2bytes      01 寮�鍏崇被    --01寮�鍏�;02鎻掑骇
+                ///		                02	鐓ф槑     --01寮�鍏崇被;02璋冨厜绫�;03鑹叉俯;04LED
+                ///		                03	閬槼     --01绐楀笜鐢垫満;02鐧惧彾绐�;03寮�鍚堝笜;04鍗峰笜
+                ///		                04	鎭掓俯鍣�    --01绌鸿皟;02鍦版殩;03姣涚粏绌鸿皟
+                ///             		05	鏂伴		
+                ///             		06	褰遍煶		
+                ///             		07	闊充箰		
+                ///		                08	鑳芥簮		
+                ///		                09	瀹夐槻
+                /// 閫氶亾鍙�	2bytes
+                /// Key_id  2bytes
+                /// </summary>
+                /// "00010112345678901234560101230123AABB";
+                var buffer = Guid.NewGuid().ToByteArray();
+                string guid = "";
+                if (buffer != null)
+                {
+                    for (int i = 0; i < buffer.Length; i++)
+                    {
+                        if (i > 7)
+                            break;
+                        guid += buffer[i].ToString("X2");
+
+                    }
+                }
+
+                //var guid = BitConverter.ToUInt32(buffer, 16).ToString();
+                List<string> roomIds = new List<string>();
+                foreach (var d1 in dir)
+                {
+                    var key = d1.Key;
+                    var des = key.GetValue("DeviceFilePathList");
+                    if (Newtonsoft.Json.JsonConvert.DeserializeObject<List<string>>(des.ToString()).Contains(fileName))
+                    {
+                        roomIds.Add(d1.Value.sid);
+                    }
+                }
+                switch (type)
+                {
+                    case "LightSwitch":
+                    case "LightMixSwitch":
+                        var light1 = DB_ResidenceData.residenceData.functionList.lights.Find((obj) => obj.bus_Data.SubnetID == (byte)ss.GetValue("SubnetID") &&
+                          obj.bus_Data.DeviceID == (byte)ss.GetValue("DeviceID") && obj.bus_Data.LoopID == (byte)ss.GetValue("LoopID"));
+                        if (light1 != null)
+                        {
+                            //light1.roomIdList.Add(roomSid);
+                            break;
+                        }
+                        DB_ResidenceData.residenceData.functionList.lights.Add(new Light()
+                        {
+                            sid = "000101" + guid + "0102010001AABB",
+                            name = ss.GetValue("Name").ToString(),
+                            trait = new List<Trait>() {
+                                    new Trait { attri="on_off", max=100,min = 0, value= new List<string> { "on","off"} },
+                                },
+                            roomIdList = roomIds,
+                            bus_Data = new BusData
+                            {
+                                SubnetID = (byte)ss.GetValue("SubnetID"),
+                                DeviceID = (byte)ss.GetValue("DeviceID"),
+                                LoopID = (byte)ss.GetValue("LoopID"),
+                            },
+                        });
+                        break;
+                    case "LightDimming":
+                    case "LightDALI":
+                    case "LightMixDimming":
+                        var light2 = DB_ResidenceData.residenceData.functionList.lights.Find((obj) => obj.bus_Data.SubnetID == (byte)ss.GetValue("SubnetID") &&
+                          obj.bus_Data.DeviceID == (byte)ss.GetValue("DeviceID") && obj.bus_Data.LoopID == (byte)ss.GetValue("LoopID"));
+                        if (light2 != null)
+                        {
+                            //light2.roomIdList.Add(roomSid);
+                            break;
+                        }
+                        DB_ResidenceData.residenceData.functionList.lights.Add(new Light()
+                        {
+                            sid = "000101" + guid + "0202020001AABB",
+                            name = ss.GetValue("Name").ToString(),
+                            trait = new List<Trait>() {
+                                        new Trait { attri="brightness", max=100,min = 0, value= new List<string> { "up","down"} },
+                                    },
+                            roomIdList = roomIds,
+                            //roomIdList = new List<string>() { "0001" },
+                            lastState = "20%",
+                            bus_Data = new BusData
+                            {
+                                SubnetID = (byte)ss.GetValue("SubnetID"),
+                                DeviceID = (byte)ss.GetValue("DeviceID"),
+                                LoopID = (byte)ss.GetValue("LoopID"),
+                            },
+                        });
+                        break;
+                    case "LightLogic":
+                    case "LightRGB":
+                        var light3 = DB_ResidenceData.residenceData.functionList.lights.Find((obj) => obj.bus_Data.SubnetID == (byte)ss.GetValue("SubnetID") &&
+                          obj.bus_Data.DeviceID == (byte)ss.GetValue("DeviceID") && obj.bus_Data.LoopID == (byte)ss.GetValue("LoopID"));
+                        if (light3 != null)
+                        {
+                            //light3.roomIdList.Add(roomSid);
+                            break;
+                        }
+                        DB_ResidenceData.residenceData.functionList.lights.Add(new Light()
+                        {
+                            sid = "000101" + guid + "0202040001AABB",
+                            name = ss.GetValue("Name").ToString(),
+                            trait = new List<Trait>() {
+                                        new Trait { attri="brightness", max=100,min = 0, value= new List<string> { "on","off"} },
+                                        new Trait { attri="color", max=100,min = 0, value= new List<string> { "255", "255", "255" } },
+                                    },
+                            roomIdList = roomIds,
+                            //roomIdList = new List<string>() { roomSid },
+                            bus_Data = new BusData
+                            {
+                                SubnetID = (byte)ss.GetValue("SubnetID"),
+                                DeviceID = (byte)ss.GetValue("DeviceID"),
+                                LoopID = (byte)ss.GetValue("LoopID"),
+                            },
+                        });
+                        break;
+                    case "AC":
+                    case "HVAC":
+                    case "ACPanel":
+                    case "ACInfrared":
+                        var ac = DB_ResidenceData.residenceData.functionList.aCs.Find((obj) => obj.bus_Data.SubnetID == (byte)ss.GetValue("SubnetID") &&
+                          obj.bus_Data.DeviceID == (byte)ss.GetValue("DeviceID") && obj.bus_Data.LoopID == (byte)ss.GetValue("LoopID"));
+                        if (ac != null)
+                        {
+                            //ac.roomIdList.Add(roomSid);
+                            break;
+                        }
+                        DB_ResidenceData.residenceData.functionList.aCs.Add(new AC()
+                        {
+                            sid = "000101" + guid + "0204010001AABB",
+                            name = ss.GetValue("Name").ToString(),
+                            trait = new List<Trait>() {
+                                        new Trait { attri="on_off", max=1,min = 0, value= new List<string> { "on","off"} },
+                                        new Trait { attri="mode", max = 2,min =0,value = new List<string>{ "auto", "heat", "cool","dry" } },
+                                        new Trait { attri = "fan",max = 3,min =0,value = new List<string>{ "low", "mid", "high" ,"auto"} },
+                                        new Trait { attri = "temperature", max = 32,min=16,value = new List<string>{"up","down" } },
+                                    },
+                            roomIdList = roomIds,
+                            //roomIdList = new List<string>() { roomSid},
+                            lastState = "鍒跺喎 涓 18掳C",
+                            bus_Data = new BusData
+                            {
+                                SubnetID = (byte)ss.GetValue("SubnetID"),
+                                DeviceID = (byte)ss.GetValue("DeviceID"),
+                                LoopID = (byte)ss.GetValue("LoopID"),
+                            },
+                        });
+                        break;
+                    //Entity.
+                    case "CurtainModel":
+                        var curtain1 = DB_ResidenceData.residenceData.functionList.curtains.Find((obj) => obj.bus_Data.SubnetID == (byte)ss.GetValue("SubnetID") &&
+                          obj.bus_Data.DeviceID == (byte)ss.GetValue("DeviceID") && obj.bus_Data.LoopID == (byte)ss.GetValue("LoopID"));
+                        if (curtain1 != null)
+                        {
+                            //curtain1.roomIdList.Add(roomSid);
+                            break;
+                        }
+                        DB_ResidenceData.residenceData.functionList.curtains.Add(new Curtain()
+                        {
+                            sid = "000101" + guid + "0203010001AABB",
+                            name = ss.GetValue("Name").ToString(),
+                            roomIdList = roomIds,
+                            //roomIdList = new List<string>() { roomSid },
+                            trait = new List<Trait>() {
+                                        new Trait { attri="on_off", max=2,min = 0, value= new List<string> { "on","off","stop"} },
+                                    },// "curtain",
+                            lastState = "寮�",
+                            bus_Data = new BusData
+                            {
+                                SubnetID = (byte)ss.GetValue("SubnetID"),
+                                DeviceID = (byte)ss.GetValue("DeviceID"),
+                                LoopID = (byte)ss.GetValue("LoopID"),
+                            },
+                        });
+                        break;
+                    case "CurtainRoller":
+                        var curtain2 = DB_ResidenceData.residenceData.functionList.curtains.Find((obj) => obj.bus_Data.SubnetID == (byte)ss.GetValue("SubnetID") &&
+                         obj.bus_Data.DeviceID == (byte)ss.GetValue("DeviceID") && obj.bus_Data.LoopID == (byte)ss.GetValue("LoopID"));
+                        if (curtain2 != null)
+                        {
+                            //curtain2.roomIdList.Add(roomSid);
+                            break;
+                        }
+                        DB_ResidenceData.residenceData.functionList.curtains.Add(new Curtain()
+                        {
+                            sid = "000101" + guid + "0203040001AABB",
+                            name = ss.GetValue("Name").ToString(),
+                            roomIdList = roomIds,
+                            //roomIdList = new List<string>() { roomSid },
+                            trait = new List<Trait>() {
+                                        new Trait { attri="on_off", max=100,min = 0, value= new List<string> { "on","off","stop"} },
+                                    },// "rollingshutter",
+                            lastState = "20%",
+                            bus_Data = new BusData
+                            {
+                                SubnetID = (byte)ss.GetValue("SubnetID"),
+                                DeviceID = (byte)ss.GetValue("DeviceID"),
+                                LoopID = (byte)ss.GetValue("LoopID"),
+                            },
+                        });
+                        break;
+                    case "CurtainTrietex":
+                        var curtain3 = DB_ResidenceData.residenceData.functionList.curtains.Find((obj) => obj.bus_Data.SubnetID == (byte)ss.GetValue("SubnetID") &&
+                         obj.bus_Data.DeviceID == (byte)ss.GetValue("DeviceID") && obj.bus_Data.LoopID == (byte)ss.GetValue("LoopID"));
+                        if (curtain3 != null)
+                        {
+                            //curtain3.roomIdList.Add(roomSid);
+                            break;
+                        }
+                        DB_ResidenceData.residenceData.functionList.curtains.Add(new Curtain()
+                        {
+                            sid = "000101" + guid + "0203030001AABB",
+                            name = ss.GetValue("Name").ToString(),
+                            roomIdList = roomIds,
+                            //roomIdList = new List<string>() { roomSid },
+                            trait = new List<Trait>() {
+                                        new Trait { attri="on_off", max=100,min = 0, value= new List<string> { "on","off","stop"} },
+                                    },
+                            lastState = "20%",
+                            bus_Data = new BusData
+                            {
+                                SubnetID = (byte)ss.GetValue("SubnetID"),
+                                DeviceID = (byte)ss.GetValue("DeviceID"),
+                                LoopID = (byte)ss.GetValue("LoopID"),
+                            },
+                        });
+                        break;
+                        //Entity.DB_ResidenceData.residenceData.functionList.floorHeatings.Add(new FloorHeating()
+                        //{
+                        //    sid = "12341212345678901234560704010004ABCD",
+                        //    name = "鍦扮儹",
+                        //    roomIdList = new List<string>() { "0001" },
+                        //    trait = new List<Trait>() {
+                        //                new Trait { attri="on_off", max=1,min = 0, value= new List<string> { "on","off"} },
+                        //                new Trait { attri="mode", max = 2,min =0,value = new List<string>{ "auto", "heat", "cool","dry" } },
+                        //                new Trait { attri = "temperature", max = 32,min=16,value = new List<string>{"up","down" } },
+                        //            },//
+                        //    lastState = ""
+                        //});
+                        //Entity.
+                        //break;
+                }
+
+            }
+        }
+
+
+        #endregion
     }
 }
\ No newline at end of file

--
Gitblit v1.8.0