mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
59 lines
1.9 KiB
C#
59 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wabbajack.Common
|
|
{
|
|
public class Metrics
|
|
{
|
|
public const string Downloading = "downloading";
|
|
public const string BeginInstall = "begin_install";
|
|
public const string FinishInstall = "finish_install";
|
|
private static AsyncLock _creationLock = new AsyncLock();
|
|
|
|
public static async ValueTask<string> GetMetricsKey()
|
|
{
|
|
using var _ = await _creationLock.WaitAsync();
|
|
if (!Utils.HaveEncryptedJson(Consts.MetricsKeyHeader))
|
|
{
|
|
var key = Utils.MakeRandomKey();
|
|
await key.ToEcryptedJson(Consts.MetricsKeyHeader);
|
|
return key;
|
|
}
|
|
|
|
try
|
|
{
|
|
return await Utils.FromEncryptedJson<string>(Consts.MetricsKeyHeader);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
var key = Utils.MakeRandomKey();
|
|
await key.ToEcryptedJson(Consts.MetricsKeyHeader);
|
|
return key;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// This is all we track for metrics, action, and value. The action will be like
|
|
/// "downloaded", the value "Joe's list".
|
|
/// </summary>
|
|
/// <param name="action"></param>
|
|
/// <param name="value"></param>
|
|
public static async Task Send(string action, string value)
|
|
{
|
|
var client = new HttpClient();
|
|
try
|
|
{
|
|
client.DefaultRequestHeaders.Add(Consts.MetricsKeyHeader, await GetMetricsKey());
|
|
await client.GetAsync($"{Consts.WabbajackBuildServerUri}metrics/{action}/{value}");
|
|
}
|
|
catch (Exception)
|
|
{
|
|
// ignored
|
|
}
|
|
}
|
|
}
|
|
}
|