|
|
|
using System;
|
|
|
|
using System.Net;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using Octokit;
|
|
|
|
using StabilityMatrix.Core.Api;
|
|
|
|
using StabilityMatrix.Core.Attributes;
|
|
|
|
using StabilityMatrix.Core.Models;
|
|
|
|
using StabilityMatrix.Core.Models.Api.Lykos;
|
|
|
|
using StabilityMatrix.Core.Services;
|
|
|
|
using ApiException = Refit.ApiException;
|
|
|
|
|
|
|
|
namespace StabilityMatrix.Avalonia.Services;
|
|
|
|
|
|
|
|
[Singleton(typeof(IAccountsService))]
|
|
|
|
public class AccountsService : IAccountsService
|
|
|
|
{
|
|
|
|
private readonly ILogger<AccountsService> logger;
|
|
|
|
private readonly ISecretsManager secretsManager;
|
|
|
|
private readonly ILykosAuthApi lykosAuthApi;
|
|
|
|
private readonly ICivitTRPCApi civitTRPCApi;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public event EventHandler<LykosAccountStatusUpdateEventArgs>? LykosAccountStatusUpdate;
|
|
|
|
|
|
|
|
public LykosAccountStatusUpdateEventArgs? LykosStatus { get; private set; }
|
|
|
|
|
|
|
|
public AccountsService(
|
|
|
|
ILogger<AccountsService> logger,
|
|
|
|
ISecretsManager secretsManager,
|
|
|
|
ILykosAuthApi lykosAuthApi,
|
|
|
|
ICivitTRPCApi civitTRPCApi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
this.logger = logger;
|
|
|
|
this.secretsManager = secretsManager;
|
|
|
|
this.lykosAuthApi = lykosAuthApi;
|
|
|
|
this.civitTRPCApi = civitTRPCApi;
|
|
|
|
|
|
|
|
// Update our own status when the Lykos account status changes
|
|
|
|
LykosAccountStatusUpdate += (_, args) => LykosStatus = args;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task LykosLoginAsync(string email, string password)
|
|
|
|
{
|
|
|
|
var secrets = await secretsManager.SafeLoadAsync();
|
|
|
|
|
|
|
|
var tokens = await lykosAuthApi.PostLogin(new PostLoginRequest(email, password));
|
|
|
|
|
|
|
|
await secretsManager.SaveAsync(secrets with { LykosAccount = tokens });
|
|
|
|
|
|
|
|
await RefreshAsync();
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task LykosSignupAsync(string email, string password, string username)
|
|
|
|
{
|
|
|
|
var secrets = await secretsManager.SafeLoadAsync();
|
|
|
|
|
|
|
|
var tokens = await lykosAuthApi.PostAccount(
|
|
|
|
new PostAccountRequest(email, password, password, username)
|
|
|
|
);
|
|
|
|
|
|
|
|
secrets = secrets with { LykosAccount = tokens };
|
|
|
|
|
|
|
|
await secretsManager.SaveAsync(secrets);
|
|
|
|
|
|
|
|
await RefreshLykosAsync(secrets);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task LykosLogoutAsync()
|
|
|
|
{
|
|
|
|
var secrets = await secretsManager.SafeLoadAsync();
|
|
|
|
await secretsManager.SaveAsync(secrets with { LykosAccount = null });
|
|
|
|
|
|
|
|
OnLykosAccountStatusUpdate(LykosAccountStatusUpdateEventArgs.Disconnected);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task RefreshAsync()
|
|
|
|
{
|
|
|
|
var secrets = await secretsManager.SafeLoadAsync();
|
|
|
|
|
|
|
|
await RefreshLykosAsync(secrets);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async Task RefreshLykosAsync(Secrets secrets)
|
|
|
|
{
|
|
|
|
if (secrets.LykosAccount is not null)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
var user = await lykosAuthApi.GetUserSelf();
|
|
|
|
|
|
|
|
OnLykosAccountStatusUpdate(
|
|
|
|
new LykosAccountStatusUpdateEventArgs { IsConnected = true, User = user }
|
|
|
|
);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
catch (OperationCanceledException)
|
|
|
|
{
|
|
|
|
logger.LogWarning("Timed out while fetching Lykos Auth user info");
|
|
|
|
}
|
|
|
|
catch (ApiException e)
|
|
|
|
{
|
|
|
|
if (e.StatusCode is HttpStatusCode.Unauthorized) { }
|
|
|
|
else
|
|
|
|
{
|
|
|
|
logger.LogWarning(e, "Failed to get user info from Lykos");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OnLykosAccountStatusUpdate(LykosAccountStatusUpdateEventArgs.Disconnected);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OnLykosAccountStatusUpdate(LykosAccountStatusUpdateEventArgs e)
|
|
|
|
{
|
|
|
|
if (!e.IsConnected && LykosStatus?.IsConnected == true)
|
|
|
|
{
|
|
|
|
logger.LogInformation("Lykos account disconnected");
|
|
|
|
}
|
|
|
|
else if (e.IsConnected && LykosStatus?.IsConnected == false)
|
|
|
|
{
|
|
|
|
logger.LogInformation(
|
|
|
|
"Lykos account connected: {Id} ({Username})",
|
|
|
|
e.User?.Id,
|
|
|
|
e.User?.Account.Name
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
LykosAccountStatusUpdate?.Invoke(this, e);
|
|
|
|
}
|
|
|
|
}
|