mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 12:32:31 +01:00
Updating manually now uses a command so it shows progress
This commit is contained in:
parent
e7780af212
commit
aa26d68f18
@ -22,7 +22,6 @@ public UpdateModule(IRecentUpdateProvider recentUpdateProvider,
|
|||||||
_recentUpdateProvider = recentUpdateProvider;
|
_recentUpdateProvider = recentUpdateProvider;
|
||||||
_installUpdateService = installUpdateService;
|
_installUpdateService = installUpdateService;
|
||||||
GetResourceAll = GetRecentUpdates;
|
GetResourceAll = GetRecentUpdates;
|
||||||
Post["/"] = x=> InstallUpdate();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<UpdateResource> GetRecentUpdates()
|
private List<UpdateResource> GetRecentUpdates()
|
||||||
@ -46,16 +45,6 @@ private List<UpdateResource> GetRecentUpdates()
|
|||||||
|
|
||||||
return resources;
|
return resources;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Response InstallUpdate()
|
|
||||||
{
|
|
||||||
var updateResource = Request.Body.FromJson<UpdateResource>();
|
|
||||||
|
|
||||||
var updatePackage = updateResource.InjectTo<UpdatePackage>();
|
|
||||||
_installUpdateService.InstallUpdate(updatePackage);
|
|
||||||
|
|
||||||
return updateResource.AsResponse();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class UpdateResource : RestResource
|
public class UpdateResource : RestResource
|
||||||
|
@ -570,6 +570,7 @@
|
|||||||
<Compile Include="Tv\SeriesStatusType.cs" />
|
<Compile Include="Tv\SeriesStatusType.cs" />
|
||||||
<Compile Include="Tv\RefreshSeriesService.cs" />
|
<Compile Include="Tv\RefreshSeriesService.cs" />
|
||||||
<Compile Include="Update\Commands\ApplicationUpdateCommand.cs" />
|
<Compile Include="Update\Commands\ApplicationUpdateCommand.cs" />
|
||||||
|
<Compile Include="Update\Commands\InstallUpdateCommand.cs" />
|
||||||
<Compile Include="Update\InstallUpdateService.cs" />
|
<Compile Include="Update\InstallUpdateService.cs" />
|
||||||
<Compile Include="Update\RecentUpdateProvider.cs" />
|
<Compile Include="Update\RecentUpdateProvider.cs" />
|
||||||
<Compile Include="Update\UpdateChanges.cs" />
|
<Compile Include="Update\UpdateChanges.cs" />
|
||||||
|
13
src/NzbDrone.Core/Update/Commands/InstallUpdateCommand.cs
Normal file
13
src/NzbDrone.Core/Update/Commands/InstallUpdateCommand.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using NzbDrone.Core.Messaging.Commands;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Update.Commands
|
||||||
|
{
|
||||||
|
public class InstallUpdateCommand : Command
|
||||||
|
{
|
||||||
|
public UpdatePackage UpdatePackage { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -16,7 +16,7 @@ public interface IInstallUpdates
|
|||||||
void InstallUpdate(UpdatePackage updatePackage);
|
void InstallUpdate(UpdatePackage updatePackage);
|
||||||
}
|
}
|
||||||
|
|
||||||
public class InstallUpdateService : IInstallUpdates, IExecute<ApplicationUpdateCommand>
|
public class InstallUpdateService : IInstallUpdates, IExecute<ApplicationUpdateCommand>, IExecute<InstallUpdateCommand>
|
||||||
{
|
{
|
||||||
private readonly ICheckUpdateService _checkUpdateService;
|
private readonly ICheckUpdateService _checkUpdateService;
|
||||||
private readonly Logger _logger;
|
private readonly Logger _logger;
|
||||||
@ -89,5 +89,10 @@ public void Execute(ApplicationUpdateCommand message)
|
|||||||
InstallUpdate(latestAvailable);
|
InstallUpdate(latestAvailable);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Execute(InstallUpdateCommand message)
|
||||||
|
{
|
||||||
|
InstallUpdate(message.UpdatePackage);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,8 +2,9 @@
|
|||||||
|
|
||||||
define(
|
define(
|
||||||
[
|
[
|
||||||
'marionette'
|
'marionette',
|
||||||
], function (Marionette) {
|
'Commands/CommandController'
|
||||||
|
], function (Marionette, CommandController) {
|
||||||
return Marionette.ItemView.extend({
|
return Marionette.ItemView.extend({
|
||||||
template: 'System/Update/UpdateItemViewTemplate',
|
template: 'System/Update/UpdateItemViewTemplate',
|
||||||
|
|
||||||
@ -12,7 +13,7 @@ define(
|
|||||||
},
|
},
|
||||||
|
|
||||||
_installUpdate: function () {
|
_installUpdate: function () {
|
||||||
this.model.save();
|
CommandController.Execute('installUpdate', { updatePackage: this.model.toJSON() });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user