2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2014-08-03 02:16:37 +00:00
|
|
|
using System.IO;
|
2018-09-12 17:26:21 +00:00
|
|
|
using System.Linq;
|
2019-01-13 19:21:32 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.Playlists;
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
using MediaBrowser.Model.Extensions;
|
2014-08-03 02:16:37 +00:00
|
|
|
|
2016-11-03 06:37:52 +00:00
|
|
|
namespace Emby.Server.Implementations.Library.Resolvers
|
2014-08-03 02:16:37 +00:00
|
|
|
{
|
|
|
|
public class PlaylistResolver : FolderResolver<Playlist>
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
private string[] SupportedCollectionTypes = new string[] {
|
|
|
|
|
|
|
|
string.Empty,
|
|
|
|
CollectionType.Music
|
|
|
|
};
|
|
|
|
|
2014-08-03 02:16:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Resolves the specified args.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
/// <returns>BoxSet.</returns>
|
|
|
|
protected override Playlist Resolve(ItemResolveArgs args)
|
|
|
|
{
|
|
|
|
// It's a boxset if all of the following conditions are met:
|
|
|
|
// Is a Directory
|
|
|
|
// Contains [playlist] in the path
|
|
|
|
if (args.IsDirectory)
|
|
|
|
{
|
|
|
|
var filename = Path.GetFileName(args.Path);
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(filename))
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (filename.IndexOf("[playlist]", StringComparison.OrdinalIgnoreCase) != -1)
|
|
|
|
{
|
2014-11-29 19:51:30 +00:00
|
|
|
return new Playlist
|
|
|
|
{
|
|
|
|
Path = args.Path,
|
2018-09-12 17:26:21 +00:00
|
|
|
Name = Path.GetFileName(args.Path).Replace("[playlist]", string.Empty, StringComparison.OrdinalIgnoreCase).Trim()
|
2014-11-29 19:51:30 +00:00
|
|
|
};
|
2014-08-03 02:16:37 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (SupportedCollectionTypes.Contains(args.CollectionType ?? string.Empty, StringComparer.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
var extension = Path.GetExtension(args.Path);
|
|
|
|
if (Playlist.SupportedExtensions.Contains(extension ?? string.Empty, StringComparer.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return new Playlist
|
|
|
|
{
|
|
|
|
Path = args.Path,
|
|
|
|
Name = Path.GetFileNameWithoutExtension(args.Path),
|
|
|
|
IsInMixedFolder = true
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-03 02:16:37 +00:00
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|