mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
69 lines
2.1 KiB
C#
69 lines
2.1 KiB
C#
using System;
|
|
using Bit.App.Abstractions;
|
|
using Google.Analytics;
|
|
using Plugin.Settings.Abstractions;
|
|
|
|
namespace Bit.iOS.Core.Services
|
|
{
|
|
public class GoogleAnalyticsService : IGoogleAnalyticsService
|
|
{
|
|
private readonly ITracker _tracker;
|
|
|
|
public GoogleAnalyticsService(
|
|
IAppIdService appIdService,
|
|
ISettings settings)
|
|
{
|
|
Gai.SharedInstance.DispatchInterval = 10;
|
|
Gai.SharedInstance.TrackUncaughtExceptions = false;
|
|
_tracker = Gai.SharedInstance.GetTracker("UA-81915606-1");
|
|
_tracker.SetAllowIdfaCollection(true);
|
|
_tracker.Set(GaiConstants.ClientId, appIdService.AnonymousAppId);
|
|
|
|
var gaOptOut = settings.GetValueOrDefault(App.Constants.SettingGaOptOut, false);
|
|
SetAppOptOut(gaOptOut);
|
|
}
|
|
|
|
public void TrackAppEvent(string eventName, string label = null)
|
|
{
|
|
TrackEvent("App", eventName, label);
|
|
}
|
|
|
|
public void TrackExtensionEvent(string eventName, string label = null)
|
|
{
|
|
TrackEvent("Extension", eventName, label);
|
|
}
|
|
|
|
public void TrackEvent(string category, string eventName, string label = null)
|
|
{
|
|
var dict = DictionaryBuilder.CreateEvent(category, eventName, label, null).Build();
|
|
_tracker.Send(dict);
|
|
Gai.SharedInstance.Dispatch();
|
|
}
|
|
|
|
public void TrackException(string message, bool fatal)
|
|
{
|
|
var dict = DictionaryBuilder.CreateException(message, fatal).Build();
|
|
_tracker.Send(dict);
|
|
}
|
|
|
|
public void TrackPage(string pageName)
|
|
{
|
|
_tracker.Set(GaiConstants.ScreenName, pageName);
|
|
var dict = DictionaryBuilder.CreateScreenView().Build();
|
|
_tracker.Send(dict);
|
|
}
|
|
|
|
public void Dispatch(Action completionHandler = null)
|
|
{
|
|
Gai.SharedInstance.Dispatch((result) =>
|
|
{
|
|
completionHandler?.Invoke();
|
|
});
|
|
}
|
|
|
|
public void SetAppOptOut(bool optOut)
|
|
{
|
|
Gai.SharedInstance.OptOut = optOut;
|
|
}
|
|
}
|
|
}
|