2013-05-21 03:16:43 +00:00
|
|
|
|
using MediaBrowser.Common.Extensions;
|
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-02-25 00:13:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-06-09 16:47:28 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-03-02 17:59:15 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Model.Net;
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Xml;
|
2013-06-09 16:47:28 +00:00
|
|
|
|
using MediaBrowser.Providers.Extensions;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-06-09 16:47:28 +00:00
|
|
|
|
namespace MediaBrowser.Providers.TV
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class RemoteEpisodeProvider
|
|
|
|
|
/// </summary>
|
|
|
|
|
class RemoteEpisodeProvider : BaseMetadataProvider
|
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _provider manager
|
|
|
|
|
/// </summary>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
private readonly IProviderManager _providerManager;
|
2013-05-21 03:16:43 +00:00
|
|
|
|
|
2013-02-25 00:13:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTP client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP client.</value>
|
|
|
|
|
protected IHttpClient HttpClient { get; private set; }
|
|
|
|
|
|
2013-03-04 05:43:06 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="RemoteEpisodeProvider" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="httpClient">The HTTP client.</param>
|
|
|
|
|
/// <param name="logManager">The log manager.</param>
|
|
|
|
|
/// <param name="configurationManager">The configuration manager.</param>
|
2013-05-21 03:16:43 +00:00
|
|
|
|
/// <param name="providerManager">The provider manager.</param>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
public RemoteEpisodeProvider(IHttpClient httpClient, ILogManager logManager, IServerConfigurationManager configurationManager, IProviderManager providerManager)
|
2013-03-04 05:43:06 +00:00
|
|
|
|
: base(logManager, configurationManager)
|
2013-02-25 00:13:45 +00:00
|
|
|
|
{
|
|
|
|
|
HttpClient = httpClient;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
_providerManager = providerManager;
|
2013-02-25 00:13:45 +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)
|
|
|
|
|
{
|
|
|
|
|
return item is Episode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the priority.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The priority.</value>
|
|
|
|
|
public override MetadataProviderPriority Priority
|
|
|
|
|
{
|
|
|
|
|
get { return MetadataProviderPriority.Second; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether [requires internet].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [requires internet]; otherwise, <c>false</c>.</value>
|
|
|
|
|
public override bool RequiresInternet
|
|
|
|
|
{
|
|
|
|
|
get { return true; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns true or false indicating if the provider should refresh when the contents of it's directory changes
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [refresh on file system stamp change]; otherwise, <c>false</c>.</value>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
protected override bool RefreshOnFileSystemStampChange
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether [refresh on version change].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [refresh on version change]; otherwise, <c>false</c>.</value>
|
|
|
|
|
protected override bool RefreshOnVersionChange
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the provider version.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The provider version.</value>
|
|
|
|
|
protected override string ProviderVersion
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return "1";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Needses the refresh internal.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="providerInfo">The provider info.</param>
|
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
|
|
|
|
|
protected override bool NeedsRefreshInternal(BaseItem item, BaseProviderInfo providerInfo)
|
|
|
|
|
{
|
2013-06-10 01:40:28 +00:00
|
|
|
|
// Don't proceed if there's local metadata and save local is off, as it's likely from another source
|
|
|
|
|
if (HasLocalMeta(item) && !ConfigurationManager.Configuration.SaveLocalMeta)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (GetComparisonData(item) != providerInfo.Data)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-28 23:39:17 +00:00
|
|
|
|
return base.NeedsRefreshInternal(item, providerInfo);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the comparison data.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns>Guid.</returns>
|
|
|
|
|
private Guid GetComparisonData(BaseItem item)
|
|
|
|
|
{
|
|
|
|
|
var episode = (Episode)item;
|
|
|
|
|
|
|
|
|
|
var seriesId = episode.Series != null ? episode.Series.GetProviderId(MetadataProviders.Tvdb) : null;
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(seriesId))
|
|
|
|
|
{
|
|
|
|
|
// Process images
|
|
|
|
|
var seriesXmlPath = Path.Combine(RemoteSeriesProvider.GetSeriesDataPath(ConfigurationManager.ApplicationPaths, seriesId), ConfigurationManager.Configuration.PreferredMetadataLanguage.ToLower() + ".xml");
|
|
|
|
|
|
|
|
|
|
var seriesXmlFileInfo = new FileInfo(seriesXmlPath);
|
|
|
|
|
|
|
|
|
|
return GetComparisonData(seriesXmlFileInfo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Guid.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the comparison data.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="seriesXmlFileInfo">The series XML file info.</param>
|
|
|
|
|
/// <returns>Guid.</returns>
|
|
|
|
|
private Guid GetComparisonData(FileInfo seriesXmlFileInfo)
|
|
|
|
|
{
|
|
|
|
|
var date = seriesXmlFileInfo.Exists ? seriesXmlFileInfo.LastWriteTimeUtc : DateTime.MinValue;
|
|
|
|
|
|
|
|
|
|
var key = date.Ticks + seriesXmlFileInfo.FullName;
|
|
|
|
|
|
|
|
|
|
return key.GetMD5();
|
|
|
|
|
}
|
|
|
|
|
|
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>
|
2013-05-21 03:16:43 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <returns>Task{System.Boolean}.</returns>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
public override async Task<bool> FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-06-10 01:40:28 +00:00
|
|
|
|
// Don't proceed if there's local metadata and save local is off, as it's likely from another source
|
|
|
|
|
if (HasLocalMeta(item) && !ConfigurationManager.Configuration.SaveLocalMeta)
|
2013-05-21 03:16:43 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-05-21 03:16:43 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
var episode = (Episode)item;
|
2013-05-21 03:16:43 +00:00
|
|
|
|
|
|
|
|
|
var seriesId = episode.Series != null ? episode.Series.GetProviderId(MetadataProviders.Tvdb) : null;
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(seriesId))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var seriesXmlPath = Path.Combine(RemoteSeriesProvider.GetSeriesDataPath(ConfigurationManager.ApplicationPaths, seriesId), ConfigurationManager.Configuration.PreferredMetadataLanguage.ToLower() + ".xml");
|
|
|
|
|
|
|
|
|
|
var seriesXmlFileInfo = new FileInfo(seriesXmlPath);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var status = ProviderRefreshStatus.Success;
|
|
|
|
|
|
|
|
|
|
if (seriesXmlFileInfo.Exists)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var xmlDoc = new XmlDocument();
|
|
|
|
|
xmlDoc.Load(seriesXmlPath);
|
|
|
|
|
|
|
|
|
|
status = await FetchEpisodeData(xmlDoc, episode, seriesId, cancellationToken).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-05-21 03:16:43 +00:00
|
|
|
|
|
|
|
|
|
BaseProviderInfo data;
|
|
|
|
|
if (!item.ProviderData.TryGetValue(Id, out data))
|
|
|
|
|
{
|
|
|
|
|
data = new BaseProviderInfo();
|
|
|
|
|
item.ProviderData[Id] = data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data.Data = GetComparisonData(seriesXmlFileInfo);
|
|
|
|
|
|
|
|
|
|
SetLastRefreshed(item, DateTime.UtcNow, status);
|
|
|
|
|
return true;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-05-21 03:16:43 +00:00
|
|
|
|
|
|
|
|
|
Logger.Info("Episode provider not fetching because series does not have a tvdb id: " + item.Path);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches the episode data.
|
|
|
|
|
/// </summary>
|
2013-05-21 03:16:43 +00:00
|
|
|
|
/// <param name="seriesXml">The series XML.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <param name="episode">The episode.</param>
|
|
|
|
|
/// <param name="seriesId">The series id.</param>
|
2013-04-10 15:56:36 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <returns>Task{System.Boolean}.</returns>
|
2013-05-21 03:16:43 +00:00
|
|
|
|
private async Task<ProviderRefreshStatus> FetchEpisodeData(XmlDocument seriesXml, Episode episode, string seriesId, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-12 23:36:42 +00:00
|
|
|
|
var status = ProviderRefreshStatus.Success;
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (episode.IndexNumber == null)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-12 23:36:42 +00:00
|
|
|
|
return status;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var seasonNumber = episode.ParentIndexNumber ?? TVUtils.GetSeasonNumberFromEpisodeFile(episode.Path);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (seasonNumber == null)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
return status;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var usingAbsoluteData = false;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var episodeNode = seriesXml.SelectSingleNode("//Episode[EpisodeNumber='" + episode.IndexNumber.Value + "'][SeasonNumber='" + seasonNumber.Value + "']");
|
2013-05-06 19:31:57 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (episodeNode == null)
|
|
|
|
|
{
|
|
|
|
|
if (seasonNumber.Value == 1)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
episodeNode = seriesXml.SelectSingleNode("//Episode[absolute_number='" + episode.IndexNumber.Value + "']");
|
|
|
|
|
usingAbsoluteData = true;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-05-21 03:16:43 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
// If still null, nothing we can do
|
|
|
|
|
if (episodeNode == null)
|
|
|
|
|
{
|
|
|
|
|
return status;
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var doc = new XmlDocument();
|
|
|
|
|
doc.LoadXml(episodeNode.OuterXml);
|
2013-05-18 18:16:07 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (!episode.HasImage(ImageType.Primary))
|
|
|
|
|
{
|
|
|
|
|
var p = doc.SafeGetString("//filename");
|
|
|
|
|
if (p != null)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
if (!Directory.Exists(episode.MetaLocation)) Directory.CreateDirectory(episode.MetaLocation);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
try
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
episode.PrimaryImagePath = await _providerManager.DownloadAndSaveImage(episode, TVUtils.BannerUrl + p, Path.GetFileName(p), ConfigurationManager.Configuration.SaveLocalMeta, RemoteSeriesProvider.Current.TvDbResourcePool, cancellationToken);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-05-21 03:16:43 +00:00
|
|
|
|
catch (HttpException)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-21 03:16:43 +00:00
|
|
|
|
status = ProviderRefreshStatus.CompletedWithErrors;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-05-21 03:16:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
episode.Overview = doc.SafeGetString("//Overview");
|
|
|
|
|
if (usingAbsoluteData)
|
|
|
|
|
episode.IndexNumber = doc.SafeGetInt32("//absolute_number", -1);
|
|
|
|
|
if (episode.IndexNumber < 0)
|
|
|
|
|
episode.IndexNumber = doc.SafeGetInt32("//EpisodeNumber");
|
|
|
|
|
|
|
|
|
|
episode.Name = doc.SafeGetString("//EpisodeName");
|
|
|
|
|
episode.CommunityRating = doc.SafeGetSingle("//Rating", -1, 10);
|
|
|
|
|
var firstAired = doc.SafeGetString("//FirstAired");
|
|
|
|
|
DateTime airDate;
|
|
|
|
|
if (DateTime.TryParse(firstAired, out airDate) && airDate.Year > 1850)
|
|
|
|
|
{
|
|
|
|
|
episode.PremiereDate = airDate.ToUniversalTime();
|
|
|
|
|
episode.ProductionYear = airDate.Year;
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
episode.People.Clear();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var actors = doc.SafeGetString("//GuestStars");
|
|
|
|
|
if (actors != null)
|
|
|
|
|
{
|
2013-05-25 12:37:02 +00:00
|
|
|
|
foreach (var person in actors.Split(new[] { '|' }, StringSplitOptions.RemoveEmptyEntries)
|
|
|
|
|
.Where(i => !string.IsNullOrWhiteSpace(i))
|
2013-06-10 00:09:32 +00:00
|
|
|
|
.Select(str => new PersonInfo { Type = PersonType.GuestStar, Name = str.Trim() }))
|
2013-05-21 03:16:43 +00:00
|
|
|
|
{
|
|
|
|
|
episode.AddPerson(person);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var directors = doc.SafeGetString("//Director");
|
|
|
|
|
if (directors != null)
|
|
|
|
|
{
|
2013-05-25 12:37:02 +00:00
|
|
|
|
foreach (var person in directors.Split(new[] { '|' }, StringSplitOptions.RemoveEmptyEntries)
|
|
|
|
|
.Where(i => !string.IsNullOrWhiteSpace(i))
|
2013-06-10 00:09:32 +00:00
|
|
|
|
.Select(str => new PersonInfo { Type = PersonType.Director, Name = str.Trim() }))
|
2013-05-21 03:16:43 +00:00
|
|
|
|
{
|
|
|
|
|
episode.AddPerson(person);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
var writers = doc.SafeGetString("//Writer");
|
|
|
|
|
if (writers != null)
|
|
|
|
|
{
|
2013-05-25 12:37:02 +00:00
|
|
|
|
foreach (var person in writers.Split(new[] { '|' }, StringSplitOptions.RemoveEmptyEntries)
|
|
|
|
|
.Where(i => !string.IsNullOrWhiteSpace(i))
|
2013-06-10 00:09:32 +00:00
|
|
|
|
.Select(str => new PersonInfo { Type = PersonType.Writer, Name = str.Trim() }))
|
2013-05-21 03:16:43 +00:00
|
|
|
|
{
|
|
|
|
|
episode.AddPerson(person);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-05-21 03:16:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ConfigurationManager.Configuration.SaveLocalMeta)
|
|
|
|
|
{
|
|
|
|
|
if (!Directory.Exists(episode.MetaLocation)) Directory.CreateDirectory(episode.MetaLocation);
|
|
|
|
|
var ms = new MemoryStream();
|
|
|
|
|
doc.Save(ms);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-05-21 03:16:43 +00:00
|
|
|
|
await _providerManager.SaveToLibraryFilesystem(episode, Path.Combine(episode.MetaLocation, Path.GetFileNameWithoutExtension(episode.Path) + ".xml"), ms, cancellationToken).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-12 23:36:42 +00:00
|
|
|
|
return status;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether [has local meta] [the specified episode].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="episode">The episode.</param>
|
|
|
|
|
/// <returns><c>true</c> if [has local meta] [the specified episode]; otherwise, <c>false</c>.</returns>
|
2013-04-28 23:39:17 +00:00
|
|
|
|
private bool HasLocalMeta(BaseItem episode)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
return (episode.Parent.ResolveArgs.ContainsMetaFileByName(Path.GetFileNameWithoutExtension(episode.Path) + ".xml"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|