jellyfin/MediaBrowser.Api/Library/LibraryStructureService.cs

413 lines
13 KiB
C#
Raw Normal View History

using System;
2013-02-25 04:56:00 +01:00
using System.Collections.Generic;
using System.Globalization;
using System.IO;
2013-02-25 04:56:00 +01:00
using System.Linq;
2013-08-13 16:41:45 +02:00
using System.Threading;
using System.Threading.Tasks;
2017-06-23 18:04:45 +02:00
using MediaBrowser.Common.Progress;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
2016-08-14 05:12:26 +02:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Net;
2016-08-13 22:54:29 +02:00
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Entities;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.Services;
using Microsoft.Extensions.Logging;
2013-02-25 04:56:00 +01:00
namespace MediaBrowser.Api.Library
{
/// <summary>
/// Class GetDefaultVirtualFolders.
2013-02-25 04:56:00 +01:00
/// </summary>
[Route("/Library/VirtualFolders", "GET")]
public class GetVirtualFolders : IReturn<List<VirtualFolderInfo>>
{
/// <summary>
/// Gets or sets the user id.
/// </summary>
/// <value>The user id.</value>
public string UserId { get; set; }
}
[Route("/Library/VirtualFolders", "POST")]
2013-02-25 04:56:00 +01:00
public class AddVirtualFolder : IReturnVoid
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
2013-07-12 21:56:40 +02:00
/// <summary>
/// Gets or sets the type of the collection.
/// </summary>
/// <value>The type of the collection.</value>
public string CollectionType { get; set; }
2013-09-05 19:05:39 +02:00
/// <summary>
/// Gets or sets a value indicating whether [refresh library].
/// </summary>
/// <value><c>true</c> if [refresh library]; otherwise, <c>false</c>.</value>
public bool RefreshLibrary { get; set; }
2015-10-16 04:06:44 +02:00
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
2015-10-26 06:29:32 +01:00
public string[] Paths { get; set; }
public LibraryOptions LibraryOptions { get; set; }
2013-02-25 04:56:00 +01:00
}
[Route("/Library/VirtualFolders", "DELETE")]
2013-02-25 04:56:00 +01:00
public class RemoveVirtualFolder : IReturnVoid
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
2013-09-05 19:05:39 +02:00
/// <summary>
/// Gets or sets a value indicating whether [refresh library].
/// </summary>
/// <value><c>true</c> if [refresh library]; otherwise, <c>false</c>.</value>
public bool RefreshLibrary { get; set; }
2013-02-25 04:56:00 +01:00
}
[Route("/Library/VirtualFolders/Name", "POST")]
2013-02-25 04:56:00 +01:00
public class RenameVirtualFolder : IReturnVoid
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string NewName { get; set; }
2013-09-05 19:05:39 +02:00
/// <summary>
/// Gets or sets a value indicating whether [refresh library].
/// </summary>
/// <value><c>true</c> if [refresh library]; otherwise, <c>false</c>.</value>
public bool RefreshLibrary { get; set; }
2013-02-25 04:56:00 +01:00
}
[Route("/Library/VirtualFolders/Paths", "POST")]
2013-02-25 04:56:00 +01:00
public class AddMediaPath : IReturnVoid
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Path { get; set; }
2013-09-05 19:05:39 +02:00
public MediaPathInfo PathInfo { get; set; }
2013-09-05 19:05:39 +02:00
/// <summary>
/// Gets or sets a value indicating whether [refresh library].
/// </summary>
/// <value><c>true</c> if [refresh library]; otherwise, <c>false</c>.</value>
public bool RefreshLibrary { get; set; }
2013-02-25 04:56:00 +01:00
}
2016-09-24 08:22:03 +02:00
[Route("/Library/VirtualFolders/Paths/Update", "POST")]
public class UpdateMediaPath : IReturnVoid
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
public MediaPathInfo PathInfo { get; set; }
}
[Route("/Library/VirtualFolders/Paths", "DELETE")]
2013-02-25 04:56:00 +01:00
public class RemoveMediaPath : IReturnVoid
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Path { get; set; }
2013-09-05 19:05:39 +02:00
/// <summary>
/// Gets or sets a value indicating whether [refresh library].
/// </summary>
/// <value><c>true</c> if [refresh library]; otherwise, <c>false</c>.</value>
public bool RefreshLibrary { get; set; }
2013-02-25 04:56:00 +01:00
}
2014-11-15 03:31:03 +01:00
2016-08-14 05:12:26 +02:00
[Route("/Library/VirtualFolders/LibraryOptions", "POST")]
public class UpdateLibraryOptions : IReturnVoid
{
public string Id { get; set; }
public LibraryOptions LibraryOptions { get; set; }
}
2013-02-25 04:56:00 +01:00
/// <summary>
/// Class LibraryStructureService.
2013-02-25 04:56:00 +01:00
/// </summary>
2014-11-15 03:31:03 +01:00
[Authenticated(Roles = "Admin", AllowBeforeStartupWizard = true)]
2013-03-16 06:52:33 +01:00
public class LibraryStructureService : BaseApiService
2013-02-25 04:56:00 +01:00
{
/// <summary>
/// The _app paths.
2013-02-25 04:56:00 +01:00
/// </summary>
private readonly IServerApplicationPaths _appPaths;
/// <summary>
/// The _library manager.
/// </summary>
private readonly ILibraryManager _libraryManager;
private readonly ILibraryMonitor _libraryMonitor;
2013-02-25 04:56:00 +01:00
/// <summary>
2015-01-21 04:54:45 +01:00
/// Initializes a new instance of the <see cref="LibraryStructureService" /> class.
2013-02-25 04:56:00 +01:00
/// </summary>
public LibraryStructureService(
ILogger<LibraryStructureService> logger,
IServerConfigurationManager serverConfigurationManager,
IHttpResultFactory httpResultFactory,
ILibraryManager libraryManager,
ILibraryMonitor libraryMonitor)
: base(logger, serverConfigurationManager, httpResultFactory)
2013-02-25 04:56:00 +01:00
{
_appPaths = serverConfigurationManager.ApplicationPaths;
_libraryManager = libraryManager;
_libraryMonitor = libraryMonitor;
2013-02-25 04:56:00 +01:00
}
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetVirtualFolders request)
{
2017-06-23 18:04:45 +02:00
var result = _libraryManager.GetVirtualFolders(true);
2013-02-25 04:56:00 +01:00
2018-09-12 19:26:21 +02:00
return ToOptimizedResult(result);
2013-02-25 04:56:00 +01:00
}
2016-08-14 05:12:26 +02:00
public void Post(UpdateLibraryOptions request)
{
var collectionFolder = (CollectionFolder)_libraryManager.GetItemById(request.Id);
collectionFolder.UpdateLibraryOptions(request.LibraryOptions);
}
2013-02-25 04:56:00 +01:00
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
2018-09-12 19:26:21 +02:00
public Task Post(AddVirtualFolder request)
2013-02-25 04:56:00 +01:00
{
var libraryOptions = request.LibraryOptions ?? new LibraryOptions();
if (request.Paths != null && request.Paths.Length > 0)
{
libraryOptions.PathInfos = request.Paths.Select(i => new MediaPathInfo { Path = i }).ToArray();
}
2018-09-12 19:26:21 +02:00
return _libraryManager.AddVirtualFolder(request.Name, request.CollectionType, libraryOptions, request.RefreshLibrary);
2013-02-25 04:56:00 +01:00
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
public void Post(RenameVirtualFolder request)
2013-02-25 04:56:00 +01:00
{
if (string.IsNullOrWhiteSpace(request.Name))
{
throw new ArgumentNullException(nameof(request));
}
if (string.IsNullOrWhiteSpace(request.NewName))
{
throw new ArgumentNullException(nameof(request));
}
2014-02-21 06:04:11 +01:00
var rootFolderPath = _appPaths.DefaultUserViewsPath;
var currentPath = Path.Combine(rootFolderPath, request.Name);
var newPath = Path.Combine(rootFolderPath, request.NewName);
if (!Directory.Exists(currentPath))
{
2016-11-01 04:07:45 +01:00
throw new FileNotFoundException("The media collection does not exist");
}
if (!string.Equals(currentPath, newPath, StringComparison.OrdinalIgnoreCase) && Directory.Exists(newPath))
{
2018-09-12 19:26:21 +02:00
throw new ArgumentException("Media library already exists at " + newPath + ".");
}
_libraryMonitor.Stop();
2013-08-13 16:41:45 +02:00
try
2013-02-25 04:56:00 +01:00
{
2018-09-12 19:26:21 +02:00
// Changing capitalization. Handle windows case insensitivity
if (string.Equals(currentPath, newPath, StringComparison.OrdinalIgnoreCase))
2013-08-13 16:41:45 +02:00
{
var tempPath = Path.Combine(rootFolderPath, Guid.NewGuid().ToString("N", CultureInfo.InvariantCulture));
Directory.Move(currentPath, tempPath);
2018-09-12 19:26:21 +02:00
currentPath = tempPath;
2013-08-13 16:41:45 +02:00
}
Directory.Move(currentPath, newPath);
2013-02-25 04:56:00 +01:00
}
2013-08-13 16:41:45 +02:00
finally
2013-02-25 04:56:00 +01:00
{
2018-09-12 19:26:21 +02:00
CollectionFolder.OnCollectionFolderChange();
2015-03-19 04:47:21 +01:00
Task.Run(() =>
{
2015-03-19 04:47:21 +01:00
// No need to start if scanning the library because it will handle it
if (request.RefreshLibrary)
{
2017-06-23 18:04:45 +02:00
_libraryManager.ValidateMediaLibrary(new SimpleProgress<double>(), CancellationToken.None);
2015-03-19 04:47:21 +01:00
}
else
{
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task.Delay(1000);
// Have to block here to allow exceptions to bubble
Task.WaitAll(task);
_libraryMonitor.Start();
}
});
2013-09-05 19:05:39 +02:00
}
2013-02-25 04:56:00 +01:00
}
2013-02-25 04:56:00 +01:00
/// <summary>
/// Deletes the specified request.
/// </summary>
/// <param name="request">The request.</param>
2018-09-12 19:26:21 +02:00
public Task Delete(RemoveVirtualFolder request)
2013-02-25 04:56:00 +01:00
{
2018-09-12 19:26:21 +02:00
return _libraryManager.RemoveVirtualFolder(request.Name, request.RefreshLibrary);
2013-02-25 04:56:00 +01:00
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
public void Post(AddMediaPath request)
2013-02-25 04:56:00 +01:00
{
if (string.IsNullOrWhiteSpace(request.Name))
{
throw new ArgumentNullException(nameof(request));
}
_libraryMonitor.Stop();
2013-08-13 16:41:45 +02:00
try
2013-02-25 04:56:00 +01:00
{
2020-04-05 18:45:01 +02:00
var mediaPath = request.PathInfo ?? new MediaPathInfo
{
2020-04-05 18:45:01 +02:00
Path = request.Path
};
_libraryManager.AddMediaPath(request.Name, mediaPath);
2013-02-25 04:56:00 +01:00
}
2013-08-13 16:41:45 +02:00
finally
2013-02-25 04:56:00 +01:00
{
2015-03-19 04:47:21 +01:00
Task.Run(() =>
{
2015-03-19 04:47:21 +01:00
// No need to start if scanning the library because it will handle it
if (request.RefreshLibrary)
{
2017-06-23 18:04:45 +02:00
_libraryManager.ValidateMediaLibrary(new SimpleProgress<double>(), CancellationToken.None);
2015-03-19 04:47:21 +01:00
}
else
{
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task.Delay(1000);
// Have to block here to allow exceptions to bubble
Task.WaitAll(task);
_libraryMonitor.Start();
}
});
2013-09-05 19:05:39 +02:00
}
2013-02-25 04:56:00 +01:00
}
2016-09-24 08:22:03 +02:00
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
public void Post(UpdateMediaPath request)
{
if (string.IsNullOrWhiteSpace(request.Name))
{
throw new ArgumentNullException(nameof(request));
2016-09-24 08:22:03 +02:00
}
_libraryManager.UpdateMediaPath(request.Name, request.PathInfo);
}
2013-02-25 04:56:00 +01:00
/// <summary>
/// Deletes the specified request.
/// </summary>
/// <param name="request">The request.</param>
public void Delete(RemoveMediaPath request)
2013-02-25 04:56:00 +01:00
{
if (string.IsNullOrWhiteSpace(request.Name))
{
throw new ArgumentNullException(nameof(request));
}
_libraryMonitor.Stop();
2013-08-13 16:41:45 +02:00
try
2013-02-25 04:56:00 +01:00
{
2016-05-04 22:50:47 +02:00
_libraryManager.RemoveMediaPath(request.Name, request.Path);
2013-02-25 04:56:00 +01:00
}
2013-08-13 16:41:45 +02:00
finally
2013-02-25 04:56:00 +01:00
{
2015-03-19 04:47:21 +01:00
Task.Run(() =>
{
2015-03-19 04:47:21 +01:00
// No need to start if scanning the library because it will handle it
if (request.RefreshLibrary)
{
2017-06-23 18:04:45 +02:00
_libraryManager.ValidateMediaLibrary(new SimpleProgress<double>(), CancellationToken.None);
2015-03-19 04:47:21 +01:00
}
else
{
// Need to add a delay here or directory watchers may still pick up the changes
var task = Task.Delay(1000);
// Have to block here to allow exceptions to bubble
Task.WaitAll(task);
_libraryMonitor.Start();
}
});
2013-09-05 19:05:39 +02:00
}
2013-02-25 04:56:00 +01:00
}
}
}