1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Entities.Movies;
- using MediaBrowser.Controller.Library;
- using MediaBrowser.Model.Entities;
- using System;
- using System.IO;
- namespace Emby.Server.Implementations.Library.Resolvers.Movies
- {
- /// <summary>
- /// Class BoxSetResolver
- /// </summary>
- public class BoxSetResolver : FolderResolver<BoxSet>
- {
- /// <summary>
- /// Resolves the specified args.
- /// </summary>
- /// <param name="args">The args.</param>
- /// <returns>BoxSet.</returns>
- protected override BoxSet Resolve(ItemResolveArgs args)
- {
- // It's a boxset if all of the following conditions are met:
- // Is a Directory
- // Contains [boxset] in the path
- if (args.IsDirectory)
- {
- var filename = Path.GetFileName(args.Path);
- if (string.IsNullOrEmpty(filename))
- {
- return null;
- }
-
- if (filename.IndexOf("[boxset]", StringComparison.OrdinalIgnoreCase) != -1 ||
- args.ContainsFileSystemEntryByName("collection.xml"))
- {
- return new BoxSet
- {
- Path = args.Path,
- Name = ResolverHelper.StripBrackets(Path.GetFileName(args.Path))
- };
- }
- }
- return null;
- }
- /// <summary>
- /// Sets the initial item values.
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="args">The args.</param>
- protected override void SetInitialItemValues(BoxSet item, ItemResolveArgs args)
- {
- base.SetInitialItemValues(item, args);
- SetProviderIdFromPath(item);
- }
- /// <summary>
- /// Sets the provider id from path.
- /// </summary>
- /// <param name="item">The item.</param>
- private void SetProviderIdFromPath(BaseItem item)
- {
- //we need to only look at the name of this actual item (not parents)
- var justName = Path.GetFileName(item.Path);
- var id = justName.GetAttributeValue("tmdbid");
- if (!string.IsNullOrEmpty(id))
- {
- item.SetProviderId(MetadataProviders.Tmdb, id);
- }
- }
- }
- }
|