jellyfin/Emby.Server.Implementations/Library/Resolvers/TV/SeriesResolver.cs

244 lines
8.9 KiB
C#
Raw Normal View History

2016-03-27 23:11:27 +02:00
using MediaBrowser.Controller.Entities.TV;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Library;
2015-01-10 02:38:01 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
2015-01-10 02:38:01 +01:00
using MediaBrowser.Model.Logging;
using Emby.Naming.Common;
using Emby.Naming.TV;
2015-03-02 19:48:21 +01:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
2017-05-26 08:48:54 +02:00
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
using MediaBrowser.Controller.Configuration;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Controller.IO;
2016-08-13 22:54:29 +02:00
using MediaBrowser.Model.Configuration;
2013-02-21 02:33:05 +01:00
namespace Emby.Server.Implementations.Library.Resolvers.TV
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class SeriesResolver
/// </summary>
public class SeriesResolver : FolderResolver<Series>
2013-02-21 02:33:05 +01:00
{
2015-01-10 02:38:01 +01:00
private readonly IFileSystem _fileSystem;
private readonly ILogger _logger;
private readonly ILibraryManager _libraryManager;
public SeriesResolver(IFileSystem fileSystem, ILogger logger, ILibraryManager libraryManager)
{
_fileSystem = fileSystem;
_logger = logger;
_libraryManager = libraryManager;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public override ResolverPriority Priority
{
get
{
return ResolverPriority.Second;
}
}
/// <summary>
/// Resolves the specified args.
/// </summary>
/// <param name="args">The args.</param>
/// <returns>Series.</returns>
protected override Series Resolve(ItemResolveArgs args)
{
if (args.IsDirectory)
{
2016-09-16 01:19:27 +02:00
if (args.HasParent<Series>() || args.HasParent<Season>())
2016-09-03 19:16:36 +02:00
{
return null;
}
var collectionType = args.GetCollectionType();
2014-12-28 07:21:39 +01:00
if (string.Equals(collectionType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase))
2013-02-21 02:33:05 +01:00
{
2016-10-13 23:13:30 +02:00
//if (args.ContainsFileSystemEntryByName("tvshow.nfo"))
//{
// return new Series
// {
// Path = args.Path,
// Name = Path.GetFileName(args.Path)
// };
//}
2016-10-13 20:43:47 +02:00
2015-01-10 02:38:01 +01:00
var configuredContentType = _libraryManager.GetConfiguredContentType(args.Path);
if (!string.Equals(configuredContentType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase))
{
return new Series
{
Path = args.Path,
Name = Path.GetFileName(args.Path)
};
}
}
2016-10-09 09:18:43 +02:00
else if (string.IsNullOrWhiteSpace(collectionType))
2015-01-10 02:38:01 +01:00
{
2016-10-13 20:43:47 +02:00
if (args.ContainsFileSystemEntryByName("tvshow.nfo"))
{
2016-10-16 00:12:16 +02:00
if (args.Parent.IsRoot)
{
// For now, return null, but if we want to allow this in the future then add some additional checks to guard against a misplaced tvshow.nfo
return null;
}
2016-10-13 20:43:47 +02:00
return new Series
{
Path = args.Path,
Name = Path.GetFileName(args.Path)
};
}
2016-10-09 09:18:43 +02:00
if (args.Parent.IsRoot)
2014-11-29 20:51:30 +01:00
{
2016-10-09 09:18:43 +02:00
return null;
}
if (IsSeriesFolder(args.Path, args.FileSystemChildren, args.DirectoryService, _fileSystem, _logger, _libraryManager, args.GetLibraryOptions(), false))
{
return new Series
2015-01-10 02:38:01 +01:00
{
2016-10-09 09:18:43 +02:00
Path = args.Path,
Name = Path.GetFileName(args.Path)
};
2015-01-10 02:38:01 +01:00
}
2013-02-21 02:33:05 +01:00
}
}
return null;
}
2015-01-10 02:38:01 +01:00
public static bool IsSeriesFolder(string path,
2015-10-04 05:38:46 +02:00
IEnumerable<FileSystemMetadata> fileSystemChildren,
2015-01-10 02:38:01 +01:00
IDirectoryService directoryService,
IFileSystem fileSystem,
ILogger logger,
ILibraryManager libraryManager,
LibraryOptions libraryOptions,
2015-01-10 02:38:01 +01:00
bool isTvContentType)
{
foreach (var child in fileSystemChildren)
{
2015-08-10 19:37:50 +02:00
//if ((attributes & FileAttributes.Hidden) == FileAttributes.Hidden)
//{
// //logger.Debug("Igoring series file or folder marked hidden: {0}", child.FullName);
// continue;
//}
2015-01-10 02:38:01 +01:00
// Can't enforce this because files saved by Bitcasa are always marked System
//if ((attributes & FileAttributes.System) == FileAttributes.System)
//{
// logger.Debug("Igoring series subfolder marked system: {0}", child.FullName);
// continue;
//}
2016-10-25 21:02:04 +02:00
if (child.IsDirectory)
2015-01-10 02:38:01 +01:00
{
2015-07-23 18:32:34 +02:00
if (IsSeasonFolder(child.FullName, isTvContentType, libraryManager))
2015-01-10 02:38:01 +01:00
{
//logger.Debug("{0} is a series because of season folder {1}.", path, child.FullName);
return true;
}
}
else
{
string fullName = child.FullName;
if (libraryManager.IsVideoFile(fullName, libraryOptions))
2015-01-10 02:38:01 +01:00
{
if (isTvContentType)
{
return true;
}
2017-06-15 19:22:05 +02:00
var allowOptimisticEpisodeDetection = isTvContentType;
var namingOptions = ((LibraryManager)libraryManager).GetNamingOptions(allowOptimisticEpisodeDetection);
2015-01-10 20:42:14 +01:00
var episodeResolver = new Emby.Naming.TV.EpisodeResolver(namingOptions);
2015-04-29 20:48:34 +02:00
var episodeInfo = episodeResolver.Resolve(fullName, false, false);
2015-01-10 02:38:01 +01:00
if (episodeInfo != null && episodeInfo.EpisodeNumber.HasValue)
{
return true;
}
}
}
}
2017-09-15 19:57:42 +02:00
//logger.Debug("{0} is not a series folder.", path);
2015-01-10 02:38:01 +01:00
return false;
}
/// <summary>
/// Determines whether [is place holder] [the specified path].
/// </summary>
/// <param name="path">The path.</param>
/// <returns><c>true</c> if [is place holder] [the specified path]; otherwise, <c>false</c>.</returns>
/// <exception cref="System.ArgumentNullException">path</exception>
private static bool IsVideoPlaceHolder(string path)
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException("path");
}
var extension = Path.GetExtension(path);
return string.Equals(extension, ".disc", StringComparison.OrdinalIgnoreCase);
}
/// <summary>
/// Determines whether [is season folder] [the specified path].
/// </summary>
/// <param name="path">The path.</param>
/// <param name="isTvContentType">if set to <c>true</c> [is tv content type].</param>
2015-07-23 18:32:34 +02:00
/// <param name="libraryManager">The library manager.</param>
2015-01-10 02:38:01 +01:00
/// <returns><c>true</c> if [is season folder] [the specified path]; otherwise, <c>false</c>.</returns>
2015-07-23 18:32:34 +02:00
private static bool IsSeasonFolder(string path, bool isTvContentType, ILibraryManager libraryManager)
2015-01-10 02:38:01 +01:00
{
2015-07-23 18:32:34 +02:00
var namingOptions = ((LibraryManager)libraryManager).GetNamingOptions();
var seasonNumber = new SeasonPathParser(namingOptions, new RegexProvider()).Parse(path, isTvContentType, isTvContentType).SeasonNumber;
2015-01-10 02:38:01 +01:00
return seasonNumber.HasValue;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Sets the initial item values.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="args">The args.</param>
protected override void SetInitialItemValues(Series item, ItemResolveArgs args)
{
base.SetInitialItemValues(item, args);
SetProviderIdFromPath(item, args.Path);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Sets the provider id from path.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="path">The path.</param>
private void SetProviderIdFromPath(Series item, string path)
2013-02-21 02:33:05 +01:00
{
var justName = Path.GetFileName(path);
2013-02-21 02:33:05 +01:00
var id = justName.GetAttributeValue("tvdbid");
if (!string.IsNullOrEmpty(id))
{
item.SetProviderId(MetadataProviders.Tvdb, id);
}
}
}
}