using System; using System.Collections.Generic; 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(10,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 args = Environment.GetCommandLineArgs(); var parameters = new Dictionary(StringComparer.OrdinalIgnoreCase); foreach (var arg in args) { var nameValue = arg.Split('='); try { parameters[nameValue[0]] = nameValue[1]; } catch // let it default below { } } // fill in our arguments if there PackageName = parameters.GetValueOrDefault("package","MBServer"); PackageClass = (PackageVersionClass)Enum.Parse(typeof(PackageVersionClass), parameters.GetValueOrDefault("class","Release")); PackageVersion = new Version(parameters.GetValueOrDefault("version","10.0.0.0")); RootSuffix = parameters.GetValueOrDefault("suffix", "-Server"); TargetExe = parameters.GetValueOrDefault("target", "MediaBrowser.ServerApplication.exe"); FriendlyName = parameters.GetValueOrDefault("name", PackageName); RootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser" + RootSuffix); } /// /// Execute the install process /// /// protected async Task DoInstall() { lblStatus.Content = "Downloading "+FriendlyName+"..."; dlAnimation.StartAnimation(); prgProgress.Value = 0; prgProgress.Visibility = Visibility.Visible; // Download var archive = await DownloadPackage(); 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(); } /// /// Download our specified package to an archive in a temp location /// /// The fully qualified name of the downloaded package protected async Task DownloadPackage() { 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); 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; } 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; } 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); } } } }