using System; 
 | 
using System.Collections.Generic; 
 | 
using System.IO; 
 | 
using System.Net; 
 | 
using System.Text; 
 | 
using HDL_ON.Entity; 
 | 
using Newtonsoft.Json.Linq; 
 | 
  
 | 
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); 
 | 
  
 | 
  
 | 
              */ 
 | 
  
 | 
  
 | 
        string severAddress = "https://global.hdlcontrol.com/ProposedProductionApi"; 
 | 
  
 | 
        public HttpServerRequest() 
 | 
        { 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 获取传感器历史数据 
 | 
        /// </summary> 
 | 
        /// <param name="subnetId"></param> 
 | 
        /// <param name="deviceId"></param> 
 | 
        /// <param name="bigClass"></param> 
 | 
        /// <param name="minClass"></param> 
 | 
        /// <param name="queryType"></param> 
 | 
        /// <param name="loopId"></param> 
 | 
        /// <param name="nowMonth"></param> 
 | 
        /// <param name="mac"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePack GetSensorHistory(int subnetId, int deviceId, int bigClass, int minClass, int queryType, int loopId, int nowMonth, string mac) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("SubnetID", subnetId); 
 | 
            d.Add("DeviceID", deviceId); 
 | 
            d.Add("LargeType", bigClass); 
 | 
            d.Add("SmallType", minClass); 
 | 
            d.Add("QueryType", queryType); 
 | 
            d.Add("loopId", loopId); 
 | 
            d.Add("NowMonth", nowMonth); 
 | 
            d.Add("MAC", DB_ResidenceData.residenceData.residenceGatewayMAC); 
 | 
            d.Add("LocalTimeZone", 8); 
 | 
            var jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d); 
 | 
            return RequestHttps("https://developer.hdlcontrol.com/api/GetSensorPushHistory", jsonString, true); 
 | 
  
 | 
        } 
 | 
  
 | 
        //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.AccountAlreadyUse); 
 | 
        //            break; 
 | 
        //        case "Self:Net_Error": 
 | 
        //            result = Language.StringByID(StringId.NetworkAnomaly); 
 | 
        //            break; 
 | 
        //    } 
 | 
        //    return result; 
 | 
        //} 
 | 
  
 | 
        #region ■ 通用请求接口_______________________ 
 | 
        /// <summary> 
 | 
        /// 根椐用户账号获取注册区域 免登录 // 检测账号是否注册也用这个接口 
 | 
        /// </summary> 
 | 
        /// <param name="account"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetRegionByAccount(string account) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new RegionByAccountObj() { account = account }); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_GetRegionByAccount, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 刷新Token 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public bool RefreshToken() 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new RefreshTokenObj() 
 | 
            { 
 | 
                refreshToken = UserInfo.Current.RefreshToken, 
 | 
            }); 
 | 
            var revertObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_Login, requestJson); 
 | 
            if (revertObj.Code.ToUpper() == StateCode.SUCCESS) 
 | 
            { 
 | 
                var revertData = Newtonsoft.Json.JsonConvert.DeserializeObject<UserLoginRes>(revertObj.Data.ToString()); 
 | 
                UserInfo.Current.LoginTokenString = revertData.headerPrefix + revertData.accessToken; 
 | 
                UserInfo.Current.RefreshToken = revertData.refreshToken; 
 | 
                UserInfo.Current.LastTime = DateTime.Now; 
 | 
                UserInfo.Current.SaveUserInfo(); 
 | 
                return true; 
 | 
            } 
 | 
            return false; 
 | 
        } 
 | 
  
 | 
        #endregion 
 | 
  
 | 
  
 | 
        #region 注册、登录部分 
 | 
        
 | 
  
 | 
        /// <summary> 
 | 
        /// 通用 发送验证码方法 
 | 
        /// </summary> 
 | 
        /// <param name="verifyType">1:注册 2:找回密码 3:绑定4:验证码登陆 5:敏感数据</param> 
 | 
        /// <param name="account">邮箱或者手机号</param> 
 | 
        /// <param name="isPhone">是否手机</param> 
 | 
        /// <param name="phoneZoneCode">手机国家区号</param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew VerificationCodeSend(VerifyType verifyType, string account, bool isPhone = false, string phoneZoneCode = "86") 
 | 
        { 
 | 
            var requestObj = new VerifyCodeSendObj() 
 | 
            { 
 | 
                verifyType = (int)verifyType, 
 | 
                languageType = Utlis.GetPostLanguageType() 
 | 
            }; 
 | 
            // 是否是手机  
 | 
            if (isPhone) 
 | 
            { 
 | 
                requestObj.phone = account; 
 | 
                requestObj.phonePrefix = phoneZoneCode; 
 | 
            } 
 | 
            else 
 | 
            { 
 | 
                requestObj.mail = account; 
 | 
            } 
 | 
            // 超时时间设置为20秒,应该测试海外服务器发送验证码响应时间很久 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_Verification_Send, requestJson, "", "", HttpUtil.TIME_OUT_LONG); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 账号登录-使用密码 
 | 
        /// </summary> 
 | 
        /// <param name="account">账号</param> 
 | 
        /// <param name="password">密码</param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew LoginByPassword(string account, string password) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new LoginObj() 
 | 
            { 
 | 
                account = account, 
 | 
                loginPwd = password 
 | 
            }); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_Login, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 验证码登录 
 | 
        /// </summary> 
 | 
        /// <param name="account">账号</param> 
 | 
        /// <param name="vCode">验证码</param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew LoginValidCode(string account, string vCode) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new LoginObj() 
 | 
            { 
 | 
                account = account, 
 | 
                verifyCode = vCode, 
 | 
                grantType = "verify" 
 | 
            }); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_Login, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 验证短信或者邮箱验证码,之后注册 
 | 
        /// </summary> 
 | 
        /// <param name="account">邮箱或者手机号</param> 
 | 
        /// <param name="password">密码</param> 
 | 
        /// <param name="code">验证码</param> 
 | 
        /// <param name="isPhone">是否手机</param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew ValidataCodeAndRegister(string account, string password, string code, bool isPhone = false) 
 | 
        { 
 | 
            var requestObj = new RegisterObj() { loginPwd = password, verifyCode = code, memberName = account }; 
 | 
            if (isPhone) 
 | 
            { 
 | 
                requestObj.memberPhone = account; 
 | 
            } 
 | 
            else 
 | 
            { 
 | 
                requestObj.memberEmail = account; 
 | 
            } 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_Member_Register, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 忘记密码,重置密码 
 | 
        /// </summary> 
 | 
        /// <param name="account">邮箱或者手机号</param> 
 | 
        /// <param name="password">新密码</param> 
 | 
        /// <param name="vCode">验证码</param> 
 | 
        /// <param name="isPhone">是否手机账号</param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew ForgetPassword(string account, string password, string vCode, bool isPhone) 
 | 
        { 
 | 
            var requestObj = new ForgetPwdObj() { verifyCode = vCode, loginPwd = password }; 
 | 
            if (isPhone) 
 | 
            { 
 | 
                //手机忘记密码 
 | 
                requestObj.memberPhone = account; 
 | 
            } 
 | 
            else 
 | 
            { 
 | 
                //邮箱忘记密码 
 | 
                requestObj.memberEmail = account; 
 | 
            } 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_Member_ForgetPwd, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 验证验证码 
 | 
        /// </summary> 
 | 
        /// <param name="verifyType">验证类型</param> 
 | 
        /// <param name="account">验证账号</param> 
 | 
        /// <param name="code">验证码</param> 
 | 
        /// <param name="isPhone">是否手机</param> 
 | 
        /// <param name="verifySuccessFail">验证通过后,验证码是否失效</param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew ValidatorCode(VerifyType verifyType, string account, string code, bool isPhone, bool verifySuccessFail = true) 
 | 
        { 
 | 
            var requestObj = new VerifyCodeCheckObj() { verifyCode = code, verifyType = (int)verifyType, verifySuccessFail = verifySuccessFail }; 
 | 
            if (isPhone) 
 | 
            { 
 | 
                //手机 
 | 
                requestObj.phone = account; 
 | 
            } 
 | 
            else 
 | 
            { 
 | 
                //邮箱 
 | 
                requestObj.mail = account; 
 | 
            } 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_Verification_Check, requestJson); 
 | 
        } 
 | 
  
 | 
        #endregion 
 | 
  
 | 
        #region 个人信息部分 
 | 
        /// <summary> 
 | 
        /// 获取用户信息 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public void GetUserInfo(bool bGetHeadImage = true) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new NullObj()); 
 | 
            var resultObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_Member_GetMemberInfo, requestJson); 
 | 
            if (resultObj.Code == StateCode.SUCCESS) 
 | 
            { 
 | 
                var info = Newtonsoft.Json.JsonConvert.DeserializeObject<MemberInfoRes>(resultObj.Data.ToString()); 
 | 
                UserInfo.Current.userEmailInfo = info.memberEmail; 
 | 
                UserInfo.Current.userMobileInfo = info.memberPhone; 
 | 
                UserInfo.Current.userName = info.memberName; 
 | 
                if (!string.IsNullOrEmpty(info.memberPhonePrefix)) 
 | 
                { 
 | 
                    UserInfo.Current.areaCode = info.memberPhonePrefix; 
 | 
                } 
 | 
                //是否需要获取头像 
 | 
                if (bGetHeadImage) 
 | 
                { 
 | 
                    var headImageBytes = DownHeadImage(); 
 | 
                    if (headImageBytes != null && headImageBytes.Length > 0) 
 | 
                    { 
 | 
                        UserInfo.Current.headImagePageBytes = headImageBytes; 
 | 
                        FileStream fs = null; 
 | 
                        try 
 | 
                        { 
 | 
                            UserInfo.Current.headImagePageBytes = headImageBytes; 
 | 
                            var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "/", "headImage.png"); 
 | 
                            fs = new FileStream(filePath, FileMode.Create, FileAccess.Write); 
 | 
                            fs.Write(headImageBytes, 0, headImageBytes.Length); 
 | 
                            fs.Flush(); 
 | 
                            UserInfo.Current.headImagePagePath = filePath; 
 | 
                        } 
 | 
                        catch (Exception ex) 
 | 
                        { 
 | 
                            MainPage.Log($"download headImage error : {ex.Message}"); 
 | 
                        } 
 | 
                        finally 
 | 
                        { 
 | 
                            if (fs != null) 
 | 
                            { 
 | 
                                fs.Close(); 
 | 
                            } 
 | 
                        } 
 | 
  
 | 
                    } 
 | 
                } 
 | 
  
 | 
                UserInfo.Current.SaveUserInfo(); 
 | 
                MainPage.Log("获取用户信息成功。"); 
 | 
            } 
 | 
  
 | 
  
 | 
            //    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() == StateCode.SUCCESS) 
 | 
            //{ 
 | 
            //    var dataStr = JObject.FromObject(revertObj.ResponseData); 
 | 
            //    //"DistributedMark": "96439601-fd26-4768-8440-1d9dfa32c109",  < !--帐号Id-- > 
 | 
            //     UserInfo.Current.userEmailInfo = dataStr.GetValue("Email").ToString(); 
 | 
            //     UserInfo.Current.userMobileInfo = dataStr.GetValue("Phone").ToString(); 
 | 
            //    FileStream fs = null; 
 | 
            //    try 
 | 
            //    { 
 | 
            //        var headImageString = dataStr.GetValue("HeadImage").ToString(); 
 | 
            //        if (!string.IsNullOrEmpty(headImageString)) 
 | 
            //        { 
 | 
            //            var jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(headImageString); 
 | 
            //            var headImageBytes = Newtonsoft.Json.JsonConvert.DeserializeObject<byte[]>(jsonString); 
 | 
            //             UserInfo.Current.headImagePageBytes = headImageBytes; 
 | 
            //            var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "/", "headImage.png"); 
 | 
            //            fs = new FileStream(filePath, FileMode.Create, FileAccess.Write); 
 | 
            //            fs.Write(headImageBytes, 0, headImageBytes.Length); 
 | 
            //            fs.Flush(); 
 | 
            //             UserInfo.Current.headImagePagePath = filePath; 
 | 
            //        } 
 | 
            //    } 
 | 
            //    catch (Exception ex) 
 | 
            //    { 
 | 
            //        MainPage.Log($"download headImage error : {ex.Message}"); 
 | 
            //    } 
 | 
            //    finally 
 | 
            //    { 
 | 
            //        if (fs != null) 
 | 
            //        { 
 | 
            //            fs.Close(); 
 | 
            //        } 
 | 
            //    } 
 | 
            //    // "GesturePwd": null,  < !--手势密码-- > 
 | 
            //    // "StringPwd": null , < !--字符串密码-- > 
 | 
            //     UserInfo.Current.userName = dataStr.GetValue("UserName").ToString(); 
 | 
  
 | 
            //    Application.RunOnMainThread(() => 
 | 
            //    { 
 | 
            //    }); 
 | 
  
 | 
            //     UserInfo.Current.SaveUserInfo(); 
 | 
            //    MainPage.Log("获取用户信息成功。"); 
 | 
            //} 
 | 
  
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 下载用户头像 
 | 
        /// </summary> 
 | 
        public byte[] DownHeadImage() 
 | 
        { 
 | 
            return HttpUtil.RequestHttpsDownload(NewAPI.API_POST_Head_Down, null); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 更新用户昵称 
 | 
        /// </summary> 
 | 
        /// <param name="userName"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew EditUserName(string userName) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new UpdateMemberNameRes() 
 | 
            { 
 | 
                memberName = userName 
 | 
            }); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_Member_UpdateMemberInfo, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 更新用户头像 
 | 
        /// </summary> 
 | 
        /// <param name="vs"></param> 
 | 
        /// <returns></returns> 
 | 
        public string UpdataUserHeadImage(string fileName) 
 | 
        { 
 | 
            byte[] bytes = Shared.IO.FileUtils.ReadFile(fileName); 
 | 
            var revertObj = HttpUtil.RequestHttpsUpload(RestSharp.Method.POST, NewAPI.API_POST_Head_Upload, bytes); 
 | 
            return revertObj.Code; 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 更改绑定账户的邮箱或者手机号 
 | 
        /// 2020-11-16 待修改 
 | 
        /// </summary> 
 | 
        /// <param name="account"></param> 
 | 
        /// <param name="code"></param> 
 | 
        /// <param name="isPhone"></param> 
 | 
        /// <returns></returns> 
 | 
        public string BindAccount(string account, string code = "", bool isPhone = false) 
 | 
        { 
 | 
            var requestObj = new BindWithAccountObj() { verifyCode = code }; 
 | 
            if (isPhone) 
 | 
            { 
 | 
                //手机 
 | 
                requestObj.memberPhone = account; 
 | 
            } 
 | 
            else 
 | 
            { 
 | 
                //邮箱 
 | 
                requestObj.memberEmail = account; 
 | 
            } 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_Member_BindWithAccount, requestJson).Code; 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 解绑手机或者邮箱 
 | 
        /// </summary> 
 | 
        /// <param name="isPhone"></param> 
 | 
        /// <returns></returns> 
 | 
        public string UnBindAccount(bool isPhone) 
 | 
        { 
 | 
            var requestObj = new UnBindAccountObj() { unBindLabel = isPhone ? "PHONE" : "EMAIL" }; 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_Member_UnbindWithAccount, requestJson).Code; 
 | 
        } 
 | 
  
 | 
        #endregion 
 | 
  
 | 
        #region 住宅部分 
 | 
        /// <summary> 
 | 
        /// 获取住宅列表 
 | 
        /// </summary> 
 | 
        public string GetHomePager(HomeTypeEnum homeType = HomeTypeEnum.ALL) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new GetHomeListObj() { homeType = homeType.ToString() }); 
 | 
            var resultObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_Gethomepager, requestJson); 
 | 
            if (resultObj.Code == StateCode.SUCCESS) 
 | 
            { 
 | 
                var homeList = Newtonsoft.Json.JsonConvert.DeserializeObject<List<RegionInfoResNew>>(resultObj.Data.ToString()); 
 | 
                if (homeList == null || homeList.Count == 0) 
 | 
                { 
 | 
  
 | 
  
 | 
                } 
 | 
                else 
 | 
                { 
 | 
                    UserInfo.Current.regionList = new List<RegionInfoRes>(); 
 | 
  
 | 
                    foreach (var mHome in homeList) 
 | 
                    { 
 | 
                        var home = new RegionInfoRes() 
 | 
                        { 
 | 
                            RegionID = mHome.Id, 
 | 
                            Name = mHome.homeName, 
 | 
                            IsOthreShare = mHome.IsOtherShare, 
 | 
                            accountType = mHome.accountType, 
 | 
                            isRemoteControl = mHome.isRemoteControl, 
 | 
                            longitude = mHome.longitude, 
 | 
                            latitude = mHome.latitude, 
 | 
                            deliverstatus = mHome.deliverstatus, 
 | 
                            homeType = mHome.homeType, 
 | 
                            regionUrl = mHome.regionUrl, 
 | 
                            emqUrl = mHome.emqUrl, 
 | 
                            homeRegionName = mHome.homeRegionName, 
 | 
                            homeRegionId = mHome.homeRegionId, 
 | 
                            Address = mHome.homeAddress, 
 | 
                        }; 
 | 
                        if (home.IsOthreShare) 
 | 
                        { 
 | 
                            continue; 
 | 
                        } 
 | 
                        UserInfo.Current.regionList.Add(home); 
 | 
                    } 
 | 
  
 | 
                    if (string.IsNullOrEmpty(DB_ResidenceData.residenceData.CurReginID)) 
 | 
                    { 
 | 
                        DB_ResidenceData.residenceData.CurReginID = UserInfo.Current.regionList[0].RegionID; 
 | 
                    } 
 | 
                    DB_ResidenceData.residenceData.SaveResidenceData(); 
 | 
                    UserInfo.Current.SaveUserInfo(); 
 | 
  
 | 
                    //刷新一次住宅网关 
 | 
                    GetHomeGatewayList(); 
 | 
                } 
 | 
  
 | 
            } 
 | 
  
 | 
            return resultObj.Code; 
 | 
  
 | 
            //string jsonString = "{" + 
 | 
            //                    "\"RequestVersion\":" + "\"" + MainPage.VersionString + "\"" + "," + 
 | 
            //                    "\"RequestSource\":" + "\"" + "2" + "\"" + "," + 
 | 
            //                    "\"HomeType\":" + "\"" + "1" + "\"" + "," + 
 | 
            //                    "\"LoginAccessToken\":" + "\"" +  UserInfo.Current.loginTokenString + "\"" + 
 | 
            //                    "}"; 
 | 
            //var responsePack = RequestHttps($"{severAddress}/App/GetHomePager", jsonString, false); 
 | 
  
 | 
            //if (responsePack.StateCode.ToUpper() == StateCode.SUCCESS_CODE) 
 | 
            //{ 
 | 
            //    var dataStr = JObject.FromObject(responsePack.ResponseData); 
 | 
            //    //没有住宅 
 | 
            //    if (dataStr.GetValue("PageData").ToString() == "[]") 
 | 
            //    { 
 | 
  
 | 
            //    } 
 | 
            //    else 
 | 
            //    { 
 | 
            //        //{ 
 | 
            //        // { 
 | 
            //        //  "Id": "1107487", 
 | 
            //        //  "HomeStatus": 2, 
 | 
            //        //  "UserGuid": "22980", 
 | 
            //        //  "Name": "啊", 
 | 
            //        //  "Address": null, 
 | 
            //        //  "Longitude": 0.0, 
 | 
            //        //  "Latitude": 0.0, 
 | 
            //        //  "RegionName": null, 
 | 
            //        //  "Company": null, 
 | 
            //        //  "ContactPerson": null, 
 | 
            //        //  "ContactPersonPhone": null, 
 | 
            //        //  "Remarks": null, 
 | 
            //        //  "ChangeDate": null, 
 | 
            //        //  "AccountType": 0, 
 | 
            //        //  "CreatedOnUtc": "2020-05-27T06:52:03", 
 | 
            //        //  "IsOthreShare": false, 
 | 
            //        //  "MainUserDistributedMark": null, 
 | 
            //        //  "HomeGateways": [ 
 | 
            //        //    { 
 | 
            //        //      "GatewayUniqueId": "4E47323347591243" 
 | 
            //        //    } 
 | 
            //        //  ] 
 | 
            //        //}} 
 | 
            //         UserInfo.Current.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(), 
 | 
            //                IsOthreShare = (bool)homeJsonStr.GetValue("IsOthreShare"), 
 | 
            //                homeGateways = Newtonsoft.Json.JsonConvert.DeserializeObject<List<HomeGateways>>(homeJsonStr.GetValue("HomeGateways").ToString()), 
 | 
            //            }; 
 | 
            //            if (home.IsOthreShare) 
 | 
            //            { 
 | 
            //                continue; 
 | 
            //            } 
 | 
            //             UserInfo.Current.regionList.Add(home); 
 | 
            //            if (string.IsNullOrEmpty(DB_ResidenceData.residenceData.CurReginID)) 
 | 
            //            { 
 | 
            //                DB_ResidenceData.residenceData.CurReginID =  UserInfo.Current.regionList[0].RegionID; 
 | 
            //            } 
 | 
            //        } 
 | 
            //        DB_ResidenceData.residenceData.SaveResidenceData(); 
 | 
            //         UserInfo.Current.SaveUserInfo(); 
 | 
            //    } 
 | 
            //} 
 | 
            //return responsePack.StateCode; 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 编辑住宅信息 
 | 
        /// </summary> 
 | 
        /// <param name="editId">0 修改住宅名字、1 修改住宅地址</param> 
 | 
        /// <param name="editName"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew EditResidenceInfo(int editId, string editName) 
 | 
        { 
 | 
            var requestObj = new AddOrUpdateHomeObj() 
 | 
            { 
 | 
                homeId = DB_ResidenceData.residenceData.residecenInfo.RegionID, 
 | 
            }; 
 | 
  
 | 
            if (editId == 0) 
 | 
            { 
 | 
                requestObj.homeName = editName; 
 | 
            } 
 | 
            else if (editId == 1) 
 | 
            { 
 | 
                requestObj.Address = editName; 
 | 
            } 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Home_UpdateHome, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 获取刷新当前住宅的网关列表 
 | 
        /// </summary> 
 | 
        public void GetHomeGatewayList() 
 | 
        { 
 | 
            try 
 | 
            { 
 | 
                if (string.IsNullOrEmpty(DB_ResidenceData.residenceData.residecenInfo.RegionID)) return; 
 | 
                var nowhomeId = DB_ResidenceData.residenceData.residecenInfo.RegionID; 
 | 
                var requestJson = HttpUtil.GetSignRequestJson(new HomeIdObj() { homeId = nowhomeId }); 
 | 
                var revertObj = HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_GetGatewayList, requestJson); 
 | 
                if (revertObj.Code == StateCode.SUCCESS) 
 | 
                { 
 | 
                    var mHomeGatewayRes = Newtonsoft.Json.JsonConvert.DeserializeObject<List<HomeGatewayInfo>>(revertObj.Data.ToString()); 
 | 
                    if (nowhomeId == DB_ResidenceData.residenceData.residecenInfo.RegionID) 
 | 
                    { 
 | 
                        if (mHomeGatewayRes != null) 
 | 
                        { 
 | 
                            if (mHomeGatewayRes.Count > 0) 
 | 
                            { 
 | 
                                DB_ResidenceData.residenceData.HomeGateway = mHomeGatewayRes[0]; 
 | 
                                DB_ResidenceData.residenceData.SaveResidenceData(); 
 | 
                                return; 
 | 
                            } 
 | 
                        } 
 | 
                        //其余情况清空网关信息 
 | 
                        DB_ResidenceData.residenceData.HomeGateway = null; 
 | 
                        DB_ResidenceData.residenceData.SaveResidenceData(); 
 | 
                    } 
 | 
                } 
 | 
                else 
 | 
                { 
 | 
                    //提示错误 
 | 
                } 
 | 
            } 
 | 
            catch 
 | 
            { 
 | 
  
 | 
            } 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 获取住宅下的成员账号 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetResidenceMemberAccount() 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new HomeIdObj() { homeId = DB_ResidenceData.residenceData.residecenInfo.RegionID }); 
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Child_FindAll, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 删除住宅下的成员账号 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew DeleteResidenceMemberAccount(ResidenceMemberInfo subaccount) 
 | 
        { 
 | 
            var requestObj = new ChildDeleteObj() 
 | 
            { 
 | 
                childAccountId = subaccount.childAccountId, 
 | 
                homeId = subaccount.homeId 
 | 
            }; 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Child_Delete, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 修改子账号昵称 
 | 
        /// </summary> 
 | 
        /// <param name="nickName"></param> 
 | 
        /// <param name="subAccountGuid"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew EditSubAccountNickName(string nickName, string childAccountId) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new UpdateChildNickNameObj() 
 | 
            { 
 | 
                homeId = DB_ResidenceData.residenceData.residecenInfo.RegionID, 
 | 
                childAccountId = childAccountId, 
 | 
                nickName = nickName, 
 | 
            }); 
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Child_Update, requestJson); 
 | 
  
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 修改子账号创建场景权限 
 | 
        /// </summary> 
 | 
        /// <param name="nickName"></param> 
 | 
        /// <param name="subAccountGuid"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew ChangeCreateSceneState(bool isAllow, string childAccountId) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new UpdateChildAllowCreateSceneObj() 
 | 
            { 
 | 
                homeId = DB_ResidenceData.residenceData.residecenInfo.RegionID, 
 | 
                childAccountId = childAccountId, 
 | 
                isAllowCreateScene = isAllow, 
 | 
            }); 
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Child_Update, requestJson); 
 | 
        } 
 | 
  
 | 
        #region 新数据分享 
 | 
        /// <summary> 
 | 
        /// 添加分享 
 | 
        /// </summary> 
 | 
        /// <param name="addShareObj"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew AddShare(AddShareObj addShareObj) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(addShareObj); 
 | 
  
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Share_Add, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 删除分享 
 | 
        /// </summary> 
 | 
        /// <param name="deleteShareObj"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew DeleteShare(DeleteShareObj deleteShareObj) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(deleteShareObj); 
 | 
  
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Share_Delete, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 获取分享 
 | 
        /// </summary> 
 | 
        /// <param name="addShareObj"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetShare(GetShareObj getShareObj) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(getShareObj); 
 | 
  
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Share_Delete, requestJson); 
 | 
        } 
 | 
        #endregion 
 | 
  
 | 
        /// <summary> 
 | 
        /// 获取住宅下子账号的共享数据列表 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetShareDataByMemberAccount(string childAccountId) 
 | 
        { 
 | 
            //Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            //d.Add("DistributedMark", memberId); 
 | 
            //d.Add("HouseDistributedMark", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            //string jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d); 
 | 
            //return RequestHttps($"{severAddress}/ZigbeeDataShare/GetShareDataBySubAccount", jsonString, true); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new HomeShareFindAll() 
 | 
            { 
 | 
                homeId = DB_ResidenceData.residenceData.residecenInfo.RegionID, 
 | 
                childAccountId = childAccountId 
 | 
            }); 
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Home_Share_FindAll, requestJson); 
 | 
  
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 下载单个分享文件 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public byte[] GetShareData(ShareData shareData) 
 | 
        { 
 | 
            //Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            //d.Add("DistributedMark", memberId); 
 | 
            //d.Add("HouseDistributedMark", hId); 
 | 
            //string jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d); 
 | 
            //return RequestHttps($"{severAddress}/ZigbeeDataShare/GetOneShareData", jsonString, true); 
 | 
  
 | 
            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(new ShareFileDownObj() 
 | 
            { 
 | 
                homeId = shareData.homeId, 
 | 
                homeShareId = shareData.id 
 | 
            }); 
 | 
            var replaceToken = ""; 
 | 
            if (DB_ResidenceData.residenceData.residecenInfo.IsOthreShare) 
 | 
            { 
 | 
                replaceToken = DB_ResidenceData.residenceData.MasterToken; 
 | 
            } 
 | 
            return HttpUtil.RequestHttpsDownload(NewAPI.API_POST_Home_Share_DownOne, requestJson, null, DB_ResidenceData.residenceData.residecenInfo.regionUrl, replaceToken); 
 | 
  
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 增加共享数据列表 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew AddShareData(ShareData shareData) 
 | 
        { 
 | 
            //Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            //d.Add("ShareName", shareData.ShareName); 
 | 
            //d.Add("HouseDistributedMark", shareData.HouseDistributedMark); 
 | 
            //d.Add("ShareDataBytes", shareData.ShareDataBytes); 
 | 
            //d.Add("SubAccountDistributedMark", shareData.SubAccountDistributedMark); 
 | 
            //string jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d); 
 | 
            //return RequestHttps($"{severAddress}/ZigbeeDataShare/AddShareData", jsonString, true); 
 | 
  
 | 
            var queryDic = new Dictionary<string, object>(); 
 | 
            queryDic.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            queryDic.Add("childAccountId", shareData.childAccountId); 
 | 
            queryDic.Add("fileName", shareData.fileName); 
 | 
            var replaceToken = ""; 
 | 
            if (DB_ResidenceData.residenceData.residecenInfo.IsOthreShare) 
 | 
            { 
 | 
                replaceToken = DB_ResidenceData.residenceData.MasterToken; 
 | 
            } 
 | 
            return HttpUtil.RequestHttpsUpload(RestSharp.Method.POST, NewAPI.API_POST_Home_Share_Add, shareData.ShareDataBytes, queryDic, null, DB_ResidenceData.residenceData.residecenInfo.regionUrl, replaceToken); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 增加共享数据 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew EditShareData(ShareData shareData) 
 | 
        { 
 | 
            return AddShareData(shareData); 
 | 
            //Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            //d.Add("DistributedMark", shareData.DistributedMark); 
 | 
            //d.Add("ShareName", shareData.ShareName); 
 | 
            //d.Add("HouseDistributedMark", shareData.HouseDistributedMark); 
 | 
            //d.Add("ShareDataBytes", shareData.ShareDataBytes); 
 | 
            //d.Add("SubAccountDistributedMark", shareData.SubAccountDistributedMark); 
 | 
            //string jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d); 
 | 
            //return RequestHttps($"{severAddress}/ZigbeeDataShare/EditShareData", jsonString, true); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 删除共享数据 
 | 
        /// </summary> 
 | 
        /// <param name="shareData"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew DeleteShareData(ShareData shareData) 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new ShareFileDownObj() 
 | 
            { 
 | 
                homeId = shareData.homeId, 
 | 
                homeShareId = shareData.id 
 | 
            }); 
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Home_Share_Delete, requestJson); 
 | 
            //Dictionary<string, string> d = new Dictionary<string, string>(); 
 | 
            //d.Add("DistributedMark", shareData.DistributedMark); 
 | 
            //d.Add("HouseDistributedMark", shareData.HouseDistributedMark); 
 | 
            //string jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d); 
 | 
            //return RequestHttps($"{severAddress}/ZigbeeDataShare/DeleteShareData", jsonString, true); 
 | 
        } 
 | 
        ///// <summary> 
 | 
        ///// 删除子账号当前住宅的所有共享数据 
 | 
        ///// </summary> 
 | 
        ///// <returns></returns> 
 | 
        //public ResponsePack DeleteCurrentResidenceSharedData(ShareData shareData) 
 | 
        //{ 
 | 
        //    Dictionary<string, string> d = new Dictionary<string, string>(); 
 | 
        //    d.Add("SubAccountDistributedMark", shareData.SubAccountDistributedMark); 
 | 
        //    d.Add("HouseDistributedMark", shareData.HouseDistributedMark); 
 | 
        //    string jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d); 
 | 
        //    return RequestHttps($"{severAddress}/ZigbeeDataShare/DeleteShareData", jsonString, true); 
 | 
        //} 
 | 
  
 | 
        /// <summary> 
 | 
        /// 绑定子账号到住宅下 
 | 
        /// </summary> 
 | 
        /// <param name="subAccount"></param> 
 | 
        /// <param name="nickName"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew BindResidenceMemberAccount(string subAccount, string nickName) 
 | 
        { 
 | 
            //添加子账号 
 | 
            var requestObj = new ChildAddObj() { homeId = DB_ResidenceData.residenceData.residecenInfo.RegionID, account = subAccount, nickName = nickName }; 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPostFroHome(NewAPI.API_POST_Child_Add, requestJson); 
 | 
  
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 获取住宅下的成员账号信息 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePack GetResidenceMemberAccountInfo(string account) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("Account", account); 
 | 
            string jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d); 
 | 
            return RequestHttps($"{severAddress}/ZigbeeUsers/GetSubAccountInfo", jsonString, true); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        ///  下载子账号用户头像 
 | 
        /// </summary> 
 | 
        /// <param name="subaccoun"></param> 
 | 
        /// <returns></returns> 
 | 
        public byte[] DownChildHeadImage(ResidenceMemberInfo subaccount) 
 | 
        { 
 | 
            var requestObj = new ChildBaseObj() 
 | 
            { 
 | 
                childAccountId = subaccount.childAccountId, 
 | 
                homeId = subaccount.homeId 
 | 
            }; 
 | 
            var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(requestObj); 
 | 
            var replaceToken = ""; 
 | 
            if (DB_ResidenceData.residenceData.residecenInfo.IsOthreShare) 
 | 
            { 
 | 
                replaceToken = DB_ResidenceData.residenceData.MasterToken; 
 | 
            } 
 | 
            return HttpUtil.RequestHttpsDownload(NewAPI.API_POST_Child_DownloadHeadImage, requestJson,null); 
 | 
        } 
 | 
         
 | 
  
 | 
        #endregion 
 | 
        /// <summary> 
 | 
        /// 获取MQTT远程连接信息接口 
 | 
        /// </summary> 
 | 
        public MqttInfo GetMqttRemoteInfo(string attachClientId) 
 | 
        { 
 | 
            try 
 | 
            { 
 | 
                var requestJson = HttpUtil.GetSignRequestJson(new GetMqttRemoteInfoObj() 
 | 
                { 
 | 
                    attachClientId = attachClientId, 
 | 
                    homeType = HomeTypeEnum.BUSPRO.ToString() 
 | 
                }); 
 | 
                var revertObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_GetMqttRemoteInfo, requestJson, DB_ResidenceData.residenceData.residecenInfo.regionUrl); 
 | 
                if (revertObj.Code == StateCode.SUCCESS) 
 | 
                { 
 | 
                    return Newtonsoft.Json.JsonConvert.DeserializeObject<MqttInfo>(revertObj.Data.ToString()); 
 | 
                } 
 | 
                else 
 | 
                { 
 | 
                    Utlis.WriteLine("GetMqttRemoteInfo error"); 
 | 
                    return null; 
 | 
                } 
 | 
            } 
 | 
            catch 
 | 
            { 
 | 
                return null; 
 | 
            } 
 | 
        } 
 | 
  
 | 
        #region 推送 
 | 
        /// <summary> 
 | 
        /// 提交推送需要的关键标识信息 
 | 
        /// </summary> 
 | 
        public bool PushSerivceAddPushInfo() 
 | 
        { 
 | 
            try 
 | 
            { 
 | 
                string deviceType = PhoneDeviceType.Android.ToString(); 
 | 
#if __IOS__ 
 | 
                deviceType = PhoneDeviceType.IOS.ToString(); 
 | 
#endif 
 | 
                //是否生产模式 
 | 
                bool isProduce = true; 
 | 
#if DEBUG 
 | 
                isProduce = false; 
 | 
#endif 
 | 
  
 | 
                if (string.IsNullOrEmpty(OnAppConfig.Instance.PushDeviceToken)) { 
 | 
                    Utlis.WriteLine("PushDeviceToken 为空"); 
 | 
                    return false; 
 | 
                } 
 | 
  
 | 
                var mAddpushinfoObj = new AddpushinfoObj() 
 | 
                { 
 | 
                    pushToken = OnAppConfig.Instance.PushDeviceToken, 
 | 
                    deviceName = OnAppConfig.Instance.PhoneName, 
 | 
                    deviceType = deviceType, 
 | 
                    produce = isProduce, 
 | 
                }; 
 | 
                
 | 
                var mAddpushinfoJson = Newtonsoft.Json.JsonConvert.SerializeObject(mAddpushinfoObj); 
 | 
                //var mAddpushinfoJson = HttpUtil.GetSignRequestJson(mAddpushinfoObj); 
 | 
                var revertObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_PushSerivce_AddToken, mAddpushinfoJson); 
 | 
                if (revertObj.Code == StateCode.SUCCESS) 
 | 
                { 
 | 
                    if (revertObj.Data != null) 
 | 
                    { 
 | 
                        var pushId = revertObj.Data.ToString(); 
 | 
                        if (!string.IsNullOrEmpty(pushId)) 
 | 
                        { 
 | 
                            OnAppConfig.Instance.PushId = pushId; 
 | 
                            OnAppConfig.Instance.SaveUserConfig(); 
 | 
                            
 | 
                            return true; 
 | 
                        } 
 | 
                    } 
 | 
                  
 | 
                } 
 | 
                else 
 | 
                { 
 | 
                    //Utlis.WriteLine("AddToken 失败"); 
 | 
                } 
 | 
                return false; 
 | 
            } 
 | 
            catch 
 | 
            { 
 | 
                return false; 
 | 
            } 
 | 
        } 
 | 
  
 | 
        
 | 
        /// <summary> 
 | 
        /// 查询推送信息列表 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew PushSerivceGetPushmessagelist() 
 | 
        { 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new GetMessageListObj() 
 | 
            { 
 | 
                pushId = OnAppConfig.Instance.PushId 
 | 
            }); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_PushSerivce_Getpushmessagelist, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 清空消息记录 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public bool PushSerivceClearmessagelist() 
 | 
        { 
 | 
            if (string.IsNullOrEmpty(OnAppConfig.Instance.PushId)) return false; 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(new PushIdObj() 
 | 
            { 
 | 
                pushId = OnAppConfig.Instance.PushId 
 | 
            }); 
 | 
  
 | 
            var revertObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_PushSerivce_Clearmessagelist, requestJson); 
 | 
            if (revertObj.Code == StateCode.SUCCESS) 
 | 
            { 
 | 
                return true; 
 | 
            } 
 | 
            else 
 | 
            { 
 | 
  
 | 
            } 
 | 
            return false; 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 退出登录,清空推送标识 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public bool PushSerivceSignOut() 
 | 
        { 
 | 
            if (string.IsNullOrEmpty(OnAppConfig.Instance.PushId)) return false; 
 | 
            try 
 | 
            { 
 | 
                var requestJson = HttpUtil.GetSignRequestJson(new PushIdObj() { 
 | 
                    pushId = OnAppConfig.Instance.PushId 
 | 
                }); 
 | 
                
 | 
                var revertObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_PushSerivce_DeleteToken, requestJson); 
 | 
                if (revertObj.Code == StateCode.SUCCESS) 
 | 
                { 
 | 
                    return true; 
 | 
                } 
 | 
                else 
 | 
                { 
 | 
  
 | 
                } 
 | 
                return false; 
 | 
            } 
 | 
            catch 
 | 
            { 
 | 
                return false; 
 | 
            } 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 标记消息全部已读 
 | 
        /// </summary> 
 | 
        /// <param name="msgId"></param> 
 | 
        /// <returns></returns> 
 | 
        public bool PushSerivceMarkAllMessageRead() 
 | 
        { 
 | 
            if (string.IsNullOrEmpty(OnAppConfig.Instance.PushId)) return false; 
 | 
  
 | 
            try 
 | 
            { 
 | 
                var requestJson = HttpUtil.GetSignRequestJson(new PushIdObj() 
 | 
                { 
 | 
                    pushId = OnAppConfig.Instance.PushId 
 | 
                }); 
 | 
                var revertObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_PushSerivce_ALLMarkread, requestJson); 
 | 
                if (revertObj.Code == StateCode.SUCCESS) 
 | 
                { 
 | 
                    return true; 
 | 
                } 
 | 
                else 
 | 
                { 
 | 
  
 | 
                } 
 | 
                return false; 
 | 
            } 
 | 
            catch 
 | 
            { 
 | 
                return false; 
 | 
            } 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 标记指定消息已读 
 | 
        /// </summary> 
 | 
        /// <param name="msgId"></param> 
 | 
        /// <returns></returns> 
 | 
        public bool PushSerivceMarkMessageRead(string msgId) 
 | 
        { 
 | 
            if (string.IsNullOrEmpty(OnAppConfig.Instance.PushId)) return false; 
 | 
  
 | 
            try 
 | 
            { 
 | 
                var requestJson = HttpUtil.GetSignRequestJson(new PushMsgIdObj() 
 | 
                { 
 | 
                    msgId = msgId 
 | 
                }); 
 | 
  
 | 
                var revertObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_PushSerivce_Markread, requestJson); 
 | 
                if (revertObj.Code == StateCode.SUCCESS) 
 | 
                { 
 | 
                    return true; 
 | 
                } 
 | 
                else 
 | 
                { 
 | 
  
 | 
                } 
 | 
                return false; 
 | 
            } 
 | 
            catch 
 | 
            { 
 | 
                return false; 
 | 
            } 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 通过主键id删除一条推送记录 
 | 
        /// </summary> 
 | 
        /// <param name="msgId"></param> 
 | 
        /// <returns></returns> 
 | 
        public bool PushSerivceDeleteMessage(string msgId) 
 | 
        { 
 | 
            if (string.IsNullOrEmpty(OnAppConfig.Instance.PushId)) return false; 
 | 
  
 | 
            try 
 | 
            { 
 | 
                var requestJson = HttpUtil.GetSignRequestJson(new PushMsgIdObj() 
 | 
                { 
 | 
                    msgId = msgId 
 | 
                }); 
 | 
  
 | 
                var revertObj = HttpUtil.RequestHttpsPost(NewAPI.API_POST_PushSerivce_Deletepushinfo, requestJson); 
 | 
                if (revertObj.Code == StateCode.SUCCESS) 
 | 
                { 
 | 
                    return true; 
 | 
                } 
 | 
                else 
 | 
                { 
 | 
  
 | 
                } 
 | 
                return false; 
 | 
            } 
 | 
            catch 
 | 
            { 
 | 
                return false; 
 | 
            } 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 注册推送 
 | 
        /// </summary> 
 | 
        public void RegisteredPush() 
 | 
        { 
 | 
            new System.Threading.Thread(() => 
 | 
            { 
 | 
                var success = PushSerivceAddPushInfo(); 
 | 
                if (success) 
 | 
                { 
 | 
                    Utlis.WriteLine("推送注册成功"); 
 | 
                } 
 | 
                else 
 | 
                { 
 | 
                    Utlis.WriteLine("推送注册失败"); 
 | 
                } 
 | 
            }) 
 | 
            { IsBackground = true }.Start(); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        /// 注销推送 
 | 
        /// </summary> 
 | 
        public void SignOutPush() 
 | 
        { 
 | 
            new System.Threading.Thread(() => 
 | 
            { 
 | 
                var success = PushSerivceSignOut(); 
 | 
                if (success) 
 | 
                { 
 | 
                    Utlis.WriteLine("推送注销成功"); 
 | 
                } 
 | 
                else 
 | 
                { 
 | 
                    Utlis.WriteLine("推送注销失败"); 
 | 
                } 
 | 
            }) 
 | 
            { IsBackground = true }.Start(); 
 | 
        } 
 | 
  
 | 
        #endregion 
 | 
  
 | 
        #region 检测更新 
 | 
        /// <summary> 
 | 
        ///  
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew CheckAppVersion() 
 | 
        { 
 | 
            var requestObj = new ForceUpdateObj() 
 | 
            { 
 | 
                LanguageType = Utlis.GetPostLanguageType() 
 | 
            }; 
 | 
#if __IOS__ 
 | 
            requestObj.DeviceType = PhoneDeviceType.IOS.ToString(); 
 | 
#endif 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_CheckAppVersion, requestJson); 
 | 
        } 
 | 
  
 | 
        /// <summary> 
 | 
        ///  
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetAppVersion() 
 | 
        { 
 | 
            var requestObj = new ForceUpdateObj() 
 | 
            { 
 | 
  
 | 
            }; 
 | 
#if __IOS__ 
 | 
            requestObj.DeviceType = PhoneDeviceType.IOS.ToString(); 
 | 
#endif 
 | 
            var requestJson = HttpUtil.GetSignRequestJson(requestObj); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.API_POST_GetAppVersion, requestJson); 
 | 
        } 
 | 
  
 | 
        #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(); 
 | 
                            MainPage.cityInfo.windLevel = jt.GetValue("WindLevel").ToString(); 
 | 
                            MainPage.cityInfo.weather = jt.GetValue("Weather").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; 
 | 
        //} 
 | 
  
 | 
        /* 2020-09-01 弃用 恢复旧数据功能在bus软件上实现 
 | 
        /// <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.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 
 | 
                /// </summary> 
 | 
                /// "03010112345678901234560101230123AABB"; 
 | 
                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.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.functionList.lights.Add(new Light() 
 | 
                        { 
 | 
                            sid = "030101" + guid + "0102010001AABB", 
 | 
                            name = ss.GetValue("Name").ToString(), 
 | 
                            function = new List<Trait>() { 
 | 
                                    new Trait { name="on_off", max=100,min = 0, value_key= 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.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.functionList.lights.Add(new Light() 
 | 
                        { 
 | 
                            sid = "030101" + guid + "0202020001AABB", 
 | 
                            name = ss.GetValue("Name").ToString(), 
 | 
                            function = new List<Trait>() { 
 | 
                                        new Trait { name="brightness", max=100,min = 0, value_key= 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.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.functionList.lights.Add(new Light() 
 | 
                        { 
 | 
                            sid = "030101" + guid + "0202040001AABB", 
 | 
                            name = ss.GetValue("Name").ToString(), 
 | 
                            function = new List<Trait>() { 
 | 
                                        new Trait { name="brightness", max=100,min = 0, value_key= new List<string> { "on","off"} }, 
 | 
                                        new Trait { name="color", max=100,min = 0, value_key= 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.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.functionList.aCs.Add(new AC() 
 | 
                        { 
 | 
                            sid = "030101" + guid + "0204010001AABB", 
 | 
                            name = ss.GetValue("Name").ToString(), 
 | 
                            function = new List<Trait>() { 
 | 
                                        new Trait { name="on_off", max=1,min = 0, value_key= new List<string> { "on","off"} }, 
 | 
                                        new Trait { name="mode", max = 2,min =0,value_key = new List<string>{ "auto", "heat", "cool","dry" } }, 
 | 
                                        new Trait { name = "fan",max = 3,min =0,value_key = new List<string>{ "low", "mid", "high" ,"auto"} }, 
 | 
                                        new Trait { name = "temperature", max = 32,min=16,value_key = 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.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.functionList.curtains.Add(new Curtain() 
 | 
                        { 
 | 
                            sid = "030101" + guid + "0203010001AABB", 
 | 
                            name = ss.GetValue("Name").ToString(), 
 | 
                            roomIdList = roomIds, 
 | 
                            //roomIdList = new List<string>() { roomSid }, 
 | 
                            function = new List<Trait>() { 
 | 
                                        new Trait { name="on_off", max=2,min = 0, value_key= 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.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.functionList.curtains.Add(new Curtain() 
 | 
                        { 
 | 
                            sid = "030101" + guid + "0203040001AABB", 
 | 
                            name = ss.GetValue("Name").ToString(), 
 | 
                            roomIdList = roomIds, 
 | 
                            //roomIdList = new List<string>() { roomSid }, 
 | 
                            function = new List<Trait>() { 
 | 
                                        new Trait { name="on_off", max=100,min = 0, value_key= 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.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.functionList.curtains.Add(new Curtain() 
 | 
                        { 
 | 
                            sid = "030101" + guid + "0203030001AABB", 
 | 
                            name = ss.GetValue("Name").ToString(), 
 | 
                            roomIdList = roomIds, 
 | 
                            //roomIdList = new List<string>() { roomSid }, 
 | 
                            function = new List<Trait>() { 
 | 
                                        new Trait { name="on_off", max=100,min = 0, value_key= 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.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 
 | 
  
 | 
  
 | 
        #region Kaede --设备功能—————————————————————————————————— 
 | 
        /// <summary> 
 | 
        /// 获取设备列表 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetDeviceList() 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            //d.Add("roomId", DB_ResidenceData.residenceData.residecenInfo.RegionID);//可控参数,当需要分页获取,怎么知道分页总数 
 | 
            //d.Add("searchType", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            //d.Add("pageSize", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            //d.Add("pageNo", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_GetDevcieList, requestJson); 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 获取设备详情列表 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetDeviceInfoList(List<string> functionIds) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("deviceIds", functionIds); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_GetDevcieInfoList, requestJson); 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 控制设备 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew ControlDevice(List<ApiAlinkControlActionObj> actionObjs) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("gatewayId", DriverLayer.Control.Ins.GatewayId); 
 | 
            d.Add("actions", actionObjs); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_ControlDevice, requestJson); 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 设备绑定房间 
 | 
        /// </summary> 
 | 
        public string BindDeviceToRoom(string deviceId,string roomId) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("deviceIds", new List<string>() { deviceId}); 
 | 
            d.Add("roomIds", new List<string>() { roomId}); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_BindDeviceToRoom, requestJson).Code; 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 设备解绑房间 
 | 
        /// </summary> 
 | 
        public string UnbindDeviceToRoom(string deviceId, string roomId) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("deviceIds", new List<string>() { deviceId }); 
 | 
            d.Add("roomIds", new List<string>() { roomId }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_UnbindDeviceToRoom, requestJson).Code; 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 设备名称修改 
 | 
        /// </summary> 
 | 
        public string EditDeviceName(string deviceId, string deviceName) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("deviceId", deviceId); 
 | 
            d.Add("name", deviceName); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_EditDeviceName, requestJson).Code; 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 收藏设备 
 | 
        /// </summary> 
 | 
        public string CollectDevice(string deviceId) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("deviceId",new List<string>() { deviceId }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_CollectDevice, requestJson).Code; 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 取消收藏设备 
 | 
        /// </summary> 
 | 
        public string CancelCollectDevice(string deviceId) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("deviceId", new List<string>() { deviceId }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_CancelCollectDevice, requestJson).Code; 
 | 
        } 
 | 
  
 | 
        #endregion 
 | 
  
 | 
        #region Kaede --场景功能-------------------------- 
 | 
        /// <summary> 
 | 
        /// 获取场景列表 
 | 
        /// 房间ID可空,默认查询住宅下所有房间 
 | 
        /// </summary> 
 | 
        /// <param name="roomId">房间ID</param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetSceneList(string roomId = null) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            if (roomId != null) 
 | 
            { 
 | 
                d.Add("roomId", roomId); 
 | 
            } 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_GetSecneList, requestJson); 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 获取场景详情 
 | 
        /// </summary> 
 | 
        /// <param name="seceneId">场景ID</param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetSceneInfo(string seceneId) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("userSceneIds",new List<string>() { seceneId }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_GetSecneList, requestJson); 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 添加场景 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew AddScene(Scene scene) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("scenes", new List<Scene>() { scene }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_EditSecne, requestJson); 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 编辑场景 
 | 
        /// </summary> 
 | 
        /// <param name="scene"></param> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew EditScene(Scene scene) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("scenes", new List<Scene>() { scene }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_EditSecne, requestJson); 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 删除场景 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public string DeleteScene(string userSceneId) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("userSceneIds", new List<string>() { userSceneId }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_DeleteSecne, requestJson).Code; 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 执行场景 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public string ExecuteScene(string userSceneId) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("userSceneIds", new List<string>() { userSceneId }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_ExecuteSecne, requestJson).Code; 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 收藏场景 
 | 
        /// </summary> 
 | 
        /// <param name="userSceneId"></param> 
 | 
        /// <returns></returns> 
 | 
        public string CollectScene(string userSceneId) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("userSceneIds", new List<string>() { userSceneId }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_CollectScene, requestJson).Code; 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 取消收藏场景 
 | 
        /// </summary> 
 | 
        /// <param name="userSceneId"></param> 
 | 
        /// <returns></returns> 
 | 
        public string CancelCollectScene(string userSceneId) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            d.Add("userSceneIds", new List<string>() { userSceneId }); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_CancelCollectScene, requestJson).Code; 
 | 
        } 
 | 
        #endregion 
 | 
  
 | 
        #region Kaede --房间功能-------------------------- 
 | 
        /// <summary> 
 | 
        /// 获取房间列表 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew GetRoomList() 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_GetRoomList, requestJson); 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 添加房间 
 | 
        /// 楼层也属于房间 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew AddRoom(List<Room> rooms) 
 | 
        { 
 | 
            Dictionary<string, object> d = new Dictionary<string, object>(); 
 | 
            d.Add("homeId", DB_ResidenceData.residenceData.residecenInfo.RegionID); 
 | 
            foreach(var room in  rooms) 
 | 
            { 
 | 
                Dictionary<string, string> d1 = new Dictionary<string, string>(); 
 | 
                d1.Add("roomName", room.name); 
 | 
                d1.Add("roomType", "ROOM"); 
 | 
                //d1. 
 | 
            } 
 | 
  
 | 
            var requestJson = HttpUtil.GetSignRequestJson(d); 
 | 
            return HttpUtil.RequestHttpsPost(NewAPI.Api_Post_AddRoom, requestJson); 
 | 
        } 
 | 
        /// <summary> 
 | 
        /// 添加楼层 
 | 
        /// </summary> 
 | 
        /// <returns></returns> 
 | 
        public ResponsePackNew AddFloor() 
 | 
        { 
 | 
            return null; 
 | 
        } 
 | 
  
 | 
        #endregion 
 | 
    } 
 | 
} 
 |