Files
ersatztv/ErsatzTV/Services/RunOnce/RebuildSearchIndexService.cs
T

48 lines
1.5 KiB
C#

using ErsatzTV.Application.Search;
using ErsatzTV.Core;
using ErsatzTV.Core.Interfaces.Metadata;
using ErsatzTV.Core.Search;
using MediatR;
namespace ErsatzTV.Services.RunOnce;
public class RebuildSearchIndexService : BackgroundService
{
private readonly IServiceScopeFactory _serviceScopeFactory;
private readonly SystemStartup _systemStartup;
public RebuildSearchIndexService(IServiceScopeFactory serviceScopeFactory, SystemStartup systemStartup)
{
_serviceScopeFactory = serviceScopeFactory;
_systemStartup = systemStartup;
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
await Task.Yield();
await _systemStartup.WaitForDatabase(stoppingToken);
if (stoppingToken.IsCancellationRequested)
{
return;
}
await _systemStartup.WaitForDatabaseCleaned(stoppingToken);
if (stoppingToken.IsCancellationRequested)
{
return;
}
using IServiceScope scope = _serviceScopeFactory.CreateScope();
ILanguageCodeCache languageCodeCache = scope.ServiceProvider.GetRequiredService<ILanguageCodeCache>();
await languageCodeCache.Load(stoppingToken);
IMediator mediator = scope.ServiceProvider.GetRequiredService<IMediator>();
await mediator.Send(new RebuildSearchIndex(), stoppingToken);
ISmartCollectionCache cache = scope.ServiceProvider.GetRequiredService<ISmartCollectionCache>();
await cache.Refresh(stoppingToken);
}
}