JLChen
2020-06-04 6d55af8792cf8fbef0055e677b900fc352dba9a2
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
using System;
using System.Collections.Generic;
using System.Text;
using Shared;
using Shared.SimpleControl.R;
using Shared.SimpleControl.Phone.Music;
using Shared.SimpleControl.Phone;
using Shared.SimpleControl;
 
namespace SmartHome.UI.SimpleControl.Phone.Music
{
    class A31CommonLogin : FrameLayout
    {
        /// <summary>
        /// 密码
        /// </summary>
        EditText password;
        /// <summary>
        /// 用户名
        /// </summary>
        EditText userName;
 
        A31MusicModel currentMusiceA31;
        public void show (A31MusicModel a31, string url, string topname)
        {
            currentMusiceA31 = a31;
            AddChidren (new Button {
                Height = Application.GetRealHeight (36),
                BackgroundColor = SkinStyle.Current.MainColor,
            });
 
            var topFrameLayout = new FrameLayout {
                Height = Application.GetRealHeight (90),
                Y = Application.GetRealHeight (30),
                BackgroundColor = SkinStyle.Current.MainColor,
            };
            AddChidren (topFrameLayout);
 
            var LocallistName = new Button {
                TextID = MyInternationalizationString.login,
            };
            topFrameLayout.AddChidren (LocallistName);
 
            var hdl = new Button {
                Width = Application.GetRealWidth (154),
                Height = Application.GetRealHeight (90),
                X = Application.GetRealWidth (486),
                Gravity = Gravity.CenterVertical,
                UnSelectedImagePath = MainPage.LogoString,
            };
            topFrameLayout.AddChidren (hdl);
 
            var back = new Button {
                Width = Application.GetRealWidth (82),
                Height = Application.GetRealHeight (89),
                X = Application.GetRealWidth (10),
                Gravity = Gravity.CenterVertical,
                UnSelectedImagePath = "MusicIcon/HomepageBack.png",
            };
            topFrameLayout.AddChidren (back);
            back.MouseDownEventHandler += (sender, e) => {
                RemoveFromParent ();
            };
 
            var middle = new FrameLayout ();
            middle.Y = topFrameLayout.Bottom;
            middle.Height = Application.GetRealHeight (Application.DesignHeight - 126);
            middle.BackgroundColor = 0xff2F2F2F;
            AddChidren (middle);
 
            userName = new EditText {
                Width = Application.GetRealWidth (580),
                Height = Application.GetRealHeight (80),
                X = Application.GetRealWidth (30),
                Y = Application.GetRealHeight (180),
                TextAlignment = TextAlignment.CenterLeft,
                BackgroundColor = 0xFF4D4D4D,
                PlaceholderText = Language.StringByID (MyInternationalizationString.Youremail),
                PlaceholderTextColor = 0x80ffffff,
            };
            middle.AddChidren (userName);
 
            password = new EditText {
                Width = Application.GetRealWidth (580),
                Height = Application.GetRealHeight (80),
                X = Application.GetRealWidth (30),
                Y = Application.GetRealHeight (300),
                TextAlignment = TextAlignment.CenterLeft,
                BackgroundColor = 0xFF4D4D4D,
                SecureTextEntry = true,
                PlaceholderText = Language.StringByID (MyInternationalizationString.Yourpassword),
                PlaceholderTextColor = 0x80ffffff,
            };
            middle.AddChidren (password);
 
            Button login = new Button {
                Width = Application.GetRealWidth (500),
                Height = Application.GetRealHeight (100),
                X = Application.GetRealWidth (70),
                Y = Application.GetRealHeight (460),
                BackgroundColor = 0xff009999,
                TextID = MyInternationalizationString.login,
                TextSize = 18,
                Radius = (uint)Application.GetRealHeight (16),
            };
            login.MouseUpEventHandler += (sender, e) => {
                login.BackgroundColor = 0xff009999;
                MainPage.Loading.Start (Language.StringByID (MyInternationalizationString.load));
                var tempUserName = userName.Text;
                var tempPassword = password.Text;
                System.Threading.Tasks.Task.Run (() => {
                    Airable airable = null;
                    try {
                        airable = ReadRadiohome (tempUserName, tempPassword, url);
                        if (airable == null) {
                            airable = ReadRadiohome (tempUserName, tempPassword, url);
                        }
                    } catch (Exception ee) {
                        var dd = ee.Message;
                    } finally {
                        Application.RunOnMainThread (() => {
                            MainPage.Loading.Hide ();
                            if (airable == null) {
                                new Tip () { Text = Language.StringByID (MyInternationalizationString.Accountorpassworderro), Direction = AMPopTipDirection.Down }.Show (login);
                                return;
                            } else {
                                var RadioConfigBytes = System.Text.Encoding.UTF8.GetBytes (Newtonsoft.Json.JsonConvert.SerializeObject (new RadioConfig { UserName = userName.Text, Passwrod = password.Text }));
                                Shared.IO.FileUtils.WriteFileByBytes (RadioConfig.FileName, RadioConfigBytes);
                            }
 
                            A31RadioList a31RadioList = new A31RadioList ();
                            MainPage.MainFrameLayout.AddChidren (a31RadioList);
                            a31RadioList.show (a31, airable, topname);
                        });
                    }
                });
            };
 
            login.MouseDownEventHandler += (sender, e) => {
                login.BackgroundColor = 0xffFE5E00;
            };
 
            var radioConfig = Newtonsoft.Json.JsonConvert.DeserializeObject<RadioConfig> (System.Text.Encoding.UTF8.GetString (Shared.IO.FileUtils.ReadFile (RadioConfig.FileName)));
            if (radioConfig != null) {
                userName.Text = radioConfig.UserName;
                password.Text = radioConfig.Passwrod;
                MainPage.Loading.Start (Language.StringByID (MyInternationalizationString.load));
                System.Threading.Tasks.Task.Run (() => {
                    Airable airable = null;
                    try {
                        airable = ReadRadiohome (radioConfig.UserName, radioConfig.Passwrod, url);
                        if (airable == null) {
                            airable = ReadRadiohome (radioConfig.UserName, radioConfig.Passwrod, url);
                        }
                    } catch (Exception ee) {
                        var dd = ee.Message;
                    } finally {
                        Application.RunOnMainThread (() => {
                            MainPage.Loading.Hide ();
                            if (airable == null) {
                                new Tip () { Text = Language.StringByID (MyInternationalizationString.Accountorpassworderro), Direction = AMPopTipDirection.Down }.Show (login);
                                return;
                            } else {
                                var RadioConfigBytes = System.Text.Encoding.UTF8.GetBytes (Newtonsoft.Json.JsonConvert.SerializeObject (new RadioConfig { UserName = userName.Text, Passwrod = password.Text }));
                                Shared.IO.FileUtils.WriteFileByBytes (RadioConfig.FileName, RadioConfigBytes);
                            }
                            A31RadioList a31RadioList = new A31RadioList();
                            MainPage.MainFrameLayout.AddChidren (a31RadioList);
                            a31RadioList.show (a31, airable, topname);
                        });
                    }
                });
            }
            middle.AddChidren (login);
        }
        public static Airable ReadRadiohome (string userName, string password, string url)
        {
            System.IO.StringReader sr = null;
            Airable airable = null;
            try {
                Shared.Net.MyWebClient webClient = new Shared.Net.MyWebClient ();
                webClient.Headers.Add ("CONTENT-TYPE", "text/xml;charset=\"utf-8\"");
                webClient.Headers.Add ("Authorization", "Basic " + Convert.ToBase64String (Encoding.ASCII.GetBytes (userName + ":" + password)));
                byte [] recevieBytes = webClient.DownloadData (new Uri (url));
                //var ddd = Encoding.UTF8.GetString(recevieBytes, 0, recevieBytes.Length);
                sr = new System.IO.StringReader (Encoding.UTF8.GetString (recevieBytes, 0, recevieBytes.Length));
                string line = null;
                StringBuilder stringBuilder = null;
                while ((line = sr.ReadLine ()) != null) {
                    line = line.Trim ();
                    if (stringBuilder == null) {
                        if (line.EndsWith ("<div class=\"col-50\">") && sr.ReadLine ().Trim () == "<code>{") {
                            stringBuilder = new StringBuilder();
                            stringBuilder.AppendLine ("{");
                        }
                    } else {
                        if (line.EndsWith ("</code>")) {
                            stringBuilder.AppendLine ("}");
                            string s = @stringBuilder.ToString ().Replace (",}", "}").Replace ("\"content\": []", "\"content\": \"\"");
                            airable = Newtonsoft.Json.JsonConvert.DeserializeObject<Airable> (@s);
                            break;
                        } else {
                            if (line.Contains ("</a>")) {
                                line = line.Remove (line.IndexOf ("<a"), line.IndexOf ("\">") - line.IndexOf ("<a") + 2).Replace ("</a>", "");
                            }
                            if (line.Contains ("description")) {
                                //line = line.Remove();
                            } else {
                                stringBuilder.AppendLine (@line);
                            }
                        }
                    }
                }
            } catch (Exception e) { } finally {
                if (sr != null)
                    sr.Close ();
            }
            return airable;
        }
    }
}