Files
SkydiveLogs/Back/skydiveLogs-api.DomainBusiness/StatsByGearService.cs
sandre b25e947d62 Split tables for the stats (#6)
Reviewed-on: #6
Co-authored-by: sandre <perso@sebastienandre.com>
Co-committed-by: sandre <perso@sebastienandre.com>
2026-01-26 13:38:07 +00:00

68 lines
2.3 KiB
C#

using skydiveLogs_api.Domain;
using skydiveLogs_api.DomainBusiness.Interfaces;
using skydiveLogs_api.DomainService.Repositories;
using System.Collections.Generic;
using System.Linq;
namespace skydiveLogs_api.DomainBusiness
{
public class StatsByGearService : IStatsByGearService
{
#region Public Constructors
public StatsByGearService(IJumpService jumpService,
IIdentityService identityService,
IStatsByGearRepository statsByGearRepository)
{
_jumpService = jumpService;
_identityService = identityService;
_statsByGearRepository = statsByGearRepository;
}
#endregion Public Constructors
#region Public Methods
public IEnumerable<StatsByGear> GetStats()
{
var allStats = _statsByGearRepository.GetAll(_identityService.ConnectedUser);
if (!allStats.Any())
{
var allJumps = _jumpService.GetAllJumps();
var results = new List<StatsByGear>();
if (allJumps.Any())
{
results = [.. allJumps.GroupBy(j => $"{j.Gear.Name} / {j.Gear.MainCanopy}",
j => j,
(groupby, jumps) => new StatsByGear
{
Gear = groupby.ToString(),
Nb = jumps.Count(),
User = _identityService.ConnectedUser
})];
}
_statsByGearRepository.Add(results);
return results;
}
return allStats;
}
public void Reset()
{
_statsByGearRepository.Delete(_identityService.ConnectedUser);
}
#endregion Public Methods
#region Private Fields
private readonly IIdentityService _identityService;
private readonly IJumpService _jumpService;
private readonly IStatsByGearRepository _statsByGearRepository;
#endregion Private Fields
}
}