parent
53ffc9867c
commit
1b34780b7e
@ -1,125 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using NLog;
|
|
||||||
using NzbDrone.Core.Notifications.Xbmc.Model;
|
|
||||||
using NzbDrone.Core.Movies;
|
|
||||||
using NzbDrone.Common.Disk;
|
|
||||||
using System.IO;
|
|
||||||
|
|
||||||
namespace NzbDrone.Core.Notifications.Xbmc
|
|
||||||
{
|
|
||||||
public class JsonApiProvider : IApiProvider
|
|
||||||
{
|
|
||||||
private readonly IXbmcJsonApiProxy _proxy;
|
|
||||||
private readonly Logger _logger;
|
|
||||||
|
|
||||||
public JsonApiProvider(IXbmcJsonApiProxy proxy, Logger logger)
|
|
||||||
{
|
|
||||||
_proxy = proxy;
|
|
||||||
_logger = logger;
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool CanHandle(XbmcVersion version)
|
|
||||||
{
|
|
||||||
return version >= new XbmcVersion(5);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Notify(XbmcSettings settings, string title, string message)
|
|
||||||
{
|
|
||||||
_proxy.Notify(settings, title, message);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void UpdateMovie(XbmcSettings settings, Movie movie)
|
|
||||||
{
|
|
||||||
if (!settings.AlwaysUpdate)
|
|
||||||
{
|
|
||||||
_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");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
UpdateMovieLibrary(settings, movie);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Clean(XbmcSettings settings)
|
|
||||||
{
|
|
||||||
if (!settings.AlwaysUpdate)
|
|
||||||
{
|
|
||||||
_logger.Debug("Determining if there are any active players on XBMC host: {0}", settings.Address);
|
|
||||||
var activePlayers = GetActivePlayers(settings);
|
|
||||||
|
|
||||||
if (activePlayers.Any(a => a.Type.Equals("video")))
|
|
||||||
{
|
|
||||||
_logger.Debug("Video is currently playing, skipping library cleaning");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
_proxy.CleanLibrary(settings);
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<ActivePlayer> GetActivePlayers(XbmcSettings settings)
|
|
||||||
{
|
|
||||||
return _proxy.GetActivePlayers(settings);
|
|
||||||
}
|
|
||||||
|
|
||||||
public string GetMoviePath(XbmcSettings settings, Movie movie)
|
|
||||||
{
|
|
||||||
var allMovies = _proxy.GetMovies(settings);
|
|
||||||
|
|
||||||
if (!allMovies.Any())
|
|
||||||
{
|
|
||||||
_logger.Debug("No Movies returned from XBMC");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
var matchingMovies = allMovies.FirstOrDefault(s =>
|
|
||||||
{
|
|
||||||
return s.ImdbNumber == movie.ImdbId || s.Label == movie.Title;
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
if (matchingMovies != null) return matchingMovies.File;
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void UpdateMovieLibrary(XbmcSettings settings, Movie movie)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var moviePath = GetMoviePath(settings, movie);
|
|
||||||
|
|
||||||
if (moviePath != null)
|
|
||||||
{
|
|
||||||
moviePath = new OsPath(moviePath).Directory.FullPath.TrimEnd(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar);
|
|
||||||
_logger.Debug("Updating movie {0} (Path: {1}) on XBMC host: {2}", movie, moviePath, settings.Address);
|
|
||||||
}
|
|
||||||
|
|
||||||
else
|
|
||||||
{
|
|
||||||
_logger.Debug("Movie {0} doesn't exist on XBMC host: {1}, Updating Entire Library", movie,
|
|
||||||
settings.Address);
|
|
||||||
}
|
|
||||||
|
|
||||||
var response = _proxy.UpdateLibrary(settings, moviePath);
|
|
||||||
|
|
||||||
if (!response.Equals("OK", StringComparison.InvariantCultureIgnoreCase))
|
|
||||||
{
|
|
||||||
_logger.Debug("Failed to update library for: {0}", settings.Address);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
_logger.Debug(ex, ex.Message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in new issue