Fixed: Don't clean Kodi library if video is playing and Always Update is disabled
Closes #5387
This commit is contained in:
parent
d923d3f106
commit
bbd9b1657d
|
@ -36,23 +36,25 @@ namespace NzbDrone.Core.Notifications.Xbmc
|
||||||
|
|
||||||
public void Update(XbmcSettings settings, Series series)
|
public void Update(XbmcSettings settings, Series series)
|
||||||
{
|
{
|
||||||
if (!settings.AlwaysUpdate)
|
if (CheckIfVideoPlayerOpen(settings))
|
||||||
{
|
|
||||||
_logger.Debug("Determining if there are any active players on XBMC host: {0}", settings.Address);
|
|
||||||
var activePlayers = _proxy.GetActivePlayers(settings);
|
|
||||||
|
|
||||||
if (activePlayers.Any(a => a.Type.Equals("video")))
|
|
||||||
{
|
{
|
||||||
_logger.Debug("Video is currently playing, skipping library update");
|
_logger.Debug("Video is currently playing, skipping library update");
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
UpdateLibrary(settings, series);
|
UpdateLibrary(settings, series);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Clean(XbmcSettings settings)
|
public void Clean(XbmcSettings settings)
|
||||||
{
|
{
|
||||||
|
if (CheckIfVideoPlayerOpen(settings))
|
||||||
|
{
|
||||||
|
_logger.Debug("Video is currently playing, skipping library clean");
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
_proxy.CleanLibrary(settings);
|
_proxy.CleanLibrary(settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,7 +64,7 @@ namespace NzbDrone.Core.Notifications.Xbmc
|
||||||
|
|
||||||
if (!allSeries.Any())
|
if (!allSeries.Any())
|
||||||
{
|
{
|
||||||
_logger.Debug("No TV shows returned from XBMC");
|
_logger.Debug("No TV shows returned from Kodi");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,11 +92,11 @@ namespace NzbDrone.Core.Notifications.Xbmc
|
||||||
|
|
||||||
if (seriesPath != null)
|
if (seriesPath != null)
|
||||||
{
|
{
|
||||||
_logger.Debug("Updating series {0} (Path: {1}) on XBMC host: {2}", series, seriesPath, settings.Address);
|
_logger.Debug("Updating series {0} (Path: {1}) on Kodi host: {2}", series, seriesPath, settings.Address);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
_logger.Debug("Series {0} doesn't exist on XBMC host: {1}, Updating Entire Library", series, settings.Address);
|
_logger.Debug("Series {0} doesn't exist on Kodi host: {1}, Updating Entire Library", series, settings.Address);
|
||||||
}
|
}
|
||||||
|
|
||||||
var response = _proxy.UpdateLibrary(settings, seriesPath);
|
var response = _proxy.UpdateLibrary(settings, seriesPath);
|
||||||
|
@ -110,6 +112,19 @@ namespace NzbDrone.Core.Notifications.Xbmc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool CheckIfVideoPlayerOpen(XbmcSettings settings)
|
||||||
|
{
|
||||||
|
if (settings.AlwaysUpdate)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
_logger.Debug("Determining if there are any active players on Kodi host: {0}", settings.Address);
|
||||||
|
var activePlayers = _proxy.GetActivePlayers(settings);
|
||||||
|
|
||||||
|
return activePlayers.Any(a => a.Type.Equals("video"));
|
||||||
|
}
|
||||||
|
|
||||||
public ValidationFailure Test(XbmcSettings settings, string message)
|
public ValidationFailure Test(XbmcSettings settings, string message)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
Loading…
Reference in New Issue