mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
5aefb46790
Check on ProviderBulkUpdatedEvent as well Fixes #2082
65 lines
2.2 KiB
C#
65 lines
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.Localization;
|
|
using NzbDrone.Core.ThingiProvider.Events;
|
|
|
|
namespace NzbDrone.Core.HealthCheck.Checks
|
|
{
|
|
[CheckOn(typeof(ProviderAddedEvent<IIndexer>))]
|
|
[CheckOn(typeof(ProviderUpdatedEvent<IIndexer>))]
|
|
[CheckOn(typeof(ProviderDeletedEvent<IIndexer>))]
|
|
[CheckOn(typeof(ProviderBulkUpdatedEvent<IIndexer>))]
|
|
[CheckOn(typeof(ProviderBulkDeletedEvent<IIndexer>))]
|
|
public class IndexerVIPCheck : HealthCheckBase
|
|
{
|
|
private readonly IIndexerFactory _indexerFactory;
|
|
|
|
public IndexerVIPCheck(IIndexerFactory indexerFactory, ILocalizationService localizationService)
|
|
: base(localizationService)
|
|
{
|
|
_indexerFactory = indexerFactory;
|
|
}
|
|
|
|
public override HealthCheck Check()
|
|
{
|
|
var indexers = _indexerFactory.Enabled(false);
|
|
var expiringProviders = new List<IIndexer>();
|
|
|
|
foreach (var provider in indexers)
|
|
{
|
|
var settingsType = provider.Definition.Settings.GetType();
|
|
var vipProp = settingsType.GetProperty("VipExpiration");
|
|
|
|
if (vipProp == null)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
var expiration = (string)vipProp.GetValue(provider.Definition.Settings);
|
|
|
|
if (expiration.IsNotNullOrWhiteSpace() &&
|
|
DateTime.Parse(expiration).Between(DateTime.Now, DateTime.Now.AddDays(7)))
|
|
{
|
|
expiringProviders.Add(provider);
|
|
}
|
|
}
|
|
|
|
if (!expiringProviders.Empty())
|
|
{
|
|
return new HealthCheck(GetType(),
|
|
HealthCheckResult.Warning,
|
|
_localizationService.GetLocalizedString("IndexerVipExpiringHealthCheckMessage", new Dictionary<string, object>
|
|
{
|
|
{ "indexerNames", string.Join(", ", expiringProviders.Select(v => v.Definition.Name).ToArray()) }
|
|
}),
|
|
"#indexer-vip-expiring");
|
|
}
|
|
|
|
return new HealthCheck(GetType());
|
|
}
|
|
}
|
|
}
|