jellyfin/Emby.Server.Implementations/Playlists/PlaylistManager.cs

296 lines
9.9 KiB
C#
Raw Normal View History

2016-03-27 23:11:27 +02:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
2014-08-02 04:34:45 +02:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Playlists;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2014-08-02 04:34:45 +02:00
using MediaBrowser.Model.Logging;
2014-08-21 17:55:35 +02:00
using MediaBrowser.Model.Playlists;
2014-08-02 04:34:45 +02:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2017-05-21 09:25:49 +02:00
using MediaBrowser.Controller.Dto;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
2017-08-10 20:01:31 +02:00
using MediaBrowser.Model.Extensions;
2014-08-02 04:34:45 +02:00
namespace Emby.Server.Implementations.Playlists
2014-08-02 04:34:45 +02:00
{
public class PlaylistManager : IPlaylistManager
{
private readonly ILibraryManager _libraryManager;
private readonly IFileSystem _fileSystem;
private readonly ILibraryMonitor _iLibraryMonitor;
private readonly ILogger _logger;
private readonly IUserManager _userManager;
2015-07-24 17:20:11 +02:00
private readonly IProviderManager _providerManager;
2014-08-02 04:34:45 +02:00
2015-07-24 17:20:11 +02:00
public PlaylistManager(ILibraryManager libraryManager, IFileSystem fileSystem, ILibraryMonitor iLibraryMonitor, ILogger logger, IUserManager userManager, IProviderManager providerManager)
2014-08-02 04:34:45 +02:00
{
_libraryManager = libraryManager;
_fileSystem = fileSystem;
_iLibraryMonitor = iLibraryMonitor;
_logger = logger;
_userManager = userManager;
2015-07-24 17:20:11 +02:00
_providerManager = providerManager;
2014-08-02 04:34:45 +02:00
}
public IEnumerable<Playlist> GetPlaylists(string userId)
{
2014-09-14 17:10:51 +02:00
var user = _userManager.GetUserById(userId);
2014-08-02 04:34:45 +02:00
return GetPlaylistsFolder(userId).GetChildren(user, true).OfType<Playlist>();
}
2014-08-21 17:55:35 +02:00
public async Task<PlaylistCreationResult> CreatePlaylist(PlaylistCreationRequest options)
2014-08-02 04:34:45 +02:00
{
var name = options.Name;
var folderName = _fileSystem.GetValidFilename(name) + " [playlist]";
var parentFolder = GetPlaylistsFolder(null);
if (parentFolder == null)
{
throw new ArgumentException();
}
if (string.IsNullOrWhiteSpace(options.MediaType))
{
foreach (var itemId in options.ItemIdList)
{
var item = _libraryManager.GetItemById(itemId);
if (item == null)
{
throw new ArgumentException("No item exists with the supplied Id");
}
if (!string.IsNullOrWhiteSpace(item.MediaType))
{
options.MediaType = item.MediaType;
}
else if (item is MusicArtist || item is MusicAlbum || item is MusicGenre)
{
options.MediaType = MediaType.Audio;
}
else if (item is Genre)
{
options.MediaType = MediaType.Video;
}
else
{
var folder = item as Folder;
if (folder != null)
{
2015-01-25 07:34:50 +01:00
options.MediaType = folder.GetRecursiveChildren(i => !i.IsFolder && i.SupportsAddingToPlaylist)
.Select(i => i.MediaType)
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
}
}
if (!string.IsNullOrWhiteSpace(options.MediaType))
{
break;
}
}
}
if (string.IsNullOrWhiteSpace(options.MediaType))
{
2017-01-14 04:48:42 +01:00
options.MediaType = "Audio";
}
2014-09-14 17:10:51 +02:00
var user = _userManager.GetUserById(options.UserId);
2014-08-22 04:24:38 +02:00
2014-08-02 04:34:45 +02:00
var path = Path.Combine(parentFolder.Path, folderName);
path = GetTargetPath(path);
2014-08-02 04:34:45 +02:00
_iLibraryMonitor.ReportFileSystemChangeBeginning(path);
try
{
2015-10-15 17:51:00 +02:00
_fileSystem.CreateDirectory(path);
2014-08-02 04:34:45 +02:00
var playlist = new Playlist
2014-08-02 04:34:45 +02:00
{
Name = name,
2014-12-13 04:56:30 +01:00
Path = path
2014-08-02 04:34:45 +02:00
};
2014-12-13 04:56:30 +01:00
playlist.Shares.Add(new Share
{
UserId = options.UserId,
CanEdit = true
});
playlist.SetMediaType(options.MediaType);
parentFolder.AddChild(playlist, CancellationToken.None);
2014-08-02 04:34:45 +02:00
2015-09-14 01:07:54 +02:00
await playlist.RefreshMetadata(new MetadataRefreshOptions(_fileSystem) { ForceSave = true }, CancellationToken.None)
2014-08-02 04:34:45 +02:00
.ConfigureAwait(false);
2017-08-19 21:43:35 +02:00
if (options.ItemIdList.Length > 0)
2014-08-02 04:34:45 +02:00
{
2017-05-21 09:25:49 +02:00
await AddToPlaylistInternal(playlist.Id.ToString("N"), options.ItemIdList, user, new DtoOptions(false)
{
EnableImages = true
});
2014-08-02 04:34:45 +02:00
}
2014-08-21 17:55:35 +02:00
return new PlaylistCreationResult
{
Id = playlist.Id.ToString("N")
};
2014-08-02 04:34:45 +02:00
}
finally
{
// Refresh handled internally
_iLibraryMonitor.ReportFileSystemChangeComplete(path, false);
}
}
private string GetTargetPath(string path)
{
2015-10-15 17:51:00 +02:00
while (_fileSystem.DirectoryExists(path))
{
path += "1";
}
return path;
}
2017-08-10 20:01:31 +02:00
private List<BaseItem> GetPlaylistItems(IEnumerable<string> itemIds, string playlistMediaType, User user, DtoOptions options)
{
var items = itemIds.Select(i => _libraryManager.GetItemById(i)).Where(i => i != null);
2017-05-21 09:25:49 +02:00
return Playlist.GetPlaylistItems(playlistMediaType, items, user, options);
2014-08-22 04:24:38 +02:00
}
public Task AddToPlaylist(string playlistId, IEnumerable<string> itemIds, string userId)
{
2014-09-14 17:10:51 +02:00
var user = string.IsNullOrWhiteSpace(userId) ? null : _userManager.GetUserById(userId);
2014-08-22 04:24:38 +02:00
2017-05-21 09:25:49 +02:00
return AddToPlaylistInternal(playlistId, itemIds, user, new DtoOptions(false)
{
EnableImages = true
});
}
2017-05-21 09:25:49 +02:00
private async Task AddToPlaylistInternal(string playlistId, IEnumerable<string> itemIds, User user, DtoOptions options)
2014-08-02 04:34:45 +02:00
{
var playlist = _libraryManager.GetItemById(playlistId) as Playlist;
2014-08-02 04:34:45 +02:00
if (playlist == null)
2014-08-02 04:34:45 +02:00
{
throw new ArgumentException("No Playlist exists with the supplied Id");
}
var list = new List<LinkedChild>();
2017-05-26 08:48:54 +02:00
var items = (GetPlaylistItems(itemIds, playlist.MediaType, user, options))
2014-08-22 04:24:38 +02:00
.Where(i => i.SupportsAddingToPlaylist)
.ToList();
2014-08-02 04:34:45 +02:00
2014-08-07 04:51:09 +02:00
foreach (var item in items)
{
2017-05-30 20:24:50 +02:00
if (string.IsNullOrWhiteSpace(item.Path))
{
continue;
}
list.Add(LinkedChild.Create(item));
2014-08-02 04:34:45 +02:00
}
2017-08-10 20:01:31 +02:00
var newList = playlist.LinkedChildren.ToList();
newList.AddRange(list);
playlist.LinkedChildren = newList.ToArray(newList.Count);
2017-10-03 20:39:37 +02:00
playlist.UpdateToRepository(ItemUpdateType.MetadataEdit, CancellationToken.None);
2015-07-24 17:20:11 +02:00
2015-09-14 01:07:54 +02:00
_providerManager.QueueRefresh(playlist.Id, new MetadataRefreshOptions(_fileSystem)
2014-08-21 17:55:35 +02:00
{
ForceSave = true
2017-04-30 04:37:51 +02:00
}, RefreshPriority.High);
2014-08-02 04:34:45 +02:00
}
2014-08-06 06:18:13 +02:00
public async Task RemoveFromPlaylist(string playlistId, IEnumerable<string> entryIds)
2014-08-02 04:34:45 +02:00
{
2014-08-06 06:18:13 +02:00
var playlist = _libraryManager.GetItemById(playlistId) as Playlist;
if (playlist == null)
{
throw new ArgumentException("No Playlist exists with the supplied Id");
}
2014-08-12 01:41:11 +02:00
var children = playlist.GetManageableItems().ToList();
2014-08-06 06:18:13 +02:00
var idList = entryIds.ToList();
2014-08-12 01:41:11 +02:00
var removals = children.Where(i => idList.Contains(i.Item1.Id));
2014-08-06 06:18:13 +02:00
playlist.LinkedChildren = children.Except(removals)
2014-08-12 01:41:11 +02:00
.Select(i => i.Item1)
2017-08-10 20:01:31 +02:00
.ToArray();
2014-08-06 06:18:13 +02:00
2017-10-03 20:39:37 +02:00
playlist.UpdateToRepository(ItemUpdateType.MetadataEdit, CancellationToken.None);
2015-07-24 17:20:11 +02:00
2015-09-14 01:07:54 +02:00
_providerManager.QueueRefresh(playlist.Id, new MetadataRefreshOptions(_fileSystem)
2014-08-06 06:18:13 +02:00
{
ForceSave = true
2017-04-30 04:37:51 +02:00
}, RefreshPriority.High);
2014-08-02 04:34:45 +02:00
}
public async Task MoveItem(string playlistId, string entryId, int newIndex)
{
var playlist = _libraryManager.GetItemById(playlistId) as Playlist;
if (playlist == null)
{
throw new ArgumentException("No Playlist exists with the supplied Id");
}
var children = playlist.GetManageableItems().ToList();
var oldIndex = children.FindIndex(i => string.Equals(entryId, i.Item1.Id, StringComparison.OrdinalIgnoreCase));
2015-10-15 17:51:00 +02:00
if (oldIndex == newIndex)
{
return;
}
var item = playlist.LinkedChildren[oldIndex];
2017-08-10 20:01:31 +02:00
var newList = playlist.LinkedChildren.ToList();
2016-07-16 20:02:39 +02:00
2017-08-10 20:01:31 +02:00
newList.Remove(item);
if (newIndex >= newList.Count)
2016-07-16 20:02:39 +02:00
{
2017-08-10 20:01:31 +02:00
newList.Add(item);
2016-07-16 20:02:39 +02:00
}
else
{
2017-08-10 20:01:31 +02:00
newList.Insert(newIndex, item);
2016-07-16 20:02:39 +02:00
}
2017-08-10 20:01:31 +02:00
playlist.LinkedChildren = newList.ToArray(newList.Count);
2017-10-03 20:39:37 +02:00
playlist.UpdateToRepository(ItemUpdateType.MetadataEdit, CancellationToken.None);
}
2014-08-02 04:34:45 +02:00
public Folder GetPlaylistsFolder(string userId)
{
var typeName = "PlaylistsFolder";
2017-05-26 08:48:54 +02:00
return _libraryManager.RootFolder.Children.OfType<Folder>().FirstOrDefault(i => string.Equals(i.GetType().Name, typeName, StringComparison.Ordinal)) ??
_libraryManager.GetUserRootFolder().Children.OfType<Folder>().FirstOrDefault(i => string.Equals(i.GetType().Name, typeName, StringComparison.Ordinal));
2014-08-02 04:34:45 +02:00
}
}
}