public Task <IActionResult> FetchAllGroups(MatchRequest request) { //Recupero la lista dal layer var entities = BasicLayer.FetchAllGroupsByMatchId(request.MatchId); //Ritorno i contratti return(Reply(entities.As(x => ContractUtils.GenerateContract(x)))); }
public Task <IActionResult> FetchDataForMatch(MatchRequest request) { //Match/GetMatch var match = BasicLayer.GetMatch(request.MatchId); if (match == null) { return(Task.FromResult <IActionResult>(NotFound())); } var groups = BasicLayer.FetchAllGroupsByMatchId(match.Id); var stages = BasicLayer.FetchAllStagesByMatchId(match.Id); var association = BasicLayer.GetAssociation(match.AssociationId); var place = BasicLayer.GetPlace(match.PlaceId); //Match/FetchAllMatchDirector //Recupero la lista dal layer var matchDirectors = BasicLayer.FetchShooterMatchesByMatchId(request.MatchId); var shooterIds = matchDirectors.Select(x => x.ShooterId).ToList(); //shooter list to fetch var shooterIdsSum = new List <string>(shooterIds); var stageIds = stages.Select(x => x.Id).ToList(); //Match/FetchAllShooterSOStages var shooterSoStages = BasicLayer.FetchShooterSOStagesByStageIds(stageIds); var stageShooterIds = shooterSoStages.Select(x => x.ShooterId).ToList(); shooterIdsSum.AddRange(stageShooterIds); // load MDs and SOs var shooters = BasicLayer.FetchShootersByIds(shooterIdsSum); var shooterMatches = shooters.Where(x => shooterIds.Contains(x.Id)); var stageSoShooters = shooters.Where(x => stageShooterIds.Contains(x.Id)); // GroupShooter/FetchGroupShooterStage var groupIds = groups.Select(x => x.Id).ToList(); IList <(string groupId, IList <GroupShooter> groupShooter, IList <Shooter> shooters)> groupAggregate = new List <(string groupId, IList <GroupShooter>, IList <Shooter>)>(); foreach (var groupId in groupIds) { var groupShooter = BasicLayer.FetchGroupShootersByGroupId(groupId); var shootersIds = groupShooter.Select(x => x.ShooterId).ToList(); groupAggregate.Add((groupId, groupShooter, BasicLayer.FetchShootersByIds(shootersIds) )); } var groupAggregateGroupShooters = groupAggregate.SelectMany(x => x.groupShooter).ToList(); var groupAggregateShooters = groupAggregate.SelectMany(x => x.shooters).ToList(); var groupShootersIds = groupAggregateShooters.Select(x => x.Id).ToList(); var shooterStageResults = BasicLayer.FetchShootersResultsOnStages(stageIds, groupShootersIds); var finalStageResults = new List <ShooterStage>(); // fill empty stages results foreach (var stageId in stageIds) { foreach (var shooter in groupAggregateShooters) { var existingResult = shooterStageResults.FirstOrDefault(x => x.StageId == stageId && x.ShooterId == shooter.Id); if (existingResult != null) { finalStageResults.Add(existingResult); continue; } finalStageResults.Add(new ShooterStage { StageId = stageId, ShooterId = shooter.Id }); } } var shooterWarnings = BasicLayer.FetchShootersWarningsDisqualifiedOnStages(stageIds, groupShootersIds); //Ritorno i contratti return(Reply(new MatchDataAssociationContract { Match = ContractUtils.GenerateContractCasting(match, association, place, groups.Select(x => (x, groupAggregateGroupShooters.Where(g => g.GroupId == x.Id).ToList())).ToList(), stages), ShooterMatches = matchDirectors.As(x => ContractUtils.GenerateContract(x, shooterMatches.FirstOrDefault(s => s.Id == x.ShooterId))), ShooterSoStages = shooterSoStages.As(x => ContractUtils.GenerateContract(x, stageSoShooters.FirstOrDefault(s => s.Id == x.ShooterId))), ShooterStages = finalStageResults.As(x => ContractUtils.GenerateContract( groupAggregateGroupShooters.FirstOrDefault(y => y.ShooterId == x.ShooterId), groupAggregateShooters.FirstOrDefault(y => y.Id == x.ShooterId), x, shooterWarnings.FirstOrDefault(y => y.ShooterId == x.ShooterId), groupAggregate.FirstOrDefault(g => g.shooters.Any(c => c.Id == x.ShooterId)).groupId ?? string.Empty)) }));