* cleanup scanner project * cleanup infrastructure projects * cleanup ffmpeg project * cleanup core project * cleanup app project * cleanup main project * update dependencies * code cleanup
39 lines
1.5 KiB
C#
39 lines
1.5 KiB
C#
using System.Globalization;
|
|
using ErsatzTV.Application.MediaItems;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Infrastructure.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ErsatzTV.Application.Search;
|
|
|
|
public class SearchTelevisionShowsHandler : IRequestHandler<SearchTelevisionShows, List<NamedMediaItemViewModel>>
|
|
{
|
|
private readonly IDbContextFactory<TvContext> _dbContextFactory;
|
|
|
|
public SearchTelevisionShowsHandler(IDbContextFactory<TvContext> dbContextFactory) =>
|
|
_dbContextFactory = dbContextFactory;
|
|
|
|
public async Task<List<NamedMediaItemViewModel>> Handle(
|
|
SearchTelevisionShows request,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
await using TvContext dbContext = await _dbContextFactory.CreateDbContextAsync(cancellationToken);
|
|
return await dbContext.ShowMetadata
|
|
.AsNoTracking()
|
|
.Where(
|
|
s => EF.Functions.Like(
|
|
EF.Functions.Collate(s.Title + " " + s.Year, TvContext.CaseInsensitiveCollation),
|
|
$"%{request.Query}%"))
|
|
.OrderBy(s => EF.Functions.Collate(s.Title, TvContext.CaseInsensitiveCollation))
|
|
.ThenBy(s => s.Year)
|
|
.Take(10)
|
|
.ToListAsync(cancellationToken)
|
|
.Map(list => list.Map(ToNamedMediaItem).ToList());
|
|
}
|
|
|
|
private static NamedMediaItemViewModel ToNamedMediaItem(ShowMetadata show) =>
|
|
new(
|
|
show.ShowId,
|
|
$"{show.Title} ({(show.Year.HasValue ? show.Year.Value.ToString(CultureInfo.InvariantCulture) : "???")})");
|
|
}
|