1
wxr
2023-03-31 7e42cc13a14b7de31c9f5d5c61cdf24f3246335d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
//using System;
//using Shared.SimpleControl.Phone;
//using System.Collections.Generic;
//using System.Text;
//using System.Net.NetworkInformation;
 
//namespace Shared.SimpleControl
//{
//    public class EquipmentPublicClass
//    {
//        /*
 
//         */
//        public void AlertNotOnline ()
//        {
//            new Alert (Language.StringByID (R.MyInternationalizationString.Tip), Language.StringByID (R.MyInternationalizationString.TipEquipmentNotOnline), Language.StringByID (R.MyInternationalizationString.Close)).Show ();
//        }
 
//        static bool isConnectiong = false;
 
//        /// <summary>
//        /// 检测/连接远程
//        /// </summary>
//        public static void CheckLinkRemote (int status)
//        {
//            //if (isConnectiong) {
//            //    return;
//            //}
//            //isConnectiong = true;
//            UserConfig.Instance.internetStatus = status;
//#if wallon
//                return;
//#endif
//            if (MainPage.LoginUser == null || !MainPage.LoginUser.IsLogin) {
//                return;
//            }
 
//            new System.Threading.Thread (async () => {
//                try {
//                    if (status == 0) {
//                        Application.RunOnMainThread (() => {
//                            MainPage.AddTip (Language.StringByID (R.MyInternationalizationString.InternetStatusTip));
//                            MainPage.WiFiStatus = "CrabtreeAdd/WiFiUnlink.png";
//                            UserMiddle.btnLinkStatus.UnSelectedImagePath = MainPage.WiFiStatus;
//                        });
//                    } else {
//                        if (MainPage.LoginUser == null || !MainPage.LoginUser.IsLogin) {
//                            return;
//                        }
//                        //Application.RunOnMainThread (() => {
//                        //    if (UserMiddle.LinkStatusTip.BackgroundColor == SkinStyle.Current.DelColor) {
//                        //        UserMiddle.LinkStatusTip.BackgroundColor = SkinStyle.Current.MainColor;
//                        //    }
//                        //});
//                        var localFileList = IO.FileUtils.ReadFiles ();
//                        var gateWayList = localFileList.FindAll ((obj) => {
//                            return (obj.StartsWith ("Equipment_")) && (
//                             obj.Split ('_') [1].ToString () == DeviceType.OnePortBus.ToString () ||
//                                obj.Split ('_') [1].ToString () == DeviceType.RCU.ToString () ||
//                                obj.Split ('_') [1].ToString () == DeviceType.SuperWireless.ToString () ||
//                                obj.Split ('_') [1].ToString () == DeviceType.OnePortWirelessFR.ToString ());
//                        });
//                        bool canRemote = false;
//                        if (CommonPage.IsRemote) {
//                            //await SmartHome.MqttCommon.DisConnectRemoteMqttClient ();
//                            //await SmartHome.MqttCommon.StartCloudMqtt ();
 
//                            SmartHome.MqttCommon.MqttRemoteSend (new byte [] { }, 3);
//                        }
//                        foreach (var gatewayFileName in gateWayList) {
//                            var tempStrings = gatewayFileName.Split ('_');
//                            var gateWayString = CommonPage.MyEncodingUTF8.GetString (IO.FileUtils.ReadFile (gatewayFileName));
//                            var common = Newtonsoft.Json.JsonConvert.DeserializeObject<GatewayBase> (gateWayString);
//                            if (common != null) {
//                                if (common.MAC.Replace (".", "") == UserConfig.Instance.GatewayMAC.Replace (".", "")) {
//                                    canRemote = true;
//                                    if (status == 2) {
//                                        //var result = Control.ControlBytesSendHasReturn (Command.ReadGateway, common.SubnetID, common.DeviceID, new byte [] { (byte)new Random ().Next (255), (byte)new Random ().Next (255) });
//                                        #region
//                                        var control = new Control ();
//                                        control.Send (new Target () {
//                                            IPEndPoint = new System.Net.IPEndPoint (System.Net.IPAddress.Parse (new Net.NetWiFi ().BroadcastIpAddress.ToString ()), 6000),
//                                            Command = Command.ReadGateway,
//                                            SubnetID = common.SubnetID,
//                                            DeviceID = common.DeviceID,
//                                            AddData = new byte [] { (byte)new Random ().Next (255), (byte)new Random ().Next (255) },
//                                        }, SendCount.Three, true,true);
//                                      var  result = control.UsefulBytes;
 
//                                        #endregion
//                                        if (result != null) {
//                                            canRemote = false;
//                                            var mac0 = CommonPage.byteToHex16 (result [5]) + "." + CommonPage.byteToHex16 (result [6]) + "." + CommonPage.byteToHex16 (result [7]) + "." + CommonPage.byteToHex16 (result [8]) + "." + CommonPage.byteToHex16 (result [9]) + "." + CommonPage.byteToHex16 (result [10]) + "." + CommonPage.byteToHex16 (result [11]) + "." + CommonPage.byteToHex16 (result [12]);
//                                            if (common.MAC == mac0) {
//                                                //var gatewayBytes = Control.ControlBytesSendHasReturn (Command.ReadGateWayModelInfo, common.SubnetID, common.DeviceID, new byte [] { });
//                                                #region
//                                                control.Send (new Target () {
//                                                    IPEndPoint = new System.Net.IPEndPoint (System.Net.IPAddress.Parse (new Net.NetWiFi ().BroadcastIpAddress.ToString ()), 6000),
//                                                    Command = Command.ReadGateWayModelInfo,
//                                                    SubnetID = common.SubnetID,
//                                                    DeviceID = common.DeviceID,
//                                                    AddData = new byte [] { },
//                                                }, SendCount.Three, true,true);
//                                                var gatewayBytes = control.UsefulBytes;
//                                                #endregion
//                                                if (gatewayBytes != null) {
//                                                    common.Remote_GroupName = CommonPage.MyEncodingGB2312.GetString (gatewayBytes, 1, 20).Trim ('\0');
//                                                    common.Remote_ProjectName = CommonPage.MyEncodingGB2312.GetString (gatewayBytes, 21, 20).Trim ('\0');
//                                                    common.Remote_UserName = CommonPage.MyEncodingGB2312.GetString (gatewayBytes, 41, 8).Trim ('\0');
//                                                    common.Remote_Password = CommonPage.MyEncodingGB2312.GetString (gatewayBytes, 49, 8).Trim ('\0');
//                                                    var requestJson2 = @"{'Token':'" + MainPage.LoginUser.LoginTokenString + "','MAC':'" + common.MAC + "','Password':'" + common.Remote_Password + "'}";
//                                                    var revertObj2 = MainPage.RequestHttps ("UpdateRemoteSwitchPassword", requestJson2, true, false);
//                                                    return;
//                                                }
//                                                Application.RunOnMainThread (() => {
//                                                    MainPage.WiFiStatus = "CrabtreeAdd/WiFi.png";
//                                                    UserMiddle.btnLinkStatus.UnSelectedImagePath = MainPage.WiFiStatus;
//                                                    MainPage.Loading.Hide ();
//                                                });
//                                                Shared.SimpleControl.Phone.UserMiddle.ReadAllDeviceStatus ();
//                                                await SmartHome.MqttCommon.DisConnectRemoteMqttClient ();
//                                                return;
//                                            }
//                                        }
//                                    } else {
//                                        break;
//                                    }
//                                }
//                            }
//                        }
//                        if (canRemote && !CommonPage.IsRemote) {
//                            if (!string.IsNullOrEmpty (UserConfig.Instance.CurrentRegion.MAC)) {
//                                Shared.SimpleControl.CommonPage.IsRemote = true;
//                                await SmartHome.MqttCommon.StartCloudMqtt ();
//                            }
//                        }
//                    }
//                } catch (Exception ex) {
//                    Console.WriteLine ("CheckLinkRemote : " + ex.ToString ());
//                } finally {
//                    isConnectiong = false;
//                    Application.RunOnMainThread (() => {
//                        MainPage.Loading.Hide ();
//                    });
//                }
//            }) { IsBackground = true }.Start ();
//        }
//    }
//}
 
 
using System;
using Shared.SimpleControl.Phone;
using System.Collections.Generic;
using System.Text;
using System.Net.NetworkInformation;
 
namespace Shared.SimpleControl
{
    public class EquipmentPublicClass
    {
 
        public void AlertNotOnline ()
        {
            new Alert ("", Language.StringByID (R.MyInternationalizationString.TipEquipmentNotOnline), Language.StringByID (R.MyInternationalizationString.Close)).Show ();
        }
 
        static object lockObj = new object ();
 
        /// <summary>
        /// 检测/连接远程
        /// </summary>
        /// <returns>The link remote.</returns>
        /// <param name="status">Status.</param>
        public static void CheckLinkRemote (int status)
        {
            lock (lockObj) {
                Console.WriteLine ("CheckLinkRemote!!!");
                System.Threading.Tasks.Task.Run (() => {
                    try {
                        if (status == 0) {
                            Application.RunOnMainThread (() => {
                                MainPage.WiFiStatus = "CrabtreeAdd/WiFiUnlink.png";
                                MainPage.AddTip (Language.StringByID (R.MyInternationalizationString.InternetStatusTip));
                                //UserMiddle.LinkStatusTip.BackgroundColor = SkinStyle.Current.DelColor;
                            });
                        } else {
                            MainPage.WiFiStatus = "CrabtreeAdd/WiFi.png";
                            if (MainPage.LoginUser == null || !MainPage.LoginUser.IsLogin) {
                                return;
                            }
 
                            var localFileList = IO.FileUtils.ReadFiles ();
                            var gateWayList = localFileList.FindAll ((obj) => {
                                return (obj.StartsWith ("Equipment_")) && (
                                 obj.Split ('_') [1].ToString () == DeviceType.OnePortBus.ToString () ||
                                    obj.Split ('_') [1].ToString () == DeviceType.RCU.ToString () ||
                                    obj.Split ('_') [1].ToString () == DeviceType.OnePortWirelessFR.ToString ());
                            });
                            List<string> linkList = new List<string> ();
                            GatewayBase common = null;
                            string gateWayString = "";
                            if (gateWayList.Count > 0) {
                                foreach (var gatewayFileName in gateWayList) {
                                    var tempStrings = gatewayFileName.Split ('_');
                                    if (tempStrings [1].ToString () == DeviceType.OnePortBus.ToString () || tempStrings [1].ToString () == DeviceType.RCU.ToString () ||
                                        tempStrings [1].ToString () == DeviceType.OnePortWirelessFR.ToString ()) {
                                        gateWayString = CommonPage.MyEncodingUTF8.GetString (IO.FileUtils.ReadFile (gatewayFileName));
                                        common = Newtonsoft.Json.JsonConvert.DeserializeObject<GatewayBase> (gateWayString);
 
                                        if (common.MAC.Replace (".", "") == UserConfig.Instance.GatewayMAC.Replace (".", "")) {
                                            if (!string.IsNullOrEmpty (common.Remote_UserName) && !string.IsNullOrEmpty (common.Remote_Password) &&
                                                !string.IsNullOrEmpty (common.Remote_GroupName) && !string.IsNullOrEmpty (common.Remote_ProjectName)) {
                                                break;
                                            }
                                        }
                                        common = null;
                                    }
                                }
                            } else {
                                return;
                            }
#if DEBUG
                            if (common == null) {
                                if (MainPage.LoginUser.AccountString == "464027401@qq.com") {
                                    gateWayString = CommonPage.MyEncodingUTF8.GetString (IO.FileUtils.ReadFile (UserConfig.Instance.RemoteModeFile));
                                    common = Newtonsoft.Json.JsonConvert.DeserializeObject<GatewayBase> (gateWayString);
                                }
                            }
#endif
                            if (common == null || common.Type == DeviceType.UnKown) {
                                return;
                            }
                            Application.RunOnMainThread (() => {
                                MainPage.Loading.Start ("Please wait...");
                            });
                            if (status == 1) {
                                var gateWay = Newtonsoft.Json.JsonConvert.DeserializeObject<GatewayBase> (gateWayString);
                                SystemRemote.LinkRemote (gateWay.Remote_UserName, gateWay.Remote_ProjectName, gateWay.Remote_Password, true);
                            } else {
                                CommonPage.IsRemote = false;
                                CommonPage.FindGateway = true;
                                var result = Control.ControlBytesSendHasReturn (Command.ReadDeviceMac, common.SubnetID, common.DeviceID, new byte [] { }, false);
                                CommonPage.FindGateway = false;
                                if (result != null) {
                                    var mac0 = CommonPage.byteToHex16 (result [0]) + "." + CommonPage.byteToHex16 (result [1]) + "." + CommonPage.byteToHex16 (result [2]) + "." + CommonPage.byteToHex16 (result [3]) + "." + CommonPage.byteToHex16 (result [4]) + "." + CommonPage.byteToHex16 (result [5]) + "." + CommonPage.byteToHex16 (result [6]) + "." + CommonPage.byteToHex16 (result [7]);
                                    if (common.MAC == mac0) {
                                        Application.RunOnMainThread (() => {
                                            MainPage.WiFiStatus = "CrabtreeAdd/WiFi.png";
                                        });
                                        return;
                                    }
                                }
                                var gateWay = Newtonsoft.Json.JsonConvert.DeserializeObject<GatewayBase> (gateWayString);
                                SystemRemote.LinkRemote (gateWay.Remote_UserName, gateWay.Remote_ProjectName, gateWay.Remote_Password, true);
                            }
                        }
                    } catch (Exception ex) {
                        Console.WriteLine (ex.ToString ());
                    } finally {
                        Application.RunOnMainThread (() => {
                            if (status != 0) {
                                Shared.SimpleControl.Phone.UserMiddle.ReadAllDeviceStatus ();
                            }
                            UserMiddle.btnLinkStatus.UnSelectedImagePath = MainPage.WiFiStatus;
                            MainPage.Loading.Hide ();
                        });
                    }
                });
            }
        }
    }
 
}