mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
88 lines
2.8 KiB
C#
88 lines
2.8 KiB
C#
|
using System;
|
|||
|
using System.Linq;
|
|||
|
using System.Net.Http;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
using Wabbajack.BuildServer;
|
|||
|
using Wabbajack.Lib.NexusApi;
|
|||
|
using Wabbajack.Server.DataLayer;
|
|||
|
|
|||
|
namespace Wabbajack.Server.Services
|
|||
|
{
|
|||
|
public class NexusKeyMaintainance : AbstractService<NexusKeyMaintainance, int>
|
|||
|
{
|
|||
|
private SqlService _sql;
|
|||
|
|
|||
|
public NexusKeyMaintainance(ILogger<NexusKeyMaintainance> logger, AppSettings settings, SqlService sql) : base(logger, settings, TimeSpan.FromHours(1))
|
|||
|
{
|
|||
|
_sql = sql;
|
|||
|
}
|
|||
|
|
|||
|
public async Task<NexusApiClient> GetClient()
|
|||
|
{
|
|||
|
var keys = await _sql.GetNexusApiKeysWithCounts(1500);
|
|||
|
foreach (var key in keys)
|
|||
|
{
|
|||
|
return new TrackingClient(_sql, key);
|
|||
|
}
|
|||
|
|
|||
|
return await NexusApiClient.Get();
|
|||
|
}
|
|||
|
|
|||
|
public override async Task<int> Execute()
|
|||
|
{
|
|||
|
var keys = await _sql.GetNexusApiKeysWithCounts(0);
|
|||
|
_logger.Log(LogLevel.Information, $"Verifying {keys.Count} API Keys");
|
|||
|
foreach (var key in keys)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
var client = new TrackingClient(_sql, key);
|
|||
|
|
|||
|
var status = await client.GetUserStatus();
|
|||
|
if (!status.is_premium)
|
|||
|
{
|
|||
|
await _sql.DeleteNexusAPIKey(key.Key);
|
|||
|
continue;
|
|||
|
}
|
|||
|
|
|||
|
var (daily, hourly) = await client.GetRemainingApiCalls();
|
|||
|
await _sql.SetNexusAPIKey(key.Key, daily, hourly);
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
_logger.Log(LogLevel.Warning, "Update error, purging API key");
|
|||
|
await _sql.DeleteNexusAPIKey(key.Key);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return keys.Count;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public class TrackingClient : NexusApiClient
|
|||
|
{
|
|||
|
private SqlService _sql;
|
|||
|
public TrackingClient(SqlService sql, (string Key, int Daily, int Hourly) key) : base(key.Key)
|
|||
|
{
|
|||
|
_sql = sql;
|
|||
|
DailyRemaining = key.Daily;
|
|||
|
HourlyRemaining = key.Hourly;
|
|||
|
}
|
|||
|
|
|||
|
protected virtual async Task UpdateRemaining(HttpResponseMessage response)
|
|||
|
{
|
|||
|
await base.UpdateRemaining(response);
|
|||
|
try
|
|||
|
{
|
|||
|
var dailyRemaining = int.Parse(response.Headers.GetValues("x-rl-daily-remaining").First());
|
|||
|
var hourlyRemaining = int.Parse(response.Headers.GetValues("x-rl-hourly-remaining").First());
|
|||
|
await _sql.SetNexusAPIKey(ApiKey, dailyRemaining, hourlyRemaining);
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|