PalacePal/Pal.Client/DependencyInjection/StatisticsService.cs

66 lines
2.0 KiB
C#
Raw Normal View History

2023-02-15 22:17:19 +00:00
using System;
using System.Threading.Tasks;
using Dalamud.Game.Gui;
using Grpc.Core;
using Pal.Client.Configuration;
using Pal.Client.Extensions;
using Pal.Client.Net;
using Pal.Client.Properties;
using Pal.Client.Windows;
namespace Pal.Client.DependencyInjection
{
internal sealed class StatisticsService
{
private readonly IPalacePalConfiguration _configuration;
private readonly RemoteApi _remoteApi;
private readonly StatisticsWindow _statisticsWindow;
private readonly Chat _chat;
2023-02-15 22:17:19 +00:00
public StatisticsService(IPalacePalConfiguration configuration, RemoteApi remoteApi,
StatisticsWindow statisticsWindow, Chat chat)
2023-02-15 22:17:19 +00:00
{
_configuration = configuration;
_remoteApi = remoteApi;
_statisticsWindow = statisticsWindow;
_chat = chat;
2023-02-15 22:17:19 +00:00
}
public void ShowGlobalStatistics()
{
Task.Run(async () => await FetchFloorStatistics());
}
private async Task FetchFloorStatistics()
{
if (!_configuration.HasRoleOnCurrentServer(RemoteApi.RemoteUrl, "statistics:view"))
2023-02-15 22:17:19 +00:00
{
_chat.Error(Localization.Command_pal_stats_CurrentFloor);
2023-02-15 22:17:19 +00:00
return;
}
try
{
var (success, floorStatistics) = await _remoteApi.FetchStatistics();
if (success)
{
_statisticsWindow.SetFloorData(floorStatistics);
_statisticsWindow.IsOpen = true;
}
else
{
_chat.Error(Localization.Command_pal_stats_UnableToFetchStatistics);
2023-02-15 22:17:19 +00:00
}
}
catch (RpcException e) when (e.StatusCode == StatusCode.PermissionDenied)
{
_chat.Error(Localization.Command_pal_stats_CurrentFloor);
2023-02-15 22:17:19 +00:00
}
catch (Exception e)
{
_chat.Error(e.ToString());
2023-02-15 22:17:19 +00:00
}
}
}
}