[go: up one dir, main page]

Menu

[6396b6]: / AppUpdate.cs  Maximize  Restore  History

Download this file

236 lines (221 with data), 11.5 kB

  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
/***********************************************************************************
This file is part of Clock Alert.
Clock Alert is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3 as published by
the Free Software Foundation.
Clock Alert is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clock Alert. If not, see <http://www.gnu.org/licenses/>.
*************************************************************************************/
using System;
using System.Net;
using System.Threading;
using System.Xml;
namespace Clock_Alert
{
class AppUpdate
{
private Version newVersion, currentVersion;
private XmlTextReader reader;
private string url, elementName,xmlUrl;
private Thread updateCheckerThread, autoUpdateCheckerTherad;
public AppUpdate()
{
newVersion = null;
currentVersion = null;
reader = null;
url = string.Empty;
elementName = string.Empty;
xmlUrl = string.Empty;
updateCheckerThread = null;
}
/// <summary>
/// Gets the current version available for download.
/// </summary>
private void getVersion()
{
xmlUrl = "https://clockalert.sourceforge.io/version.xml";// throw new Exception("Test error no need to panic");
try
{
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
reader = new XmlTextReader(xmlUrl);
reader.MoveToContent();
if (reader.NodeType == XmlNodeType.Element && reader.Name == "clockalert")
{
while (reader.Read())
{
if (reader.NodeType == XmlNodeType.Element)
elementName = reader.Name;
else
{
if (reader.NodeType == XmlNodeType.Text && reader.HasValue)
{
switch (elementName)
{
case "version":
newVersion = new Version(reader.Value);
break;
case "url":
url = reader.Value;
break;
}
}
}
}
}
else
throw new XmlException("Unable to parse the XML resource. Please check for the correct XML resource");
}
catch (System.Net.WebException ex)
{
if (ex.Response == null)
System.Windows.Forms.MessageBox.Show("Update operation has been terminated abruptly because Clock Alert could not communicate with the server", "Error", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
else
{
if (ex.Status == System.Net.WebExceptionStatus.ProtocolError)
{
if (((System.Net.HttpWebResponse)ex.Response).StatusCode == System.Net.HttpStatusCode.NotFound)
System.Windows.Forms.MessageBox.Show("Update operation has been terminated abruptly because Clock Alert could not find the requested resource\n Please check for updates from http://www.clockalert.co.nr", "Error", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
else
System.Windows.Forms.MessageBox.Show("Update operation has been terminated abruptly because an error occured while trying to communicate with the server", "Error", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
}
else
System.Windows.Forms.MessageBox.Show("Update operation has been terminated abruptly because an unknown error occured while trying to communicate with the server\nStatus:" + ((System.Net.HttpWebResponse)ex.Response).StatusCode + "\n Description" + ((System.Net.HttpWebResponse)ex.Response).StatusDescription, "Error", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
}
newVersion = null;
url = string.Empty;
ErrorLog.logError(ex);
}
catch (System.IO.FileNotFoundException ex)
{
System.Windows.Forms.MessageBox.Show("Update operation has been terminated abruptly because Clock Alert could not find the requested resource\n Please check for updates from http://www.clockalert.co.nr", "Error", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
ErrorLog.logError(ex);
newVersion = null;
url = string.Empty;
}
catch(XmlException ex)
{
System.Windows.Forms.MessageBox.Show("Update operation has been terminated abruptly because Clock Alert could not parse the requested resource\n Please check for updates from http://www.clockalert.co.nr", "Error", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
ErrorLog.logError(ex);
newVersion = null;
url = string.Empty;
}
catch (Exception ex)
{
CrashReporterUI reporter=new CrashReporterUI(ex);
reporter.ShowDialog();
ErrorLog.logError(ex);
newVersion = null;
url = string.Empty;
}
}
/// <summary>
/// Checks for updates and informs if there is an update. This method is only used
/// with manual update check operation.
/// </summary>
private void updateChecker()
{
if (InternetConnection.checkConntection())
{
getVersion();
if (newVersion != null)
{
currentVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
if (currentVersion.CompareTo(newVersion) < 0)
{
if (System.Windows.Forms.DialogResult.Yes == System.Windows.Forms.MessageBox.Show(Contents.updateAvailable, Contents.updateAvailableTitle, System.Windows.Forms.MessageBoxButtons.YesNo, System.Windows.Forms.MessageBoxIcon.Question))
{
System.Diagnostics.Process.Start(url);
}
}
else
System.Windows.Forms.MessageBox.Show(Contents.updateNotAvailable, Contents.updateNotAvailableTitle, System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Information);
}
else
{
return;
}
}
else
{
if (System.Windows.Forms.DialogResult.Retry == System.Windows.Forms.MessageBox.Show(Contents.noInternetMessage, Contents.noInternetTitle, System.Windows.Forms.MessageBoxButtons.RetryCancel, System.Windows.Forms.MessageBoxIcon.Exclamation))
{
updateChecker();
}
else
{
InternetConnection.InternettConnectionStateCanged += InternetConnection_InternettConnectionStateCanged;
}
}
}
/// <summary>
/// Event to notify when computer gets connected to the internet.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void InternetConnection_InternettConnectionStateCanged(object sender, InternetConnectionStateChangedEventArgs e)
{
if (e.IsConnected)
{
checkForUpdate();
InternetConnection.InternettConnectionStateCanged -= InternetConnection_InternettConnectionStateCanged;
}
}
/// <summary>
/// Checks for updates for the application and informs weather or not an update is
/// available.
/// </summary>
public void checkForUpdate()
{
/* Disabling the inbuilt update check
* new updates will be checked mannually by visiting website
updateCheckerThread = new Thread(this.updateChecker);
updateCheckerThread.Name = "Clock alert update checker";
updateCheckerThread.Start();*/
/*
* Opens the default browser to show the latest version of clock alert
*/
currentVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
string message = "To get the latest version of Clock Alert please visit the project webpage. Would you like to visit the project page?\n"+Properties.Settings.Default.ProjectHome+"\n Current version is " + currentVersion;
if (System.Windows.Forms.DialogResult.Yes == System.Windows.Forms.MessageBox.Show(message, "Visit Project page to update the app", System.Windows.Forms.MessageBoxButtons.YesNo, System.Windows.Forms.MessageBoxIcon.Question))
{
System.Diagnostics.Process.Start(Properties.Settings.Default.ProjectReleaseURL);
}
}
/// <summary>
/// Checks for updates and informs if there is an update. This method is only used
/// with auto update check operation.
/// </summary>
private void autoUpdateCheck()
{
if (InternetConnection.checkConntection())
{
getVersion();
if (newVersion != null)
{
currentVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
if (currentVersion.CompareTo(newVersion) < 0)
{
if (System.Windows.Forms.DialogResult.Yes == System.Windows.Forms.MessageBox.Show(Contents.updateAvailable, Contents.updateAvailableTitle, System.Windows.Forms.MessageBoxButtons.YesNo, System.Windows.Forms.MessageBoxIcon.Question))
{
System.Diagnostics.Process.Start(url);
}
}
}
}
}
/// <summary>
/// Performs update check periodically. Call this method only on a periodic basis.
/// Do not use this method for manual update checking.
/// </summary>
public void autoUpdateChecker()
{
autoUpdateCheckerTherad = new Thread(autoUpdateCheck);
autoUpdateCheckerTherad.Name = "Clock alert auto updater";
autoUpdateCheckerTherad.Start();
}
}
}