2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
2013-10-01 18:24:27 +00:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
2013-08-12 19:18:31 +00:00
|
|
|
|
using MediaBrowser.Controller.Persistence;
|
2013-06-17 18:48:18 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-10-01 18:24:27 +00:00
|
|
|
|
using MediaBrowser.Providers.Savers;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2013-06-09 16:47:28 +00:00
|
|
|
|
namespace MediaBrowser.Providers.Movies
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class MovieProviderFromXml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MovieProviderFromXml : BaseMetadataProvider
|
|
|
|
|
{
|
2013-06-23 17:48:30 +00:00
|
|
|
|
internal static MovieProviderFromXml Current { get; private set; }
|
2013-08-12 19:18:31 +00:00
|
|
|
|
private readonly IItemRepository _itemRepo;
|
|
|
|
|
|
|
|
|
|
public MovieProviderFromXml(ILogManager logManager, IServerConfigurationManager configurationManager, IItemRepository itemRepo)
|
2013-06-17 18:48:18 +00:00
|
|
|
|
: base(logManager, configurationManager)
|
2013-03-02 17:59:15 +00:00
|
|
|
|
{
|
2013-08-12 19:18:31 +00:00
|
|
|
|
_itemRepo = itemRepo;
|
2013-06-23 17:48:30 +00:00
|
|
|
|
Current = this;
|
2013-03-02 17:59:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Supportses the specified item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
|
|
|
|
|
public override bool Supports(BaseItem item)
|
|
|
|
|
{
|
2013-05-28 01:59:26 +00:00
|
|
|
|
var trailer = item as Trailer;
|
|
|
|
|
|
|
|
|
|
if (trailer != null)
|
|
|
|
|
{
|
|
|
|
|
return !trailer.IsLocalTrailer;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-12 15:30:56 +00:00
|
|
|
|
return item is Movie || item is MusicVideo || item is AdultVideo;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the priority.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The priority.</value>
|
|
|
|
|
public override MetadataProviderPriority Priority
|
|
|
|
|
{
|
2013-08-15 14:56:43 +00:00
|
|
|
|
get { return MetadataProviderPriority.First; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-01 18:24:27 +00:00
|
|
|
|
protected override bool NeedsRefreshBasedOnCompareDate(BaseItem item, BaseProviderInfo providerInfo)
|
2013-08-26 15:14:59 +00:00
|
|
|
|
{
|
2013-10-01 18:24:27 +00:00
|
|
|
|
var savePath = MovieXmlSaver.GetMovieSavePath(item);
|
2013-08-26 15:14:59 +00:00
|
|
|
|
|
2013-10-01 18:24:27 +00:00
|
|
|
|
var xml = item.ResolveArgs.GetMetaFileByPath(savePath) ?? new FileInfo(savePath);
|
2013-08-26 15:14:59 +00:00
|
|
|
|
|
2013-10-01 18:24:27 +00:00
|
|
|
|
if (!xml.Exists)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FileSystem.GetLastWriteTimeUtc(xml, Logger) > providerInfo.LastRefreshed;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches metadata and returns true or false indicating if any work that requires persistence was done
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="force">if set to <c>true</c> [force].</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{System.Boolean}.</returns>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
public override Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-04-15 18:45:58 +00:00
|
|
|
|
return Fetch(item, cancellationToken);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches the specified item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
|
2013-04-15 18:45:58 +00:00
|
|
|
|
private async Task<bool> Fetch(BaseItem item, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-06-17 18:48:18 +00:00
|
|
|
|
|
2013-10-01 18:24:27 +00:00
|
|
|
|
var path = MovieXmlSaver.GetMovieSavePath(item);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-10-10 16:55:07 +00:00
|
|
|
|
if (File.Exists(path))
|
2013-10-01 18:24:27 +00:00
|
|
|
|
{
|
2013-10-10 16:55:07 +00:00
|
|
|
|
await XmlParsingResourcePool.WaitAsync(cancellationToken).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var video = (Video)item;
|
|
|
|
|
|
|
|
|
|
await new MovieXmlParser(Logger, _itemRepo).FetchAsync(video, path, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
XmlParsingResourcePool.Release();
|
|
|
|
|
}
|
2013-10-01 18:24:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetLastRefreshed(item, DateTime.UtcNow);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-10-01 18:24:27 +00:00
|
|
|
|
return true;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|