Fans the frozen ETag/If-Match/412 recipe (Block reference, #253) onto the Playlist aggregate: - ReplacePlaylistItems command carries ExpectedVersion; the handler runs CheckVersion as a standalone Either after validation (so a stale write survives as 412, not flattened to 422 by Apply/Join), bumps Version unconditionally before saving, and persists via SaveChangesWithConcurrencyGuard (EF concurrency-token backstop). - PlaylistViewModel carries Version; the items GET sets a strong ETag and the PUT parses If-Match, threads it into the command, and returns the refreshed ETag on success (400 on a malformed If-Match). - Sibling item-adding handlers (AddItemsToPlaylist, AddMovie/Episode/ Season/ShowToPlaylist) bump Version too, since they mutate the same editor-visible item list. - SPA: playlists.ts exposes getPlaylistItemsWithMeta and an If-Match-aware updatePlaylist; PlaylistEditor holds the ETag in a ref, round-trips it on save, and opens a "changed elsewhere" ConfirmDialog on 412 (mirrors BlockEditor). Tests: new ReplacePlaylistItemsHandlerConcurrencyTests (stale/match/ force-write/no-op-bump/racing-save), new PlaylistController tests (ETag on GET items, 400/412/thread-version/force-write on PUT), and a vitest 412-conflict-dialog test for PlaylistsScreen. dotnet test: 1304/1304 green. web: npm run typecheck clean, npm run build clean, vitest 664/664 green. Ref #253 PR2.
161 lines
6.5 KiB
C#
161 lines
6.5 KiB
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Interfaces.Repositories;
|
|
using ErsatzTV.Infrastructure.Data;
|
|
using ErsatzTV.Infrastructure.Extensions;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public class AddItemsToPlaylistHandler : IRequestHandler<AddItemsToPlaylist, Either<BaseError, Unit>>
|
|
{
|
|
private readonly IDbContextFactory<TvContext> _dbContextFactory;
|
|
private readonly IMovieRepository _movieRepository;
|
|
private readonly ITelevisionRepository _televisionRepository;
|
|
|
|
public AddItemsToPlaylistHandler(
|
|
IDbContextFactory<TvContext> dbContextFactory,
|
|
IMovieRepository movieRepository,
|
|
ITelevisionRepository televisionRepository)
|
|
{
|
|
_dbContextFactory = dbContextFactory;
|
|
_movieRepository = movieRepository;
|
|
_televisionRepository = televisionRepository;
|
|
}
|
|
|
|
public async Task<Either<BaseError, Unit>> Handle(AddItemsToPlaylist request, CancellationToken cancellationToken)
|
|
{
|
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken);
|
|
Validation<BaseError, Playlist> validation = await Validate(dbContext, request, cancellationToken);
|
|
return await validation.Apply(c => ApplyAddItemsRequest(dbContext, c, request, cancellationToken));
|
|
}
|
|
|
|
private static async Task<Unit> ApplyAddItemsRequest(
|
|
TvContext dbContext,
|
|
Playlist playlist,
|
|
AddItemsToPlaylist request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
var allItems = new Dictionary<CollectionType, List<int>>
|
|
{
|
|
{ CollectionType.Movie, request.MovieIds },
|
|
{ CollectionType.TelevisionShow, request.ShowIds },
|
|
{ CollectionType.TelevisionSeason, request.SeasonIds },
|
|
{ CollectionType.Episode, request.EpisodeIds },
|
|
{ CollectionType.Artist, request.ArtistIds },
|
|
{ CollectionType.MusicVideo, request.MusicVideoIds },
|
|
{ CollectionType.OtherVideo, request.OtherVideoIds },
|
|
{ CollectionType.Song, request.SongIds },
|
|
{ CollectionType.Image, request.ImageIds },
|
|
{ CollectionType.RemoteStream, request.RemoteStreamIds }
|
|
};
|
|
|
|
int index = playlist.Items.Count > 0 ? playlist.Items.Max(i => i.Index) + 1 : 0;
|
|
|
|
foreach ((CollectionType collectionType, List<int> ids) in allItems)
|
|
{
|
|
foreach (int id in ids)
|
|
{
|
|
var item = new PlaylistItem
|
|
{
|
|
Index = index++,
|
|
CollectionType = collectionType,
|
|
MediaItemId = id,
|
|
PlaybackOrder = PlaybackOrder.Shuffle,
|
|
IncludeInProgramGuide = true
|
|
};
|
|
|
|
playlist.Items.Add(item);
|
|
}
|
|
}
|
|
|
|
// Mutates the playlist's editor-visible item list, so bump the concurrency token (issue #253).
|
|
playlist.Version++;
|
|
|
|
await dbContext.SaveChangesAsync(cancellationToken);
|
|
|
|
return Unit.Default;
|
|
}
|
|
|
|
private async Task<Validation<BaseError, Playlist>> Validate(
|
|
TvContext dbContext,
|
|
AddItemsToPlaylist request,
|
|
CancellationToken cancellationToken) =>
|
|
(await PlaylistMustExist(dbContext, request, cancellationToken),
|
|
await ValidateMovies(request),
|
|
await ValidateShows(request),
|
|
await ValidateSeasons(request),
|
|
await ValidateEpisodes(request),
|
|
await ValidateMediaItems(dbContext, request, cancellationToken))
|
|
.Apply((collection, _, _, _, _, _) => collection);
|
|
|
|
private static async Task<Validation<BaseError, Playlist>> PlaylistMustExist(
|
|
TvContext dbContext,
|
|
AddItemsToPlaylist request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
Option<Playlist> maybePlaylist = await dbContext.Playlists
|
|
.Include(c => c.Items)
|
|
.SelectOneAsync(c => c.Id, c => c.Id == request.PlaylistId, cancellationToken);
|
|
|
|
return maybePlaylist.ToValidation<BaseError>("Playlist does not exist.")
|
|
.Bind(playlist => playlist.IsSystem
|
|
? BaseError.New("Cannot add items to system (generated) playlist")
|
|
: Success<BaseError, Playlist>(playlist));
|
|
}
|
|
|
|
private Task<Validation<BaseError, Unit>> ValidateMovies(AddItemsToPlaylist request) =>
|
|
_movieRepository.AllMoviesExist(request.MovieIds)
|
|
.Map(Optional)
|
|
.Filter(v => v == true)
|
|
.MapT(_ => Unit.Default)
|
|
.Map(v => v.ToValidation<BaseError>("Movie does not exist"));
|
|
|
|
private Task<Validation<BaseError, Unit>> ValidateShows(AddItemsToPlaylist request) =>
|
|
_televisionRepository.AllShowsExist(request.ShowIds)
|
|
.Map(Optional)
|
|
.Filter(v => v == true)
|
|
.MapT(_ => Unit.Default)
|
|
.Map(v => v.ToValidation<BaseError>("Show does not exist"));
|
|
|
|
private Task<Validation<BaseError, Unit>> ValidateSeasons(AddItemsToPlaylist request) =>
|
|
_televisionRepository.AllSeasonsExist(request.SeasonIds)
|
|
.Map(Optional)
|
|
.Filter(v => v == true)
|
|
.MapT(_ => Unit.Default)
|
|
.Map(v => v.ToValidation<BaseError>("Season does not exist"));
|
|
|
|
private Task<Validation<BaseError, Unit>> ValidateEpisodes(AddItemsToPlaylist request) =>
|
|
_televisionRepository.AllEpisodesExist(request.EpisodeIds)
|
|
.Map(Optional)
|
|
.Filter(v => v == true)
|
|
.MapT(_ => Unit.Default)
|
|
.Map(v => v.ToValidation<BaseError>("Episode does not exist"));
|
|
|
|
private static async Task<Validation<BaseError, Unit>> ValidateMediaItems(
|
|
TvContext dbContext,
|
|
AddItemsToPlaylist request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
List<int> ids = GetRequestedMediaItemIds(request).Distinct().ToList();
|
|
int existingCount = await dbContext.MediaItems
|
|
.CountAsync(mi => ids.Contains(mi.Id), cancellationToken);
|
|
|
|
return existingCount == ids.Count
|
|
? Unit.Default
|
|
: BaseError.New("Media item does not exist");
|
|
}
|
|
|
|
private static IEnumerable<int> GetRequestedMediaItemIds(AddItemsToPlaylist request) =>
|
|
request.MovieIds
|
|
.Append(request.ShowIds)
|
|
.Append(request.SeasonIds)
|
|
.Append(request.EpisodeIds)
|
|
.Append(request.ArtistIds)
|
|
.Append(request.MusicVideoIds)
|
|
.Append(request.OtherVideoIds)
|
|
.Append(request.SongIds)
|
|
.Append(request.ImageIds)
|
|
.Append(request.RemoteStreamIds);
|
|
}
|