mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-29 18:14:28 -04:00
63 lines
2.0 KiB
C#
63 lines
2.0 KiB
C#
using System;
|
|
using NLog;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Common.Instrumentation.Extensions;
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public interface ICheckUpdateService
|
|
{
|
|
UpdatePackage AvailableUpdate();
|
|
}
|
|
|
|
public class CheckUpdateService : ICheckUpdateService
|
|
{
|
|
private readonly IUpdatePackageProvider _updatePackageProvider;
|
|
private readonly IConfigFileProvider _configFileProvider;
|
|
|
|
private readonly Logger _logger;
|
|
|
|
|
|
public CheckUpdateService(IUpdatePackageProvider updatePackageProvider,
|
|
IConfigFileProvider configFileProvider,
|
|
Logger logger)
|
|
{
|
|
_updatePackageProvider = updatePackageProvider;
|
|
_configFileProvider = configFileProvider;
|
|
_logger = logger;
|
|
}
|
|
|
|
public UpdatePackage AvailableUpdate()
|
|
{
|
|
if (OsInfo.IsNotWindows && !_configFileProvider.UpdateAutomatically)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
var latestAvailable = _updatePackageProvider.GetLatestUpdate(_configFileProvider.Branch, BuildInfo.Version);
|
|
|
|
if (latestAvailable == null)
|
|
{
|
|
_logger.ProgressDebug("No update available.");
|
|
}
|
|
else if (latestAvailable.Branch != _configFileProvider.Branch)
|
|
{
|
|
try
|
|
{
|
|
_logger.Info("Branch [{0}] is being redirected to [{1}]]", _configFileProvider.Branch, latestAvailable.Branch);
|
|
var config = _configFileProvider.GetConfigDictionary();
|
|
config["Branch"] = latestAvailable.Branch;
|
|
_configFileProvider.SaveConfigDictionary(config);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_logger.ErrorException("Couldn't save the branch redirect.", e);
|
|
}
|
|
|
|
}
|
|
|
|
return latestAvailable;
|
|
}
|
|
}
|
|
} |