2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2013-02-25 03:56:00 +00:00
|
|
|
using System.Collections.Generic;
|
2013-11-04 16:26:49 +00:00
|
|
|
using System.IO;
|
2013-02-25 03:56:00 +00:00
|
|
|
using System.Linq;
|
2013-08-13 14:41:45 +00:00
|
|
|
using System.Threading;
|
2013-09-14 21:18:57 +00:00
|
|
|
using System.Threading.Tasks;
|
2017-06-23 16:04:45 +00:00
|
|
|
using MediaBrowser.Common.Progress;
|
2019-01-13 19:24:58 +00:00
|
|
|
using MediaBrowser.Controller;
|
2016-08-14 03:12:26 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2019-01-13 19:24:58 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.Net;
|
2016-08-13 20:54:29 +00:00
|
|
|
using MediaBrowser.Model.Configuration;
|
2019-01-13 19:24:58 +00:00
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.Services;
|
2013-02-25 03:56:00 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Api.Library
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class GetDefaultVirtualFolders
|
|
|
|
/// </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; }
|
|
|
|
}
|
|
|
|
|
2013-12-29 14:54:11 +00:00
|
|
|
[Route("/Library/VirtualFolders", "POST")]
|
2013-02-25 03:56:00 +00:00
|
|
|
public class AddVirtualFolder : IReturnVoid
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
|
|
|
public string Name { get; set; }
|
2013-07-12 19:56:40 +00: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 17:05:39 +00: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 02:06:44 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the path.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The path.</value>
|
2015-10-26 05:29:32 +00:00
|
|
|
public string[] Paths { get; set; }
|
2016-08-13 05:49:00 +00:00
|
|
|
|
|
|
|
public LibraryOptions LibraryOptions { get; set; }
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
|
|
|
|
2013-12-29 14:54:11 +00:00
|
|
|
[Route("/Library/VirtualFolders", "DELETE")]
|
2013-02-25 03:56:00 +00:00
|
|
|
public class RemoveVirtualFolder : IReturnVoid
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
|
|
|
public string Name { get; set; }
|
2013-09-05 17:05:39 +00: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 03:56:00 +00:00
|
|
|
}
|
|
|
|
|
2013-12-29 14:54:11 +00:00
|
|
|
[Route("/Library/VirtualFolders/Name", "POST")]
|
2013-02-25 03:56:00 +00: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 17:05:39 +00: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 03:56:00 +00:00
|
|
|
}
|
|
|
|
|
2013-12-29 14:54:11 +00:00
|
|
|
[Route("/Library/VirtualFolders/Paths", "POST")]
|
2013-02-25 03:56:00 +00: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 17:05:39 +00:00
|
|
|
|
2016-09-23 06:21:54 +00:00
|
|
|
public MediaPathInfo PathInfo { get; set; }
|
|
|
|
|
2013-09-05 17:05:39 +00: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 03:56:00 +00:00
|
|
|
}
|
2013-09-14 21:18:57 +00:00
|
|
|
|
2016-09-24 06:22:03 +00: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; }
|
|
|
|
}
|
|
|
|
|
2013-12-29 14:54:11 +00:00
|
|
|
[Route("/Library/VirtualFolders/Paths", "DELETE")]
|
2013-02-25 03:56:00 +00: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 17:05:39 +00: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 03:56:00 +00:00
|
|
|
}
|
2014-11-15 02:31:03 +00:00
|
|
|
|
2016-08-14 03:12:26 +00:00
|
|
|
[Route("/Library/VirtualFolders/LibraryOptions", "POST")]
|
|
|
|
public class UpdateLibraryOptions : IReturnVoid
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
public LibraryOptions LibraryOptions { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-02-25 03:56:00 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Class LibraryStructureService
|
|
|
|
/// </summary>
|
2014-11-15 02:31:03 +00:00
|
|
|
[Authenticated(Roles = "Admin", AllowBeforeStartupWizard = true)]
|
2013-03-16 05:52:33 +00:00
|
|
|
public class LibraryStructureService : BaseApiService
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The _app paths
|
|
|
|
/// </summary>
|
|
|
|
private readonly IServerApplicationPaths _appPaths;
|
|
|
|
|
2013-02-28 19:32:41 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The _library manager
|
|
|
|
/// </summary>
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2013-04-10 15:32:09 +00:00
|
|
|
|
2014-01-28 21:25:10 +00:00
|
|
|
private readonly ILibraryMonitor _libraryMonitor;
|
2013-09-14 21:18:57 +00:00
|
|
|
|
2013-10-30 14:40:14 +00:00
|
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
|
2013-02-25 03:56:00 +00:00
|
|
|
/// <summary>
|
2015-01-21 03:54:45 +00:00
|
|
|
/// Initializes a new instance of the <see cref="LibraryStructureService" /> class.
|
2013-02-25 03:56:00 +00:00
|
|
|
/// </summary>
|
2015-01-21 03:54:45 +00:00
|
|
|
public LibraryStructureService(IServerApplicationPaths appPaths, ILibraryManager libraryManager, ILibraryMonitor libraryMonitor, IFileSystem fileSystem)
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
|
|
|
if (appPaths == null)
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(appPaths));
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_appPaths = appPaths;
|
2013-02-28 19:32:41 +00:00
|
|
|
_libraryManager = libraryManager;
|
2014-01-28 21:25:10 +00:00
|
|
|
_libraryMonitor = libraryMonitor;
|
2013-10-30 14:40:14 +00:00
|
|
|
_fileSystem = fileSystem;
|
2013-02-25 03:56:00 +00: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 16:04:45 +00:00
|
|
|
var result = _libraryManager.GetVirtualFolders(true);
|
2013-02-25 03:56:00 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
return ToOptimizedResult(result);
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
|
|
|
|
2016-08-14 03:12:26 +00:00
|
|
|
public void Post(UpdateLibraryOptions request)
|
|
|
|
{
|
|
|
|
var collectionFolder = (CollectionFolder)_libraryManager.GetItemById(request.Id);
|
|
|
|
|
|
|
|
collectionFolder.UpdateLibraryOptions(request.LibraryOptions);
|
|
|
|
}
|
|
|
|
|
2013-02-25 03:56:00 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Posts the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
2018-09-12 17:26:21 +00:00
|
|
|
public Task Post(AddVirtualFolder request)
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2016-08-13 05:49:00 +00:00
|
|
|
var libraryOptions = request.LibraryOptions ?? new LibraryOptions();
|
|
|
|
|
2016-09-23 06:21:54 +00:00
|
|
|
if (request.Paths != null && request.Paths.Length > 0)
|
|
|
|
{
|
|
|
|
libraryOptions.PathInfos = request.Paths.Select(i => new MediaPathInfo { Path = i }).ToArray();
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
return _libraryManager.AddVirtualFolder(request.Name, request.CollectionType, libraryOptions, request.RefreshLibrary);
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Posts the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
2013-09-14 21:18:57 +00:00
|
|
|
public void Post(RenameVirtualFolder request)
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2013-12-29 14:54:11 +00:00
|
|
|
if (string.IsNullOrWhiteSpace(request.Name))
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(request));
|
2013-12-29 14:54:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(request.NewName))
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(request));
|
2013-12-29 14:54:11 +00:00
|
|
|
}
|
|
|
|
|
2014-02-21 05:04:11 +00:00
|
|
|
var rootFolderPath = _appPaths.DefaultUserViewsPath;
|
2013-11-04 16:26:49 +00:00
|
|
|
|
|
|
|
var currentPath = Path.Combine(rootFolderPath, request.Name);
|
|
|
|
var newPath = Path.Combine(rootFolderPath, request.NewName);
|
|
|
|
|
2019-01-30 00:02:17 +00:00
|
|
|
if (!Directory.Exists(currentPath))
|
2013-11-04 16:26:49 +00:00
|
|
|
{
|
2016-11-01 03:07:45 +00:00
|
|
|
throw new FileNotFoundException("The media collection does not exist");
|
2013-11-04 16:26:49 +00:00
|
|
|
}
|
|
|
|
|
2019-01-26 21:59:53 +00:00
|
|
|
if (!string.Equals(currentPath, newPath, StringComparison.OrdinalIgnoreCase) && Directory.Exists(newPath))
|
2013-11-04 16:26:49 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
throw new ArgumentException("Media library already exists at " + newPath + ".");
|
2013-11-04 16:26:49 +00:00
|
|
|
}
|
|
|
|
|
2014-01-28 21:25:10 +00:00
|
|
|
_libraryMonitor.Stop();
|
2013-08-13 14:41:45 +00:00
|
|
|
|
|
|
|
try
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
// Changing capitalization. Handle windows case insensitivity
|
2013-11-04 16:26:49 +00:00
|
|
|
if (string.Equals(currentPath, newPath, StringComparison.OrdinalIgnoreCase))
|
2013-08-13 14:41:45 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
var tempPath = Path.Combine(rootFolderPath, Guid.NewGuid().ToString("N"));
|
2019-01-26 21:59:53 +00:00
|
|
|
Directory.Move(currentPath, tempPath);
|
2018-09-12 17:26:21 +00:00
|
|
|
currentPath = tempPath;
|
2013-08-13 14:41:45 +00:00
|
|
|
}
|
|
|
|
|
2019-01-26 21:59:53 +00:00
|
|
|
Directory.Move(currentPath, newPath);
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
2013-08-13 14:41:45 +00:00
|
|
|
finally
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
CollectionFolder.OnCollectionFolderChange();
|
|
|
|
|
2015-03-19 03:47:21 +00:00
|
|
|
Task.Run(() =>
|
2013-11-27 02:38:11 +00:00
|
|
|
{
|
2015-03-19 03:47:21 +00:00
|
|
|
// No need to start if scanning the library because it will handle it
|
|
|
|
if (request.RefreshLibrary)
|
|
|
|
{
|
2017-06-23 16:04:45 +00:00
|
|
|
_libraryManager.ValidateMediaLibrary(new SimpleProgress<double>(), CancellationToken.None);
|
2015-03-19 03:47:21 +00: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 17:05:39 +00:00
|
|
|
}
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
2013-09-14 21:18:57 +00:00
|
|
|
|
2013-02-25 03:56:00 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Deletes the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
2018-09-12 17:26:21 +00:00
|
|
|
public Task Delete(RemoveVirtualFolder request)
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
return _libraryManager.RemoveVirtualFolder(request.Name, request.RefreshLibrary);
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Posts the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
2013-09-14 21:18:57 +00:00
|
|
|
public void Post(AddMediaPath request)
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2013-12-29 14:54:11 +00:00
|
|
|
if (string.IsNullOrWhiteSpace(request.Name))
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(request));
|
2013-12-29 14:54:11 +00:00
|
|
|
}
|
|
|
|
|
2014-01-28 21:25:10 +00:00
|
|
|
_libraryMonitor.Stop();
|
2013-08-13 14:41:45 +00:00
|
|
|
|
|
|
|
try
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2016-09-23 06:21:54 +00:00
|
|
|
var mediaPath = request.PathInfo;
|
|
|
|
|
|
|
|
if (mediaPath == null)
|
|
|
|
{
|
|
|
|
mediaPath = new MediaPathInfo
|
|
|
|
{
|
|
|
|
Path = request.Path
|
|
|
|
};
|
|
|
|
}
|
|
|
|
_libraryManager.AddMediaPath(request.Name, mediaPath);
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
2013-08-13 14:41:45 +00:00
|
|
|
finally
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2015-03-19 03:47:21 +00:00
|
|
|
Task.Run(() =>
|
2013-11-27 02:38:11 +00:00
|
|
|
{
|
2015-03-19 03:47:21 +00:00
|
|
|
// No need to start if scanning the library because it will handle it
|
|
|
|
if (request.RefreshLibrary)
|
|
|
|
{
|
2017-06-23 16:04:45 +00:00
|
|
|
_libraryManager.ValidateMediaLibrary(new SimpleProgress<double>(), CancellationToken.None);
|
2015-03-19 03:47:21 +00: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 17:05:39 +00:00
|
|
|
}
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
|
|
|
|
2016-09-24 06:22:03 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Posts the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
public void Post(UpdateMediaPath request)
|
|
|
|
{
|
|
|
|
if (string.IsNullOrWhiteSpace(request.Name))
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(request));
|
2016-09-24 06:22:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_libraryManager.UpdateMediaPath(request.Name, request.PathInfo);
|
|
|
|
}
|
|
|
|
|
2013-02-25 03:56:00 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Deletes the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
2013-09-14 21:18:57 +00:00
|
|
|
public void Delete(RemoveMediaPath request)
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2013-12-29 14:54:11 +00:00
|
|
|
if (string.IsNullOrWhiteSpace(request.Name))
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(request));
|
2013-12-29 14:54:11 +00:00
|
|
|
}
|
|
|
|
|
2014-01-28 21:25:10 +00:00
|
|
|
_libraryMonitor.Stop();
|
2013-08-13 14:41:45 +00:00
|
|
|
|
|
|
|
try
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2016-05-04 20:50:47 +00:00
|
|
|
_libraryManager.RemoveMediaPath(request.Name, request.Path);
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
2013-08-13 14:41:45 +00:00
|
|
|
finally
|
2013-02-25 03:56:00 +00:00
|
|
|
{
|
2015-03-19 03:47:21 +00:00
|
|
|
Task.Run(() =>
|
2013-11-27 02:38:11 +00:00
|
|
|
{
|
2015-03-19 03:47:21 +00:00
|
|
|
// No need to start if scanning the library because it will handle it
|
|
|
|
if (request.RefreshLibrary)
|
|
|
|
{
|
2017-06-23 16:04:45 +00:00
|
|
|
_libraryManager.ValidateMediaLibrary(new SimpleProgress<double>(), CancellationToken.None);
|
2015-03-19 03:47:21 +00: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 17:05:39 +00:00
|
|
|
}
|
2013-02-25 03:56:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|