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 ChatGui _chatGui;
|
|
|
|
|
|
|
|
|
|
public StatisticsService(IPalacePalConfiguration configuration, RemoteApi remoteApi,
|
|
|
|
|
StatisticsWindow statisticsWindow, ChatGui chatGui)
|
|
|
|
|
{
|
|
|
|
|
_configuration = configuration;
|
|
|
|
|
_remoteApi = remoteApi;
|
|
|
|
|
_statisticsWindow = statisticsWindow;
|
|
|
|
|
_chatGui = chatGui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ShowGlobalStatistics()
|
|
|
|
|
{
|
|
|
|
|
Task.Run(async () => await FetchFloorStatistics());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task FetchFloorStatistics()
|
|
|
|
|
{
|
|
|
|
|
if (!_configuration.HasRoleOnCurrentServer("statistics:view"))
|
|
|
|
|
{
|
|
|
|
|
_chatGui.PalError(Localization.Command_pal_stats_CurrentFloor);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var (success, floorStatistics) = await _remoteApi.FetchStatistics();
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
_statisticsWindow.SetFloorData(floorStatistics);
|
|
|
|
|
_statisticsWindow.IsOpen = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_chatGui.PalError(Localization.Command_pal_stats_UnableToFetchStatistics);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (RpcException e) when (e.StatusCode == StatusCode.PermissionDenied)
|
|
|
|
|
{
|
2023-02-16 09:46:19 +00:00
|
|
|
|
_chatGui.PalError(Localization.Command_pal_stats_CurrentFloor);
|
2023-02-15 22:17:19 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
_chatGui.PalError(e.ToString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|