You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Analytics
|
|
|
|
|
{
|
|
|
|
|
public interface IAnalyticsService
|
|
|
|
|
{
|
|
|
|
|
bool IsEnabled { get; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class AnalyticsService : IAnalyticsService
|
|
|
|
|
{
|
|
|
|
|
private readonly IConfigFileProvider _configFileProvider;
|
|
|
|
|
|
|
|
|
|
public AnalyticsService(IConfigFileProvider configFileProvider)
|
|
|
|
|
{
|
|
|
|
|
_configFileProvider = configFileProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsEnabled => _configFileProvider.AnalyticsEnabled && RuntimeInfoBase.IsProduction;
|
|
|
|
|
}
|
|
|
|
|
}
|