65 lines
2.1 KiB
C#
65 lines
2.1 KiB
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Interfaces.Locking;
|
|
using ErsatzTV.Core.Interfaces.Metadata;
|
|
using ErsatzTV.Core.Interfaces.Repositories;
|
|
using ErsatzTV.Core.Interfaces.Search;
|
|
using ErsatzTV.Core.Interfaces.Trakt;
|
|
using ErsatzTV.Infrastructure.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public class MatchTraktListItemsHandler : TraktCommandBase,
|
|
IRequestHandler<MatchTraktListItems, Either<BaseError, Unit>>
|
|
{
|
|
private readonly IDbContextFactory<TvContext> _dbContextFactory;
|
|
private readonly IEntityLocker _entityLocker;
|
|
|
|
public MatchTraktListItemsHandler(
|
|
ITraktApiClient traktApiClient,
|
|
ISearchRepository searchRepository,
|
|
ISearchIndex searchIndex,
|
|
IFallbackMetadataProvider fallbackMetadataProvider,
|
|
ILanguageCodeService languageCodeService,
|
|
IDbContextFactory<TvContext> dbContextFactory,
|
|
ILogger<MatchTraktListItemsHandler> logger,
|
|
IEntityLocker entityLocker) : base(
|
|
traktApiClient,
|
|
searchRepository,
|
|
searchIndex,
|
|
fallbackMetadataProvider,
|
|
languageCodeService,
|
|
logger)
|
|
{
|
|
_dbContextFactory = dbContextFactory;
|
|
_entityLocker = entityLocker;
|
|
}
|
|
|
|
public async Task<Either<BaseError, Unit>> Handle(
|
|
MatchTraktListItems request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
try
|
|
{
|
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken);
|
|
|
|
Validation<BaseError, TraktList> validation = await TraktListMustExist(
|
|
dbContext,
|
|
request.TraktListId,
|
|
cancellationToken);
|
|
return await validation.Match(
|
|
async l => await MatchListItems(dbContext, l, cancellationToken).MapT(_ => Unit.Default),
|
|
error => Task.FromResult<Either<BaseError, Unit>>(error.Join()));
|
|
}
|
|
finally
|
|
{
|
|
if (request.Unlock)
|
|
{
|
|
_entityLocker.UnlockTrakt();
|
|
}
|
|
}
|
|
}
|
|
}
|