mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Infrastructure.Data; |
|
using ErsatzTV.Infrastructure.Extensions; |
|
using Microsoft.EntityFrameworkCore; |
|
|
|
namespace ErsatzTV.Application.MediaCollections; |
|
|
|
public class DeletePlaylistHandler(IDbContextFactory<TvContext> dbContextFactory) |
|
: IRequestHandler<DeletePlaylist, Option<BaseError>> |
|
{ |
|
public async Task<Option<BaseError>> Handle(DeletePlaylist request, CancellationToken cancellationToken) |
|
{ |
|
await using TvContext dbContext = await dbContextFactory.CreateDbContextAsync(cancellationToken); |
|
|
|
Option<Playlist> maybePlaylist = await dbContext.Playlists |
|
.SelectOneAsync(p => p.Id, p => p.Id == request.PlaylistId); |
|
|
|
foreach (Playlist playlist in maybePlaylist) |
|
{ |
|
dbContext.Playlists.Remove(playlist); |
|
await dbContext.SaveChangesAsync(cancellationToken); |
|
} |
|
|
|
return maybePlaylist.Match( |
|
_ => Option<BaseError>.None, |
|
() => BaseError.New($"Playlist {request.PlaylistId} does not exist.")); |
|
} |
|
}
|
|
|