using System; using System.Collections.Generic; using System.Configuration; using System.Diagnostics; using System.IO; using System.Net; using System.Threading.Tasks; using System.Windows; using System.Linq; using Ionic.Zip; using MediaBrowser.Installer.Code; using ServiceStack.Text; using IWshRuntimeLibrary; namespace MediaBrowser.Installer { /// /// Interaction logic for MainWindow.xaml /// public partial class MainWindow : Window { protected PackageVersionClass PackageClass = PackageVersionClass.Release; protected Version PackageVersion = new Version(4,0,0,0); protected string PackageName = "MBServer"; protected string RootSuffix = "-Server"; protected string TargetExe = "MediaBrowser.ServerApplication.exe"; protected string FriendlyName = "Media Browser Server"; protected string RootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser-Server"); protected bool SystemClosing = false; protected string TempLocation = Path.Combine(Path.GetTempPath(), "MediaBrowser"); public MainWindow() { GetArgs(); InitializeComponent(); DoInstall(); } private void btnCancel_Click(object sender, RoutedEventArgs e) { this.Close(); } protected override void OnClosing(System.ComponentModel.CancelEventArgs e) { if (!SystemClosing && MessageBox.Show("Cancel Installation - Are you sure?", "Cancel", MessageBoxButton.YesNo) == MessageBoxResult.No) { e.Cancel = true; } ClearTempLocation(TempLocation); base.OnClosing(e); } protected void SystemClose(string message = null) { if (message != null) { MessageBox.Show(message, "Error"); } SystemClosing = true; this.Close(); } protected void GetArgs() { var product = ConfigurationManager.AppSettings["product"] ?? "server"; PackageClass = (PackageVersionClass) Enum.Parse(typeof (PackageVersionClass), ConfigurationManager.AppSettings["class"] ?? "Release"); switch (product.ToLower()) { case "mbt": PackageName = "MBTheater"; RootSuffix = "-UI"; TargetExe = "MediaBrowser.UI.exe"; FriendlyName = "Media Browser Theater"; break; default: PackageName = "MBServer"; RootSuffix = "-Server"; TargetExe = "MediaBrowser.ServerApplication.exe"; FriendlyName = "Media Browser Server"; break; } RootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser" + RootSuffix); } /// /// Execute the install process /// /// protected async Task DoInstall() { lblStatus.Content = string.Format("Downloading {0}...", FriendlyName); dlAnimation.StartAnimation(); prgProgress.Value = 0; prgProgress.Visibility = Visibility.Visible; // Determine Package version var version = await GetPackageVersion().ConfigureAwait(false); lblStatus.Content = string.Format("Downloading {0} (version {1})...", FriendlyName, version.versionStr); // Download var archive = await DownloadPackage(version).ConfigureAwait(false); dlAnimation.StopAnimation(); prgProgress.Visibility = btnCancel.Visibility = Visibility.Hidden; // Extract lblStatus.Content = "Extracting Package..."; try { ExtractPackage(archive); } catch (Exception e) { SystemClose("Error Extracting - " + e.GetType().FullName + "\n\n" + e.Message); } // Create shortcut var fullPath = Path.Combine(RootPath, "System", TargetExe); try { CreateShortcut(fullPath); } catch (Exception e) { SystemClose("Error Creating Shortcut - "+e.GetType().FullName+"\n\n"+e.Message); } // And run try { Process.Start(fullPath); } catch (Exception e) { SystemClose("Error Executing - "+fullPath+ " "+e.GetType().FullName+"\n\n"+e.Message); } SystemClose(); } protected async Task GetPackageVersion() { using (var client = new WebClient()) { try { // get the package information for the server var json = await client.DownloadStringTaskAsync("http://www.mb3admin.com/admin/service/package/retrieveAll?name=" + PackageName).ConfigureAwait(false); var packages = JsonSerializer.DeserializeFromString>(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; } } catch (Exception e) { SystemClose(e.GetType().FullName + "\n\n" + e.Message); } } return null; } /// /// Download our specified package to an archive in a temp location /// /// The fully qualified name of the downloaded package protected async Task DownloadPackage(PackageVersionInfo version) { using (var client = new WebClient()) { try { var archiveFile = Path.Combine(PrepareTempLocation(), version.targetFilename); // setup download progress and download the package client.DownloadProgressChanged += DownloadProgressChanged; await client.DownloadFileTaskAsync(version.sourceUrl, archiveFile).ConfigureAwait(false); return archiveFile; } catch (Exception e) { SystemClose(e.GetType().FullName + "\n\n" + e.Message); } } return ""; } void DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e) { prgProgress.Value = e.ProgressPercentage; } /// /// Extract the provided archive to our program root /// It is assumed the archive is a zip file relative to that root (with all necessary sub-folders) /// /// protected void ExtractPackage(string archive) { using (var fileStream = System.IO.File.OpenRead(archive)) { using (var zipFile = ZipFile.Read(fileStream)) { zipFile.ExtractAll(RootPath, ExtractExistingFileAction.OverwriteSilently); } } } /// /// Create a shortcut in the current user's start menu /// Only do current user to avoid need for admin elevation /// /// protected void CreateShortcut(string targetExe) { // get path to all users start menu var shell = new WshShell(); var startMenu = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.StartMenu),"Media Browser"); if (!Directory.Exists(startMenu)) Directory.CreateDirectory(startMenu); var product = (IWshShortcut)shell.CreateShortcut(Path.Combine(startMenu, FriendlyName+".lnk")); product.TargetPath = targetExe; product.Description = "Run " + FriendlyName; product.Save(); var uninstall = (IWshShortcut)shell.CreateShortcut(Path.Combine(startMenu, "Uninstall " + FriendlyName + ".lnk")); uninstall.TargetPath = Path.Combine(Path.GetDirectoryName(targetExe),"MediaBrowser.Uninstaller.exe"); uninstall.Arguments = (PackageName == "MBServer" ? "server" : "mbt"); uninstall.Description = "Uninstall " + FriendlyName; uninstall.Save(); } /// /// Prepare a temporary location to download to /// /// The path to the temporary location protected string PrepareTempLocation() { ClearTempLocation(TempLocation); Directory.CreateDirectory(TempLocation); return TempLocation; } /// /// Clear out (delete recursively) the supplied temp location /// /// protected void ClearTempLocation(string location) { if (Directory.Exists(location)) { Directory.Delete(location, true); } } } }