96 lines
2.6 KiB
C#
96 lines
2.6 KiB
C#
namespace Mapbox.Unity.Telemetry
|
|
{
|
|
using System.Collections.Generic;
|
|
using System.Collections;
|
|
using Mapbox.Json;
|
|
using System;
|
|
using Mapbox.Unity.Utilities;
|
|
using UnityEngine;
|
|
using System.Text;
|
|
|
|
public class TelemetryFallback : ITelemetryLibrary
|
|
{
|
|
string _url;
|
|
|
|
static ITelemetryLibrary _instance = new TelemetryFallback();
|
|
public static ITelemetryLibrary Instance
|
|
{
|
|
get
|
|
{
|
|
return _instance;
|
|
}
|
|
}
|
|
|
|
public void Initialize(string accessToken)
|
|
{
|
|
_url = string.Format("{0}events/v2?access_token={1}", Mapbox.Utils.Constants.EventsAPI, accessToken);
|
|
}
|
|
|
|
public void SendTurnstile()
|
|
{
|
|
var ticks = DateTime.Now.Ticks;
|
|
if (ShouldPostTurnstile(ticks))
|
|
{
|
|
Runnable.Run(PostWWW(_url, GetPostBody()));
|
|
PlayerPrefs.SetString(Constants.Path.TELEMETRY_TURNSTILE_LAST_TICKS_FALLBACK_KEY, ticks.ToString());
|
|
}
|
|
}
|
|
|
|
string GetPostBody()
|
|
{
|
|
List<Dictionary<string, object>> eventList = new List<Dictionary<string, object>>();
|
|
Dictionary<string, object> jsonDict = new Dictionary<string, object>();
|
|
|
|
long unixTimestamp = (long)Mapbox.Utils.UnixTimestampUtils.To(DateTime.UtcNow);
|
|
|
|
jsonDict.Add("event", "appUserTurnstile");
|
|
jsonDict.Add("created", unixTimestamp);
|
|
jsonDict.Add("userId", SystemInfo.deviceUniqueIdentifier);
|
|
jsonDict.Add("enabled.telemetry", false);
|
|
eventList.Add(jsonDict);
|
|
|
|
var jsonString = JsonConvert.SerializeObject(eventList);
|
|
return jsonString;
|
|
}
|
|
|
|
bool ShouldPostTurnstile(long ticks)
|
|
{
|
|
var date = new DateTime(ticks);
|
|
var longAgo = DateTime.Now.AddDays(-100).Ticks.ToString();
|
|
var lastDateString = PlayerPrefs.GetString(Constants.Path.TELEMETRY_TURNSTILE_LAST_TICKS_FALLBACK_KEY, longAgo);
|
|
long lastTicks = 0;
|
|
long.TryParse(lastDateString, out lastTicks);
|
|
var lastDate = new DateTime(lastTicks);
|
|
var timeSpan = date - lastDate;
|
|
return timeSpan.Days >= 1;
|
|
}
|
|
|
|
IEnumerator PostWWW(string url, string bodyJsonString)
|
|
{
|
|
byte[] bodyRaw = Encoding.UTF8.GetBytes(bodyJsonString);
|
|
var headers = new Dictionary<string, string>();
|
|
headers.Add("Content-Type", "application/json");
|
|
headers.Add("user-agent", GetUserAgent());
|
|
|
|
var www = new WWW(url, bodyRaw, headers);
|
|
yield return www;
|
|
}
|
|
|
|
static string GetUserAgent()
|
|
{
|
|
var userAgent = string.Format("{0}/{1}/{2} MapboxEventsUnity{3}/{4}",
|
|
Application.identifier,
|
|
Application.version,
|
|
"0",
|
|
Application.platform,
|
|
Constants.SDK_VERSION
|
|
);
|
|
return userAgent;
|
|
}
|
|
|
|
public void SetLocationCollectionState(bool enable)
|
|
{
|
|
// empty.
|
|
}
|
|
}
|
|
} |