34 lines
1.4 KiB
C#
34 lines
1.4 KiB
C#
using Dapper;
|
|
using ErsatzTV.Infrastructure.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using static ErsatzTV.Application.MediaCollections.Mapper;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public class GetPagedCollectionsHandler : IRequestHandler<GetPagedCollections, PagedMediaCollectionsViewModel>
|
|
{
|
|
private readonly IDbContextFactory<TvContext> _dbContextFactory;
|
|
|
|
public GetPagedCollectionsHandler(IDbContextFactory<TvContext> dbContextFactory) =>
|
|
_dbContextFactory = dbContextFactory;
|
|
|
|
public async Task<PagedMediaCollectionsViewModel> Handle(
|
|
GetPagedCollections request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken);
|
|
int count = await dbContext.Connection.QuerySingleAsync<int>(@"SELECT COUNT (*) FROM Collection");
|
|
List<MediaCollectionViewModel> page = await dbContext.Collections.FromSqlRaw(
|
|
@"SELECT * FROM Collection
|
|
ORDER BY Name
|
|
COLLATE NOCASE
|
|
LIMIT {0} OFFSET {1}",
|
|
request.PageSize,
|
|
request.PageNum * request.PageSize)
|
|
.ToListAsync(cancellationToken)
|
|
.Map(list => list.Map(ProjectToViewModel).ToList());
|
|
|
|
return new PagedMediaCollectionsViewModel(count, page);
|
|
}
|
|
}
|