Started to add support for deskmetrics

This commit is contained in:
kay.one
2012-01-24 19:09:49 -08:00
parent 02cb12bdb8
commit b225db9aaf
93 changed files with 50336 additions and 5459 deletions
@@ -0,0 +1,39 @@
using System.Linq;
using DeskMetrics;
using Ninject;
using NzbDrone.Common;
namespace NzbDrone.Core.Providers
{
public class AnalyticsProvider
{
private readonly IDeskMetricsClient _deskMetricsClient;
public const string DESKMETRICS_ID = "4ea8d347a14ad71442000002";
[Inject]
public AnalyticsProvider(IDeskMetricsClient deskMetricsClient)
{
_deskMetricsClient = deskMetricsClient;
}
public AnalyticsProvider()
{
}
public virtual void Checkpoint()
{
if (_deskMetricsClient.Started)
{
_deskMetricsClient.Stop();
}
if (EnviromentProvider.IsNewInstall)
{
_deskMetricsClient.RegisterInstall();
}
_deskMetricsClient.Start();
}
}
}