aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Installer/MainWindow.xaml.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-27 18:47:13 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-27 18:47:13 -0500
commit4435e83e696c9172b2dcb8a5d48d866f767a421c (patch)
treea8384bb070577371f8d0df09deebe4b5922d1f23 /MediaBrowser.Installer/MainWindow.xaml.cs
parent83305de8650d844e4491b7d6af1d45793224f03e (diff)
parent06995c4a362f63e5b940d4538b3134759e6a81c1 (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Installer/MainWindow.xaml.cs')
-rw-r--r--MediaBrowser.Installer/MainWindow.xaml.cs73
1 files changed, 46 insertions, 27 deletions
diff --git a/MediaBrowser.Installer/MainWindow.xaml.cs b/MediaBrowser.Installer/MainWindow.xaml.cs
index f48c30f85..fe672ec07 100644
--- a/MediaBrowser.Installer/MainWindow.xaml.cs
+++ b/MediaBrowser.Installer/MainWindow.xaml.cs
@@ -30,6 +30,8 @@ namespace MediaBrowser.Installer
protected string TempLocation = Path.Combine(Path.GetTempPath(), "MediaBrowser");
+ protected WebClient MainClient = new WebClient();
+
public MainWindow()
{
GetArgs();
@@ -48,6 +50,15 @@ namespace MediaBrowser.Installer
{
e.Cancel = true;
}
+ if (MainClient.IsBusy)
+ {
+ MainClient.CancelAsync();
+ while (MainClient.IsBusy)
+ {
+ // wait to finish
+ }
+ }
+ MainClient.Dispose();
ClearTempLocation(TempLocation);
base.OnClosing(e);
}
@@ -129,6 +140,8 @@ namespace MediaBrowser.Installer
dlAnimation.StopAnimation();
prgProgress.Visibility = btnCancel.Visibility = Visibility.Hidden;
+ if (archive == null) return; //we canceled or had an error that was already reported
+
// Extract
lblStatus.Content = "Extracting Package...";
try
@@ -167,28 +180,25 @@ namespace MediaBrowser.Installer
protected async Task<PackageVersionInfo> GetPackageVersion()
{
- using (var client = new WebClient())
+ try
{
- try
- {
- // get the package information for the server
- var json = await client.DownloadStringTaskAsync("http://www.mb3admin.com/admin/service/package/retrieveAll?name=" + PackageName);
- var packages = JsonSerializer.DeserializeFromString<List<PackageInfo>>(json);
+ // get the package information for the server
+ var json = await MainClient.DownloadStringTaskAsync("http://www.mb3admin.com/admin/service/package/retrieveAll?name=" + PackageName);
+ var packages = JsonSerializer.DeserializeFromString<List<PackageInfo>>(json);
- var version = packages[0].versions.Where(v => v.classification <= PackageClass).OrderByDescending(v => v.version).FirstOrDefault(v => v.version <= PackageVersion);
- if (version == null)
- {
- SystemClose("Could not locate download package. Aborting.");
- return null;
- }
- return version;
- }
- catch (Exception e)
+ var version = packages[0].versions.Where(v => v.classification <= PackageClass).OrderByDescending(v => v.version).FirstOrDefault(v => v.version <= PackageVersion);
+ if (version == null)
{
- SystemClose(e.GetType().FullName + "\n\n" + e.Message);
+ SystemClose("Could not locate download package. Aborting.");
+ return null;
}
-
+ return version;
}
+ catch (Exception e)
+ {
+ SystemClose(e.GetType().FullName + "\n\n" + e.Message);
+ }
+
return null;
}
@@ -198,23 +208,32 @@ namespace MediaBrowser.Installer
/// <returns>The fully qualified name of the downloaded package</returns>
protected async Task<string> DownloadPackage(PackageVersionInfo version)
{
- using (var client = new WebClient())
+ try
{
+ var archiveFile = Path.Combine(PrepareTempLocation(), version.targetFilename);
+
+ // setup download progress and download the package
+ MainClient.DownloadProgressChanged += DownloadProgressChanged;
try
{
- var archiveFile = Path.Combine(PrepareTempLocation(), version.targetFilename);
-
- // setup download progress and download the package
- client.DownloadProgressChanged += DownloadProgressChanged;
- await client.DownloadFileTaskAsync(version.sourceUrl, archiveFile);
- return archiveFile;
+ await MainClient.DownloadFileTaskAsync(version.sourceUrl, archiveFile);
}
- catch (Exception e)
+ catch (WebException e)
{
- SystemClose(e.GetType().FullName + "\n\n" + e.Message);
+ if (e.Status == WebExceptionStatus.RequestCanceled)
+ {
+ return null;
+ }
+ throw;
}
+
+ return archiveFile;
+ }
+ catch (Exception e)
+ {
+ SystemClose(e.GetType().FullName + "\n\n" + e.Message);
}
- return "";
+ return "";
}