* start to add smart collections * add smart collection table; delete smart collection * overwrite smart collections * support scheduling smart collections * update changelog
47 lines
1.7 KiB
C#
47 lines
1.7 KiB
C#
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Dapper;
|
|
using ErsatzTV.Infrastructure.Data;
|
|
using LanguageExt;
|
|
using MediatR;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using static ErsatzTV.Application.MediaCollections.Mapper;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections.Queries
|
|
{
|
|
public class GetPagedSmartCollectionsHandler : IRequestHandler<GetPagedSmartCollections, PagedSmartCollectionsViewModel>
|
|
{
|
|
private readonly IDbConnection _dbConnection;
|
|
private readonly IDbContextFactory<TvContext> _dbContextFactory;
|
|
|
|
public GetPagedSmartCollectionsHandler(IDbContextFactory<TvContext> dbContextFactory, IDbConnection dbConnection)
|
|
{
|
|
_dbContextFactory = dbContextFactory;
|
|
_dbConnection = dbConnection;
|
|
}
|
|
|
|
public async Task<PagedSmartCollectionsViewModel> Handle(
|
|
GetPagedSmartCollections request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
int count = await _dbConnection.QuerySingleAsync<int>(@"SELECT COUNT (*) FROM SmartCollection");
|
|
|
|
await using TvContext dbContext = _dbContextFactory.CreateDbContext();
|
|
List<SmartCollectionViewModel> page = await dbContext.SmartCollections.FromSqlRaw(
|
|
@"SELECT * FROM SmartCollection
|
|
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 PagedSmartCollectionsViewModel(count, page);
|
|
}
|
|
}
|
|
}
|