Adds LocalLibrariesController (L1-L7: list/get/create/update/delete/move-path/ path-exists) wrapping the existing local-library MediatR commands, mapping to the shared S0 response DTOs. Per design #202 §A.1/§C5/§C6: - 404 for L4/L5/L6 comes from a controller pre-check (GetLocalLibraryById is None), not the handler -- .Apply/.ToEitherAsync both .Join() a NotFoundError into a plain 422, so relying on the handler would be dead code. This is check-then-act; a delete racing the pre-check falls through to the handler's 422, documented in the controller. - L4/L5 409 via IEntityLocker.IsLibraryLocked(id); L6 resolves the source library from the path id (new ILibraryRepository.GetLibraryIdForPath) before its own lock check. - MoveLocalLibraryPathHandler gains same-MediaKind and different-library validation (finding 3) -- Blazor only filtered these client-side in the move dialog, so an API/MCP client could bypass them. - CreateLocalLibraryHandler/UpdateLocalLibraryHandler gain a shared NewPathsMustExist validation (LocalLibraryHandlerBase) that Directory.Exists- checks only new paths (Id < 1); existing rows stay exempt so an unmounted share doesn't block a rename. L7 (path-exists) is a controller-local IFileSystem check with no command. Tests: controller route/mediator-arg tests incl. 404-pre-check vs fall-through-422 and 409-lock cases; handler tests for the move-path cross-kind/same-library 422s, new-path 422 (missing/mixed), and a lossless round-trip proving local paths are identified by normalized path string, not id. Full solution test suite (Scanner/Core/Architecture/Tests/Infrastructure) green, 0 regressions. Deviations: none from the S1 slice description. Did not touch MediaSourceRepository.cs or any Plex/Jellyfin/Emby file (S2/S3 scope). Did not run the OpenAPI regen scripts (separate gate after S1-S3 merge per design §E).
160 lines
6.3 KiB
C#
160 lines
6.3 KiB
C#
using System.IO.Abstractions;
|
|
using System.Threading.Channels;
|
|
using Dapper;
|
|
using ErsatzTV.Application.MediaSources;
|
|
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Interfaces.Locking;
|
|
using ErsatzTV.Core.Interfaces.Search;
|
|
using ErsatzTV.Infrastructure.Data;
|
|
using ErsatzTV.Infrastructure.Extensions;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using static ErsatzTV.Application.Libraries.Mapper;
|
|
|
|
namespace ErsatzTV.Application.Libraries;
|
|
|
|
public class UpdateLocalLibraryHandler : LocalLibraryHandlerBase,
|
|
IRequestHandler<UpdateLocalLibrary, Either<BaseError, LocalLibraryViewModel>>
|
|
{
|
|
private readonly IDbContextFactory<TvContext> _dbContextFactory;
|
|
private readonly IEntityLocker _entityLocker;
|
|
private readonly IFileSystem _fileSystem;
|
|
private readonly ChannelWriter<IScannerBackgroundServiceRequest> _scannerWorkerChannel;
|
|
private readonly ISearchIndex _searchIndex;
|
|
|
|
public UpdateLocalLibraryHandler(
|
|
ChannelWriter<IScannerBackgroundServiceRequest> scannerWorkerChannel,
|
|
IEntityLocker entityLocker,
|
|
IFileSystem fileSystem,
|
|
ISearchIndex searchIndex,
|
|
IDbContextFactory<TvContext> dbContextFactory)
|
|
{
|
|
_scannerWorkerChannel = scannerWorkerChannel;
|
|
_entityLocker = entityLocker;
|
|
_fileSystem = fileSystem;
|
|
_searchIndex = searchIndex;
|
|
_dbContextFactory = dbContextFactory;
|
|
}
|
|
|
|
public async Task<Either<BaseError, LocalLibraryViewModel>> Handle(
|
|
UpdateLocalLibrary request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken);
|
|
Validation<BaseError, Parameters> validation =
|
|
await Validate(_fileSystem, dbContext, request, cancellationToken);
|
|
return await validation.Apply(parameters => UpdateLocalLibrary(dbContext, parameters));
|
|
}
|
|
|
|
private async Task<LocalLibraryViewModel> UpdateLocalLibrary(TvContext dbContext, Parameters parameters)
|
|
{
|
|
(LocalLibrary existing, LocalLibrary incoming) = parameters;
|
|
existing.Name = incoming.Name;
|
|
|
|
var toAdd = incoming.Paths
|
|
.Filter(p => existing.Paths.All(ep => NormalizePath(ep.Path) != NormalizePath(p.Path)))
|
|
.ToList();
|
|
var toRemove = existing.Paths
|
|
.Filter(ep => incoming.Paths.All(p => NormalizePath(p.Path) != NormalizePath(ep.Path)))
|
|
.ToList();
|
|
|
|
var toRemoveIds = toRemove.Map(lp => lp.Id).ToHashSet();
|
|
|
|
var changeCount = 0;
|
|
|
|
// save item ids first; will need to remove from search index
|
|
List<int> itemsToRemove = await dbContext.MediaItems
|
|
.AsNoTracking()
|
|
.Filter(mi => toRemoveIds.Contains(mi.LibraryPathId))
|
|
.Map(mi => mi.Id)
|
|
.ToListAsync();
|
|
|
|
changeCount += await dbContext.Connection.ExecuteAsync(
|
|
"DELETE FROM MediaItem WHERE LibraryPathId IN @Ids",
|
|
new { Ids = toRemoveIds });
|
|
|
|
// delete all library folders (children first)
|
|
IOrderedQueryable<LibraryFolder> orderedFolders = dbContext.LibraryFolders
|
|
.AsNoTracking()
|
|
.Filter(lf => toRemoveIds.Contains(lf.LibraryPathId))
|
|
.OrderByDescending(lp => lp.Path.Length);
|
|
|
|
foreach (LibraryFolder folder in orderedFolders)
|
|
{
|
|
changeCount += await dbContext.Connection.ExecuteAsync(
|
|
"DELETE FROM LibraryFolder WHERE Id = @LibraryFolderId",
|
|
new { LibraryFolderId = folder.Id });
|
|
}
|
|
|
|
changeCount += await dbContext.LibraryPaths
|
|
.Filter(lp => toRemoveIds.Contains(lp.Id))
|
|
.ExecuteDeleteAsync();
|
|
|
|
existing.Paths.AddRange(toAdd);
|
|
|
|
changeCount += await dbContext.SaveChangesAsync();
|
|
|
|
if (changeCount > 0)
|
|
{
|
|
await _searchIndex.RemoveItems(itemsToRemove);
|
|
_searchIndex.Commit();
|
|
|
|
if (_entityLocker.LockLibrary(existing.Id))
|
|
{
|
|
try
|
|
{
|
|
await _scannerWorkerChannel.WriteAsync(new ForceScanLocalLibrary(existing.Id));
|
|
}
|
|
catch
|
|
{
|
|
// the scanner only unlocks when it receives the message; if the enqueue fails
|
|
// after we acquired the lock, release it here or it is held forever.
|
|
_entityLocker.UnlockLibrary(existing.Id);
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
|
|
return ProjectToViewModel(existing);
|
|
}
|
|
|
|
private static Task<Validation<BaseError, Parameters>> Validate(
|
|
IFileSystem fileSystem,
|
|
TvContext dbContext,
|
|
UpdateLocalLibrary request,
|
|
CancellationToken cancellationToken) =>
|
|
LocalLibraryMustExist(dbContext, request, cancellationToken)
|
|
.BindT(parameters => NameMustBeValid(request, parameters.Incoming).MapT(_ => parameters))
|
|
.BindT(parameters => PathsMustBeValid(dbContext, parameters.Incoming, parameters.Existing.Id)
|
|
.MapT(_ => parameters))
|
|
.BindT(parameters => NewPathsMustExist(fileSystem, parameters.Incoming).MapT(_ => parameters));
|
|
|
|
private static Task<Validation<BaseError, Parameters>> LocalLibraryMustExist(
|
|
TvContext dbContext,
|
|
UpdateLocalLibrary request,
|
|
CancellationToken cancellationToken) =>
|
|
dbContext.LocalLibraries
|
|
.Include(ll => ll.Paths)
|
|
.SelectOneAsync(ll => ll.Id, ll => ll.Id == request.Id, cancellationToken)
|
|
.MapT(existing =>
|
|
{
|
|
var incoming = new LocalLibrary
|
|
{
|
|
Name = request.Name,
|
|
Paths = request.Paths.Map(p => new LibraryPath { Id = p.Id, Path = p.Path }).ToList(),
|
|
MediaKind = existing.MediaKind,
|
|
MediaSourceId = existing.Id
|
|
};
|
|
|
|
return new Parameters(existing, incoming);
|
|
})
|
|
.Map(o => o.ToValidation<BaseError>("LocalLibrary does not exist."));
|
|
|
|
private static string NormalizePath(string path) =>
|
|
Path.GetFullPath(new Uri(path).LocalPath)
|
|
.TrimEnd(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar)
|
|
.ToUpperInvariant();
|
|
|
|
private sealed record Parameters(LocalLibrary Existing, LocalLibrary Incoming);
|
|
}
|