Pārlūkot izejas kodu

Remove archive extraction from PackageManager

It is no longer needed as the installer does this
Eric Reed 12 gadi atpakaļ
vecāks
revīzija
e3b42ad59e

+ 9 - 25
MediaBrowser.Common.Implementations/Updates/PackageManager.cs

@@ -43,12 +43,12 @@ namespace MediaBrowser.Common.Implementations.Updates
 
         }
 
-        public async Task InstallPackage(IHttpClient client, ILogger logger, ResourcePool resourcePool, IProgress<double> progress, IZipClient zipClient, IApplicationPaths appPaths, PackageVersionInfo package, CancellationToken cancellationToken)
+        public async Task InstallPackage(IHttpClient client, ILogger logger, ResourcePool resourcePool, IProgress<double> progress, IApplicationPaths appPaths, PackageVersionInfo package, CancellationToken cancellationToken)
         {
             // Target based on if it is an archive or single assembly
             //  zip archives are assumed to contain directory structures relative to our ProgramDataPath
             var isArchive = string.Equals(Path.GetExtension(package.targetFilename), ".zip", StringComparison.OrdinalIgnoreCase);
-            var target = isArchive ? appPaths.TempUpdatePath : Path.Combine(appPaths.PluginsPath, package.targetFilename);
+            var target = Path.Combine(isArchive ? appPaths.TempUpdatePath : appPaths.PluginsPath, package.targetFilename);
 
             // Download to temporary file so that, if interrupted, it won't destroy the existing installation
             var tempFile = await client.GetTempFile(package.sourceUrl, resourcePool.Mb, cancellationToken, progress).ConfigureAwait(false);
@@ -71,32 +71,16 @@ namespace MediaBrowser.Common.Implementations.Updates
 
             cancellationToken.ThrowIfCancellationRequested();
 
-            // Success - move it to the real target based on type
-            if (isArchive)
+            // Success - move it to the real target 
+            try
             {
-                try
-                {
-                    zipClient.ExtractAll(tempFile, target, true);
-                }
-                catch (IOException e)
-                {
-                    logger.ErrorException("Error attempting to extract archive from {0} to {1}", e, tempFile, target);
-                    throw;
-                }
-
+                File.Copy(tempFile, target, true);
+                File.Delete(tempFile);
             }
-            else
+            catch (IOException e)
             {
-                try
-                {
-                    File.Copy(tempFile, target, true);
-                    File.Delete(tempFile);
-                }
-                catch (IOException e)
-                {
-                    logger.ErrorException("Error attempting to move file from {0} to {1}", e, tempFile, target);
-                    throw;
-                }
+                logger.ErrorException("Error attempting to move file from {0} to {1}", e, tempFile, target);
+                throw;
             }
 
         }

+ 0 - 2
MediaBrowser.Common/Updates/IPackageManager.cs

@@ -40,7 +40,6 @@ namespace MediaBrowser.Common.Updates
         /// <param name="logger"></param>
         /// <param name="resourcePool"></param>
         /// <param name="progress"></param>
-        /// <param name="zipClient"></param>
         /// <param name="appPaths"></param>
         /// <param name="package">The package.</param>
         /// <param name="cancellationToken">The cancellation token.</param>
@@ -49,7 +48,6 @@ namespace MediaBrowser.Common.Updates
                             ILogger logger,
                             ResourcePool resourcePool,
                             IProgress<double> progress,
-                            IZipClient zipClient,
                             IApplicationPaths appPaths,
                             PackageVersionInfo package,
                             CancellationToken cancellationToken);

+ 2 - 14
MediaBrowser.Controller/Updates/InstallationManager.cs

@@ -93,12 +93,6 @@ namespace MediaBrowser.Controller.Updates
         }
         #endregion
 
-        /// <summary>
-        /// Gets or sets the zip client.
-        /// </summary>
-        /// <value>The zip client.</value>
-        private IZipClient ZipClient { get; set; }
-
         /// <summary>
         /// The _logger
         /// </summary>
@@ -137,20 +131,15 @@ namespace MediaBrowser.Controller.Updates
         /// </summary>
         /// <param name="kernel">The kernel.</param>
         /// <param name="httpClient">The HTTP client.</param>
-        /// <param name="zipClient">The zip client.</param>
         /// <param name="networkManager">The network manager.</param>
         /// <param name="packageManager">The package manager.</param>
         /// <param name="jsonSerializer">The json serializer.</param>
         /// <param name="logger">The logger.</param>
         /// <param name="appHost">The app host.</param>
         /// <exception cref="System.ArgumentNullException">zipClient</exception>
-        public InstallationManager(Kernel kernel, IHttpClient httpClient, IZipClient zipClient, INetworkManager networkManager, IPackageManager packageManager, IJsonSerializer jsonSerializer, ILogger logger, IApplicationHost appHost)
+        public InstallationManager(Kernel kernel, IHttpClient httpClient, INetworkManager networkManager, IPackageManager packageManager, IJsonSerializer jsonSerializer, ILogger logger, IApplicationHost appHost)
             : base(kernel)
         {
-            if (zipClient == null)
-            {
-                throw new ArgumentNullException("zipClient");
-            }
             if (networkManager == null)
             {
                 throw new ArgumentNullException("networkManager");
@@ -180,7 +169,6 @@ namespace MediaBrowser.Controller.Updates
             _networkManager = networkManager;
             _packageManager = packageManager;
             _logger = logger;
-            ZipClient = zipClient;
         }
 
         /// <summary>
@@ -430,7 +418,7 @@ namespace MediaBrowser.Controller.Updates
         private async Task InstallPackageInternal(PackageVersionInfo package, IProgress<double> progress, CancellationToken cancellationToken)
         {
             // Do the install
-            await _packageManager.InstallPackage(HttpClient, _logger, Kernel.ResourcePools, progress, ZipClient, Kernel.ApplicationPaths, package, cancellationToken).ConfigureAwait(false);
+            await _packageManager.InstallPackage(HttpClient, _logger, Kernel.ResourcePools, progress, Kernel.ApplicationPaths, package, cancellationToken).ConfigureAwait(false);
 
             // Do plugin-specific processing
             if (!(Path.GetExtension(package.targetFilename) ?? "").Equals(".zip", StringComparison.OrdinalIgnoreCase))

+ 19 - 12
MediaBrowser.Installer/MainWindow.xaml.cs

@@ -24,6 +24,7 @@ namespace MediaBrowser.Installer
         protected string RootSuffix = "-Server";
         protected string TargetExe = "MediaBrowser.ServerApplication.exe";
         protected string FriendlyName = "Media Browser Server";
+        protected string Archive = null;
         protected string RootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser-Server");
 
         protected bool SystemClosing = false;
@@ -36,7 +37,7 @@ namespace MediaBrowser.Installer
         {
             GetArgs();
             InitializeComponent();
-            DoInstall();
+            DoInstall(Archive);
         }
 
         private void btnCancel_Click(object sender, RoutedEventArgs e)
@@ -77,6 +78,8 @@ namespace MediaBrowser.Installer
         {
             var product = ConfigurationManager.AppSettings["product"] ?? "server";
             PackageClass = (PackageVersionClass) Enum.Parse(typeof (PackageVersionClass), ConfigurationManager.AppSettings["class"] ?? "Release");
+            var cmdArgs = Environment.GetCommandLineArgs();
+            Archive = cmdArgs.Length > 1 ? cmdArgs[1] : null;
 
             switch (product.ToLower())
             {
@@ -103,7 +106,7 @@ namespace MediaBrowser.Installer
         /// Execute the install process
         /// </summary>
         /// <returns></returns>
-        protected async Task DoInstall()
+        protected async Task DoInstall(string archive)
         {
             lblStatus.Text = string.Format("Downloading {0}...", FriendlyName);
 
@@ -150,16 +153,18 @@ namespace MediaBrowser.Installer
                 }
             }
 
-            // Download
-            string archive = null;
-            lblStatus.Text = string.Format("Downloading {0} (version {1})...", FriendlyName, version.versionStr);
-            try
+            // Download if we don't already have it
+            if (archive == null)
             {
-                archive = await DownloadPackage(version);
-            }
-            catch (Exception e)
-            {
-                SystemClose("Error Downloading Package - " + e.GetType().FullName + "\n\n" + e.Message);
+                lblStatus.Text = string.Format("Downloading {0} (version {1})...", FriendlyName, version.versionStr);
+                try
+                {
+                    archive = await DownloadPackage(version);
+                }
+                catch (Exception e)
+                {
+                    SystemClose("Error Downloading Package - " + e.GetType().FullName + "\n\n" + e.Message);
+                }
             }
 
             if (archive == null) return;  //we canceled or had an error that was already reported
@@ -274,7 +279,9 @@ namespace MediaBrowser.Installer
             // Delete old content of system
             var systemDir = Path.Combine(RootPath, "system");
             if (Directory.Exists(systemDir)) Directory.Delete(systemDir, true);
-            using (var fileStream = System.IO.File.OpenRead(archive))
+
+            // And extract
+            using (var fileStream = File.OpenRead(archive))
             {
                 using (var zipFile = ZipFile.Read(fileStream))
                 {

+ 1 - 1
MediaBrowser.ServerApplication/ApplicationHost.cs

@@ -178,7 +178,7 @@ namespace MediaBrowser.ServerApplication
         public Task UpdateApplication(PackageVersionInfo package, CancellationToken cancellationToken, IProgress<double> progress)
         {
             var pkgManager = Resolve<IPackageManager>();
-            return pkgManager.InstallPackage(Resolve<IHttpClient>(), Resolve<ILogger>(), Kernel.ResourcePools, progress, Resolve<IZipClient>(), Kernel.ApplicationPaths, package, cancellationToken);
+            return pkgManager.InstallPackage(Resolve<IHttpClient>(), Resolve<ILogger>(), Kernel.ResourcePools, progress, Kernel.ApplicationPaths, package, cancellationToken);
         }
 
         /// <summary>