From ff3cfcf62632bf43e51a6b6098c203bf0f5cddbc Mon Sep 17 00:00:00 2001
From: gxc <guoxuecheng@guoxuechengdeMacBook-Pro.local>
Date: 星期二, 24 十二月 2019 19:53:29 +0800
Subject: [PATCH] 2019.12.24

---
 ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/UserCenterLogic.cs |  318 +++++++++++++++++++++++++---------------------------
 1 files changed, 154 insertions(+), 164 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/UserCenterLogic.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/UserCenterLogic.cs
old mode 100755
new mode 100644
index cb79387..5580861
--- a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/UserCenterLogic.cs
+++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/UserCenterLogic.cs
@@ -47,7 +47,7 @@
             }
             var revertObj = JsonConvert.DeserializeObject<ResponsePack>(Encoding.UTF8.GetString(byteData));
             //妫�娴嬫槸鍚﹀瓨鍦ㄩ敊璇俊鎭�
-            return CheckNotEorrorMsg(revertObj, RequestName, listNotShowError);
+            return CheckNotEorrorMsg(revertObj, RequestName, listNotShowError, obj);
         }
 
         /// <summary>
@@ -114,7 +114,7 @@
             }
             var revertObj = JsonConvert.DeserializeObject<ResponsePack>(Encoding.UTF8.GetString(byteData));
             //妫�娴嬮敊璇�
-            bool notError = CheckNotEorrorMsg(revertObj, RequestName, listNotShowError);
+            bool notError = CheckNotEorrorMsg(revertObj, RequestName, listNotShowError, obj);
             if (notError == false)
             {
                 return null;
@@ -165,7 +165,7 @@
                     var data = JsonConvert.DeserializeObject<ResponsePack>(data2);
                     if (data != null && string.IsNullOrEmpty(data.StateCode) == false)
                     {
-                        bool notError = CheckNotEorrorMsg(data, RequestName, listNotShowError);
+                        bool notError = CheckNotEorrorMsg(data, RequestName, listNotShowError, obj);
                         if (notError == false)
                         {
                             return null;
@@ -256,7 +256,8 @@
         /// <param name="revertObj">浠庢帴鍙f帴鏀跺埌鐨勬暟鎹�</param>
         /// <param name="RequestName">璇锋眰鎺ュ彛</param>
         /// <param name="listNotShowError">涓嶉渶瑕佹樉绀洪敊璇殑閿欒绫诲埆(鎺ュ彛杩斿洖鐨勯敊璇被鍒�)</param>
-        public static bool CheckNotEorrorMsg(ResponsePack revertObj, string RequestName, List<string> listNotShowError = null)
+        /// <param name="pra">璇锋眰鐨勫弬鏁�</param>
+        public static bool CheckNotEorrorMsg(ResponsePack revertObj, string RequestName, List<string> listNotShowError = null, object pra = null)
         {
             if (revertObj == null)
             {
@@ -284,14 +285,17 @@
                         //濡傛灉鐢ㄦ埛宸茬粡閫�鍑轰簡鐧婚檰,鍒欎笉澶勭悊
                         return;
                     }
-                    string msg = IMessageCommon.Current.GetMsgByRequestName(RequestName, revertObj.StateCode);
-                    var control = new ShowMsgControl(ShowMsgType.Tip, msg);
-                    control.Show();
-
-                    //鏃犳晥鐧诲綍Token
-                    if (revertObj.StateCode == "NoLogin")
+                    string msg = IMessageCommon.Current.GetMsgByRequestName(RequestName, revertObj, pra);
+                    if (msg != null)
                     {
-                        UserCenterLogic.ReLoginAgain(Config.Instance.Account, false);
+                        var control = new ShowMsgControl(ShowMsgType.Tip, msg);
+                        control.Show();
+
+                        //鏃犳晥鐧诲綍Token
+                        if (revertObj.StateCode == "NoLogin")
+                        {
+                            UserCenterLogic.ReLoginAgain(Config.Instance.Account, false);
+                        }
                     }
                 });
 
@@ -305,7 +309,7 @@
         /// </summary>
         /// <param name="checkAuthority">鏄惁妫�娴嬫潈闄�</param>
         /// <returns></returns>
-        private static HttpConnectMode GetHttpConnectMode(bool checkAuthority)
+        public static HttpConnectMode GetHttpConnectMode(bool checkAuthority)
         {
             if (checkAuthority == false)
             {
@@ -393,35 +397,32 @@
                         {
                             //璁剧疆褰撳墠婵�娲荤殑鐢婚潰ID
                             UserCenterResourse.NowActionFormID = UserCenterResourse.listActionFormId[index];
-                            if (UserCenterResourse.DicActionForm.ContainsKey(UserCenterResourse.NowActionFormID) == true)
+                            //杩藉姞鏉′欢涓�:鍏抽棴鐨勭晫闈负EditorCommonForm鐨勬椂鍊欐墠澶勭悊
+                            if ((form is EditorCommonForm) && UserCenterResourse.DicActionForm.ContainsKey(UserCenterResourse.NowActionFormID) == true)
                             {
-                                var Myform = UserCenterResourse.DicActionForm[UserCenterResourse.NowActionFormID];
-                                if (Myform != null)
+                                try
                                 {
-                                    try
+                                    var Myform = UserCenterResourse.DicActionForm[UserCenterResourse.NowActionFormID];
+                                    if (Myform is EditorCommonForm)
                                     {
                                         //瑙﹀彂鐣岄潰鍐嶆婵�娲荤殑浜嬩欢
-                                        int value = Myform.FormActionAgainEvent();
+                                        int value = ((EditorCommonForm)Myform).FormActionAgainEvent();
                                         if (value == 1)
                                         {
                                             //Log鍑哄姏
                                             HdlLogLogic.Current.WriteLog(1, Myform.FormID + " 琚縺娲�");
                                         }
                                     }
-                                    catch (Exception ex)
-                                    {
-                                        //鍑虹幇鏈煡閿欒,鏁版嵁涓㈠け
-                                        var alert = new ShowMsgControl(ShowMsgType.Error, Language.StringByID(R.MyInternationalizationString.uUnknownErrorAndDataLost));
-                                        alert.Show();
-
-                                        //Log鍑哄姏
-                                        string msg = ex.Message + "\r\n";
-                                        msg += ex.TargetSite.ToString();
-                                        HdlLogLogic.Current.WriteLog(-1, msg);
-                                    }
                                 }
-                                //閲婃斁杩欎釜鍙橀噺
-                                Myform = null;
+                                catch (Exception ex)
+                                {
+                                    //鍑虹幇鏈煡閿欒,鏁版嵁涓㈠け
+                                    var alert = new ShowMsgControl(ShowMsgType.Error, Language.StringByID(R.MyInternationalizationString.uUnknownErrorAndDataLost));
+                                    alert.Show();
+
+                                    //Log鍑哄姏
+                                    HdlLogLogic.Current.WriteLog(ex);
+                                }
                             }
                         }
                         else if (actionForm != null && actionForm is UserView.UserPage)
@@ -431,17 +432,21 @@
                             {
                                 //璁剧疆褰撳墠婵�娲荤殑鐢婚潰ID
                                 UserCenterResourse.NowActionFormID = UserCenterResourse.listActionFormId[index];
-                                if (UserCenterResourse.DicActionForm.ContainsKey(UserCenterResourse.NowActionFormID) == true)
+                                //杩藉姞鏉′欢涓�:鍏抽棴鐨勭晫闈负EditorCommonForm鐨勬椂鍊欐墠澶勭悊
+                                if ((form is EditorCommonForm) && UserCenterResourse.DicActionForm.ContainsKey(UserCenterResourse.NowActionFormID) == true)
                                 {
-                                    var Myform = UserCenterResourse.DicActionForm[UserCenterResourse.NowActionFormID];
                                     try
                                     {
-                                        //瑙﹀彂鐣岄潰鍐嶆婵�娲荤殑浜嬩欢
-                                        int value = Myform.FormActionAgainEvent();
-                                        if (value == 1)
+                                        var Myform = UserCenterResourse.DicActionForm[UserCenterResourse.NowActionFormID];
+                                        if (Myform is EditorCommonForm)
                                         {
-                                            //Log鍑哄姏
-                                            HdlLogLogic.Current.WriteLog(1, Myform.FormID + " 琚縺娲�");
+                                            //瑙﹀彂鐣岄潰鍐嶆婵�娲荤殑浜嬩欢
+                                            int value = ((EditorCommonForm)Myform).FormActionAgainEvent();
+                                            if (value == 1)
+                                            {
+                                                //Log鍑哄姏
+                                                HdlLogLogic.Current.WriteLog(1, Myform.FormID + " 琚縺娲�");
+                                            }
                                         }
                                     }
                                     catch (Exception ex)
@@ -451,12 +456,8 @@
                                         alert.Show();
 
                                         //Log鍑哄姏
-                                        string msg = ex.Message + "\r\n";
-                                        msg += ex.TargetSite.ToString();
-                                        HdlLogLogic.Current.WriteLog(-1, msg);
+                                        HdlLogLogic.Current.WriteLog(ex);
                                     }
-                                    //閲婃斁杩欎釜鍙橀噺
-                                    Myform = null;
                                 }
                             }
                         }
@@ -509,18 +510,8 @@
         /// </summary>
         public static void RefreshAllMemory()
         {
-            //澶囦唤鐨勬暟鎹紝鏈夊彲鑳芥槸涓讳汉鑷繁涓婁紶鐨勶紝濡傛灉绠$悊鍛樼櫥闄嗘椂锛屼粬鑾峰彇鐨勫浠芥暟鎹湁鐐圭壒娈�
-            //姣斿涓嬮潰杩欎笁涓笢瑗垮湪涓昏处鍙烽偅閲屾槸涓嶉渶瑕佺殑
-            bool isOthreShare = Config.Instance.Home.IsOthreShare;
-            int accountType = Config.Instance.Home.AccountType;
-            string mainMark = Config.Instance.Home.MainUserDistributedMark;
-            //杩樺師浣忓畢瀵硅薄
-            Config.Instance.Home = House.GetHouseByHouseId(Config.Instance.Home.Id);
-            Config.Instance.Home.IsOthreShare = isOthreShare;
-            Config.Instance.Home.AccountType = accountType;
-            Config.Instance.Home.MainUserDistributedMark = mainMark;
-            Config.Instance.Home.Save();
-
+            //鍒锋柊浣忓畢瀵硅薄
+            RefreshHomeObject();
             //鍒锋柊鏈湴缃戝叧鏂囦欢
             HdlGatewayLogic.Current.ReFreshByLocal();
             //鍒锋柊鏈湴璁惧
@@ -529,6 +520,29 @@
             HdlGatewayLogic.Current.SynchronizeDbGateway();
             //浠庢湰鍦伴噸鏂板姞杞藉叏閮ㄧ殑鎴块棿
             Common.Room.RefreshAllRoomByLocation();
+
+        }
+
+        /// <summary>
+        /// 鍒锋柊浣忓畢瀵硅薄
+        /// </summary>
+        public static void RefreshHomeObject()
+        {
+            //澶囦唤鐨勬暟鎹紝鏈夊彲鑳芥槸涓讳汉鑷繁涓婁紶鐨勶紝濡傛灉绠$悊鍛樼櫥闄嗘椂锛屼粬鑾峰彇鐨勫浠芥暟鎹湁鐐圭壒娈�
+            //姣斿涓嬮潰杩欎笁涓笢瑗垮湪涓昏处鍙烽偅閲屾槸涓嶉渶瑕佺殑
+            bool isOthreShare = Config.Instance.Home.IsOthreShare;
+            int accountType = Config.Instance.Home.AccountType;
+            string mainMark = Config.Instance.Home.MainUserDistributedMark;
+            double Longitude = Config.Instance.Home.Longitude;
+            double Latitude = Config.Instance.Home.Latitude;
+            //杩樺師浣忓畢瀵硅薄
+            Config.Instance.Home = House.GetHouseByHouseId(Config.Instance.Home.Id);
+            Config.Instance.Home.IsOthreShare = isOthreShare;
+            Config.Instance.Home.AccountType = accountType;
+            Config.Instance.Home.MainUserDistributedMark = mainMark;
+            Config.Instance.Home.Longitude = Longitude;
+            Config.Instance.Home.Latitude = Latitude;
+            Config.Instance.Home.Save(false);
         }
 
         #endregion
@@ -541,7 +555,7 @@
         /// <param name="all">true:鍏ㄩ儴鍒犻櫎(鐢ㄤ簬浣忓畢鍒犻櫎) false:閲嶈鐨勬枃浠朵笉鍒犻櫎</param>
         public static void DeleteAllLocationFile(bool all = true)
         {
-            string dPath = UserCenterResourse.LocalRootPath;
+            string dPath = Config.Instance.FullPath;
             if (System.IO.Directory.Exists(dPath) == false)
             {
                 return;
@@ -579,11 +593,6 @@
                 //涓嶈兘鍒犻櫎Config鏂囦欢
                 return true;
             }
-            else if (fileName.StartsWith("DeviceUI_") == true)
-            {
-                //涓嶈兘鍒犻櫎璁惧UI鏂囦欢
-                return true;
-            }
             else if (fileName.StartsWith("House_") == true)
             {
                 //涓嶈兘鍒犻櫎浣忓畢鏂囦欢
@@ -603,9 +612,9 @@
         /// <param name="noticeDb">鏄惁閫氱煡浜戠</param>
         public static void ReLoginAgain(string account = "", bool noticeDb = true)
         {
-            UserCenterResourse.oldAccountId = string.Empty;
+            UserCenterResourse.Option.OldAccountId = string.Empty;
             //鍏抽棴鎵�鏈夋帴鏀�
-            HdlDeviceAttributeLogic.Current.RemoveAllEvent();
+            HdlGatewayReceiveLogic.Current.RemoveAllEvent();
             //娓呴櫎鍗囩骇鍒楄〃
             FirmwareUpdateResourse.dicDeviceUpdateList.Clear();
             FirmwareUpdateResourse.dicGatewayUpdateList.Clear();
@@ -613,7 +622,7 @@
             HdlThreadLogic.Current.RunThread(async () =>
             {
                 //妫�娴婣PP鏄惁鑳藉閫�鍑�
-                while (UserCenterResourse.AppCanSignout == false)
+                while (UserCenterResourse.Option.AppCanSignout == false)
                 {
                     await Task.Delay(500);
                 }
@@ -626,8 +635,8 @@
                 HdlGatewayLogic.Current.ClearAllRealGateway();
                 try
                 {
-                    ZigBee.Device.ZbGateway.RemoteMqttClient?.DisconnectAsync();
-                    ZigBee.Device.ZbGateway.RemoteMqttClient = null;
+                    //鏂紑杩滅▼Mqtt杩炴帴
+                    ZigBee.Device.ZbGateway.DisConnectRemoteMqttClient();
                 }
                 catch { }
 
@@ -636,7 +645,7 @@
                     //閫氱煡浜戠锛屽凡缁忛��鍑虹櫥闄�
                     var result = await CommonPage.Instance.RequestHttpsZigbeeBytesResultAsync("ZigbeeUsers/SignOut", null, "GET");
                 }
-                Application.RunOnMainThread(() =>
+                HdlThreadLogic.Current.RunMain(() =>
                 {
                     //鍏抽棴鎵�鏈夋墦寮�浜嗙殑鐣岄潰
                     CloseAllOpenForm();
@@ -652,29 +661,30 @@
         /// <summary>
         /// 鍏抽棴鎵�鏈夋墦寮�浜嗙殑鐣岄潰
         /// </summary>
-        public static void CloseAllOpenForm()
+        /// <param name="tagetFrom">鐩爣鐣岄潰,濡傛灉鎸囧畾浜嗙殑璇�,鍒欏叧闂洰鏍囩晫闈笂灞傜殑鍏ㄩ儴鐣岄潰(瀹冭嚜韬笉鍏抽棴)</param>
+        public static void CloseAllOpenForm(string tagetFrom = "")
         {
-            var listForm = new List<CommonFormBase>();
-            var listId = new List<string>();
-            foreach (CommonFormBase form in UserCenterResourse.DicActionForm.Values)
+            while (UserView.HomePage.Instance.ChildrenCount > 0)
             {
-                if (form.FormID != "UserMainForm")
+                var view = UserView.HomePage.Instance.GetChildren(UserView.HomePage.Instance.ChildrenCount - 1);
+                if (view is CommonFormBase)
                 {
-                    listForm.Insert(0, form);
-                    listId.Add(form.FormID);
+                    if (((CommonFormBase)view).FormID == tagetFrom)
+                    {
+                        //鍙叧闂埌鎸囧畾鐩爣鐣岄潰
+                        return;
+                    }
+                    ((CommonFormBase)view).CloseForm();
+                }
+                else if (view is UserView.UserPage)
+                {
+                    return;
+                }
+                else
+                {
+                    view.RemoveFromParent();
                 }
             }
-            foreach (var id in listId)
-            {
-                UserCenterResourse.DicActionForm.Remove(id);
-            }
-
-            //鍏抽棴鎵�鏈夌敾闈�
-            foreach (CommonFormBase form in listForm)
-            {
-                form.CloseForm();
-            }
-            listForm.Clear();
         }
 
         #endregion
@@ -723,7 +733,7 @@
         /// <returns></returns>
         public static string CombinePath(params object[] listNames)
         {
-            string rootPath = UserCenterResourse.LocalRootPath;
+            string rootPath = Config.Instance.FullPath;
             if (listNames == null || listNames.Length == 0)
             {
                 return rootPath;
@@ -794,60 +804,73 @@
         public async static Task<bool> InitUserCenterMenmoryAndThread()
         {
             //APP缂撳瓨鍔犺浇寮�濮�
-            UserCenterResourse.AppCanSignout = false;
-
-            //寮哄埗鎸囧畾涓嶅叧闂繘搴︽潯
-            ProgressBar.SetCloseBarFlag(true);
+            UserCenterResourse.Option.AppCanSignout = false;
 
             //鍙湁鍦ㄤ綇瀹匢D涓嶄竴鏍风殑鏃跺�欐墠鍋氳繖涓搷浣�
-            if (Common.Config.Instance.HomeId != UserCenterResourse.oldHomeStringId
-                || Common.Config.Instance.Account != UserCenterResourse.oldAccountId)
+            if (Common.Config.Instance.HomeId != UserCenterResourse.Option.OldHomeStringId
+                || Common.Config.Instance.Account != UserCenterResourse.Option.OldAccountId)
             {
-                //鍙樻洿鏍圭洰褰曡矾寰�
-                UserCenterResourse.LocalRootPath = System.IO.Path.Combine(Shared.IO.FileUtils.RootPath, Config.Instance.Guid, Config.Instance.Home.Id);
-                UserCenterResourse.UserPictruePath = System.IO.Path.Combine(Shared.IO.FileUtils.RootPath, Config.Instance.Guid, DirNameResourse.UserPictrueDirectory);
+                try
+                {
+                    //鏂紑杩滅▼Mqtt杩炴帴
+                    ZigBee.Device.ZbGateway.DisConnectRemoteMqttClient();
+                }
+                catch { }
 
+                //娑堟伅璁板綍閲嶆柊璇诲彇鍙婃娴�
+                ControlCommonResourse.ReadMessageAgain = true;
                 //鍔犺浇璐﹀彿閰嶇疆淇℃伅
                 var optionInfo = UserCenterResourse.Option.Load();
                 UserCenterResourse.Option = optionInfo;
+                //鍙樻洿鏍圭敤鎴峰浘鐗囩洰褰曡矾寰�
+                UserCenterResourse.Option.UserPictruePath = System.IO.Path.Combine(Shared.IO.FileUtils.RootPath, Config.Instance.Guid, DirNameResourse.UserPictrueDirectory);
 
                 //鍒濆鍖栫櫥闄嗚处鍙风殑淇℃伅
-                await InitUserAccoutInfo();
-                //鍒濆鍖栫鐞嗗憳鏉冮檺淇℃伅
-                await InitAdminConnectMqttInfo(true);
+                var hadNet = await InitUserAccoutInfo();
+                //濡傛灉鏈夌綉缁滅殑璇�
+                if (hadNet == true)
+                {
+                    //閲嶆柊鍙戦�佸懡浠ゅ幓缁戝畾鏂綉鎯呭喌涓嬪浠界殑缃戝叧
+                    HdlGatewayLogic.Current.ResetComandToBindBackupGateway();
+                }
 
                 //鍒濆鍖栫紦瀛樻垚鍛樼殑淇℃伅
                 InitLocalMemberListInfo();
-
-                //閲嶆柊鍙戦�佸懡浠ゅ幓缁戝畾鏂綉鎯呭喌涓嬪浠界殑缃戝叧
-                HdlGatewayLogic.Current.ResetComandToBindBackupGateway();
 
                 //棰勫垱寤轰釜浜轰腑蹇冨叏閮ㄧ殑鏂囦欢澶�
                 CreatAllUserCenterDirectory();
 
                 //鍏抽棴鎵�鏈夋帴鏀�
-                HdlDeviceAttributeLogic.Current.RemoveAllEvent();
+                HdlGatewayReceiveLogic.Current.RemoveAllEvent();
                 //鍒锋柊瀹夐槻涓婃姤淇℃伅
                 HdlAlarmsLogic.Current.RefreshAlarmInfo();
-                //娣诲姞淇濆瓨瀹夐槻璁惧鎶ヨ鐨勪簨浠�(涓嶉渶瑕佸啀鎵ц浠讳綍鎿嶄綔,骞朵笖姘镐箙瀛樺湪)
-                HdlAlarmsLogic.Current.AddAlarmInfoEvent();
 
                 //淇濆瓨鐢ㄦ埛鐨勭櫥闄嗕俊鎭埌鏈湴
                 SaveUserInformationToLocation();
 
-                UserCenterResourse.oldHomeStringId = Common.Config.Instance.HomeId;
-                UserCenterResourse.oldAccountId = Common.Config.Instance.Account;
+                UserCenterResourse.Option.OldHomeStringId = Common.Config.Instance.HomeId;
+                UserCenterResourse.Option.OldAccountId = Common.Config.Instance.Account;
 
                 //鍚屾鏁版嵁(浜屾璋冪敤娌″叧绯�)
-                var result = await HdlAutoBackupLogic.SynchronizeDbAutoBackupData();
+                int result = -1;
+                if (hadNet == true)
+                {
+                    result = await HdlAutoBackupLogic.SynchronizeDbAutoBackupData();
+                }
 
                 //鍒濆鍖栨湰鍦扮殑缃戝叧淇℃伅
                 HdlGatewayLogic.Current.ReFreshByLocal();
                 //鍒濆鍖栨湰鍦扮殑璁惧淇℃伅
                 Common.LocalDevice.Current.ReFreshByLocal();
 
-                //鍚屾浜戠鐨勭綉鍏砳d锛屽鏋滄湰鍦版嫢鏈変簯绔笉瀛樺湪鐨刬d锛屽垯琛ㄧず搴旇琚崲缁戜簡锛岀洿鎺ュ垹闄�
-                HdlGatewayLogic.Current.SynchronizeDbGateway();
+                if (hadNet == true)
+                {
+                    //鍚屾浜戠鐨勭綉鍏砳d锛屽鏋滄湰鍦版嫢鏈変簯绔笉瀛樺湪鐨刬d锛屽垯琛ㄧず搴旇琚崲缁戜簡锛岀洿鎺ュ垹闄�
+                    HdlGatewayLogic.Current.SynchronizeDbGateway();
+                }
+
+                //鍒濆鍖栦綇瀹呭璞�
+                Common.Config.Instance.Home = House.GetHouseByHouseId(Common.Config.Instance.HomeId);
 
                 //鍒濆鍖栨埧闂�(閮洩鍩庨偅杈逛笉鍋氬鐞�,闇�瑕佽繖閲岀壒娈婃墽琛屼竴姝�)
                 Room.RefreshAllRoomByLocation();
@@ -855,21 +878,15 @@
                 //鍒锋柊APP鍓嶄竴娆¢�夋嫨鐨勭綉鍏矷D(鍙互鍙嶅璋冪敤,闇�瑕佸湪缃戝叧鍒濆鍖栧畬浜嗕箣鍚庢墠鑳借皟鐢�)
                 HdlGatewayLogic.Current.RefreshAppOldSelectGatewayId();
 
-                //娓呯┖寮哄埗鎸囧畾鏂囨湰鐨勯檮鍔犱俊鎭�
-                ProgressBar.SetAppendText(string.Empty);
-
                 //0:宸茬粡鍚屾杩囷紝涓嶉渶瑕佸悓姝�,杩欎釜鏃跺�欓渶瑕佹彁绀哄浠�
                 if (result == 0)
                 {
                     //寮�鍚嚜鍔ㄥ浠芥彁绀�
-                    //HdlAutoBackupLogic.ShowAutoBackupPromptedForm();
+                    HdlAutoBackupLogic.ShowAutoBackupPromptedForm();
                 }
             }
-
-            //鎭㈠鍙叧闂繘搴︽潯
-            ProgressBar.SetCloseBarFlag(false);
             //APP缂撳瓨鍔犺浇瀹屾垚
-            UserCenterResourse.AppCanSignout = true;
+            UserCenterResourse.Option.AppCanSignout = true;
 
             return true;
         }
@@ -886,7 +903,7 @@
         {
             //鑾峰彇鏈湴璁板綍鐨勭敤鎴蜂俊鎭�
             UserCenterResourse.UserInfo = GetUserInformationFromLocation();
-            UserCenterResourse.UserInfo.UserIconFile = System.IO.Path.Combine(UserCenterResourse.UserPictruePath, "Admin.png");
+            UserCenterResourse.UserInfo.UserIconFile = System.IO.Path.Combine(UserCenterResourse.Option.UserPictruePath, "Admin.png");
 
             //鑾峰彇鐧诲綍璐﹀彿鐨勪俊鎭�
             var pra = new AccountInfoPra();
@@ -947,7 +964,7 @@
                     newHouse.IsOthreShare = house.IsOthreShare;
                     newHouse.AccountType = house.AccountType;
                     newHouse.MainUserDistributedMark = house.MainUserDistributedMark;
-                    newHouse.Save();
+                    newHouse.Save(false);
                 }
             }
             if (string.IsNullOrEmpty(userInfo.UserName) == true)
@@ -957,7 +974,19 @@
             }
 
             UserCenterResourse.UserInfo = userInfo;
-            UserCenterResourse.UserInfo.UserIconFile = System.IO.Path.Combine(UserCenterResourse.UserPictruePath, "Admin.png");
+            UserCenterResourse.UserInfo.UserIconFile = System.IO.Path.Combine(UserCenterResourse.Option.UserPictruePath, "Admin.png");
+            if (UserCenterResourse.UserInfo.HeadImage != null)
+            {
+                //鍐欏叆澶村儚鍐呭
+                Shared.IO.FileUtils.WriteFileByBytes(UserCenterResourse.UserInfo.UserIconFile, UserCenterResourse.UserInfo.HeadImage);
+            }
+            UserCenterResourse.UserInfo.HeadImage = null;
+            //鎵嬪娍瀵嗙爜
+            UserCenterResourse.Option.GestureAuthentication = UserCenterResourse.UserInfo.GesturePwd == null ? string.Empty : UserCenterResourse.UserInfo.GesturePwd;
+            UserCenterResourse.UserInfo.GesturePwd = null;
+            //瀵嗙爜楠岃瘉
+            UserCenterResourse.Option.PswAuthentication = UserCenterResourse.UserInfo.StringPwd == null ? string.Empty : UserCenterResourse.UserInfo.StringPwd;
+            UserCenterResourse.UserInfo.StringPwd = null;
 
             //鍒濆鍖栫鐞嗗憳鎺у埗涓讳汉鐨勮繛鎺ュ湴鍧�(鍥犱负杩欎釜杩炴帴Token鏄笉浼氭敼鍙樼殑,鎵�浠ュ彧闇�瑕佸垵濮嬪寲涓�娆�)
             await InitAdminConnectMainInfo();
@@ -996,13 +1025,12 @@
             {
                 return;
             }
-            string nowFile = System.IO.Path.Combine(UserCenterResourse.UserPictruePath, "Admin.png");
-            if (System.IO.File.Exists(nowFile) == true)
+            if (System.IO.File.Exists(UserCenterResourse.UserInfo.UserIconFile) == true)
             {
                 return;
             }
             //澶嶅埗杩囧幓
-            System.IO.File.Copy(defultFile, nowFile);
+            System.IO.File.Copy(defultFile, UserCenterResourse.UserInfo.UserIconFile);
         }
 
         #endregion
@@ -1020,9 +1048,9 @@
             Config.Instance.AdminRequestBaseUrl = string.Empty;
             Config.Instance.AdminRequestToken = string.Empty;
 
-            if (UserCenterResourse.UserInfo.AuthorityNo != 2)
+            if (UserCenterResourse.UserInfo.AuthorityNo != 2 && UserCenterResourse.UserInfo.AuthorityNo != 3)
             {
-                //鎷ユ湁绠$悊鍛樻潈闄愮殑鎴愬憳鎵嶈兘杩欐牱鎼�,  杩欓噷蹇呴』鏄�2
+                //鏃朵唬鍙樹簡,杩欓噷绠$悊鍛樺拰鎴愬憳閮借兘璋冪敤
                 return true;
             }
             var pra = new
@@ -1045,44 +1073,6 @@
             var info = JsonConvert.DeserializeObject<MemberAdministratorResult>(result);
             Config.Instance.AdminRequestBaseUrl = info.RequestBaseUrl;
             Config.Instance.AdminRequestToken = info.RequestToken;
-
-            return true;
-        }
-
-        /// <summary>
-        /// 鍒濆鍖栫鐞嗗憳鏉冮檺鐨勮繙绋嬭繛鎺ヤ俊鎭�
-        /// </summary>
-        /// <param name="stopRemote">鏄惁涓柇杩滅▼</param>
-        /// <returns></returns>
-        public static async Task<bool> InitAdminConnectMqttInfo(bool stopRemote = false)
-        {
-            if (UserCenterResourse.UserInfo.AuthorityNo != 2 && UserCenterResourse.UserInfo.AuthorityNo != 3)
-            {
-                //鍙湁鎴愬憳鍒嗚韩鎵嶈兘璋冪敤杩欎釜鍑芥暟
-                return true;
-            }
-            var praMqtt = new
-            {
-                CommonPage.RequestVersion,
-                LoginAccessToken = Config.Instance.Token,
-                Config.Instance.Home.MainUserDistributedMark,
-                HomeId = Config.Instance.Home.Id
-            };
-
-            var listNotShow = new List<string>() { "NotSetAgain" };
-            var result2 = await GetResponseDataByRequestHttps("App/GetConnectMainUserMqttInfo", false, praMqtt, listNotShow);
-            if (string.IsNullOrEmpty(result2) == true)
-            {
-                return false;
-            }
-
-            //杩滅▼Mqtt
-            var info2 = JsonConvert.DeserializeObject<MemberAdministratorMqttResult>(result2);
-            Config.Instance.AdminConnectZigbeeMqttBrokerPwd = info2.ConnectZigbeeMqttBrokerPwd;
-            Config.Instance.AdminConnectZigbeeMqttClientId = info2.ConnectZigbeeMqttClientId;
-            Config.Instance.AdminMqttKey = info2.MqttKey;
-            Config.Instance.AdminZigbeeMqttBrokerLoadSubDomain = info2.ZigbeeMqttBrokerLoadSubDomain;
-            Config.Instance.AdminConnectZigbeeMqttBrokerName = info2.ConnectZigbeeMqttBrokerName;
 
             return true;
         }
@@ -1162,9 +1152,9 @@
             Global.CreateEmptyDirectory(directory);
 
             //鐢ㄦ埛鍥剧墖鐩綍璺緞銆愭枃浠跺す銆�
-            if (!System.IO.Directory.Exists(UserCenterResourse.UserPictruePath))
+            if (UserCenterResourse.Option.UserPictruePath != string.Empty && !System.IO.Directory.Exists(UserCenterResourse.Option.UserPictruePath))
             {
-                System.IO.Directory.CreateDirectory(UserCenterResourse.UserPictruePath);
+                System.IO.Directory.CreateDirectory(UserCenterResourse.Option.UserPictruePath);
             }
         }
 

--
Gitblit v1.8.0