test debug Result Disctinct by selector Refactoring Smash/Challonge Test Resultat Html for Kiouze
165 lines
5.3 KiB
C#
165 lines
5.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using ChallongeCSharpDriver;
|
|
using ChallongeCSharpDriver.Caller;
|
|
using ChallongeCSharpDriver.Core.Objects;
|
|
using ChallongeCSharpDriver.Core.Queries;
|
|
using ChallongeCSharpDriver.Core.Results;
|
|
using LaDOSE.Business.Interface;
|
|
using LaDOSE.Entity.Challonge;
|
|
|
|
namespace LaDOSE.Business.Provider.ChallongProvider
|
|
{
|
|
public class ChallongeProvider : IChallongeProvider
|
|
{
|
|
private ChallongeConfig Config;
|
|
public string ApiKey { get; set; }
|
|
|
|
public ChallongeHTTPClientAPICaller ApiCaller { get; set; }
|
|
|
|
public string DernierTournois { get; set; }
|
|
|
|
|
|
public ChallongeProvider(string apiKey)
|
|
{
|
|
this.ApiKey = apiKey;
|
|
this.Config = new ChallongeConfig(this.ApiKey);
|
|
this.ApiCaller = new ChallongeHTTPClientAPICaller(Config);
|
|
DernierTournois = "Aucun tournois.";
|
|
}
|
|
|
|
public async Task<TournamentResult> CreateTournament(string name, string url, DateTime? startAt = null)
|
|
{
|
|
var result = await new CreateTournamentQuery(name, startAt, TournamentType.Double_Elimination, url).call(ApiCaller);
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
public async Task<ParticipantResult> AddPlayer(int tournamentId, string userName)
|
|
{
|
|
var p = new ParticipantEntry(userName);
|
|
var result = await new AddParticipantQuery(tournamentId, p).call(ApiCaller);
|
|
return result;
|
|
|
|
}
|
|
|
|
public async Task<List<ChallongeTournament>> GetTournaments(DateTime? start, DateTime? end)
|
|
{
|
|
|
|
List<TournamentResult> tournamentResultList = await new TournamentsQuery()
|
|
{
|
|
state = TournamentState.Ended,
|
|
createdAfter = start,
|
|
createdBefore = DateTime.Now,
|
|
|
|
|
|
}
|
|
.call(this.ApiCaller);
|
|
List<ChallongeTournament> tournaments = new List<ChallongeTournament>();
|
|
tournamentResultList.ForEach(w => tournaments.Add(new ChallongeTournament()
|
|
{
|
|
ChallongeId = w.id,
|
|
Name = w.name,
|
|
Participents = new List<ChallongeParticipent>()
|
|
}));
|
|
return tournaments;
|
|
}
|
|
|
|
public async Task<List<ChallongeParticipent>> GetParticipents(int idTournament)
|
|
{
|
|
var participentResults = await new ParticipantsQuery() { tournamentID = idTournament }.call(ApiCaller);
|
|
|
|
List<ChallongeParticipent> participants = new List<ChallongeParticipent>();
|
|
participentResults.ForEach(w =>
|
|
{
|
|
if (w.active)
|
|
{
|
|
participants.Add(new ChallongeParticipent()
|
|
{
|
|
ChallongeTournamentId = idTournament,
|
|
ChallongeId = w.id,
|
|
Name = w.name,
|
|
Rank = w.final_rank,
|
|
IsMember = false,
|
|
});
|
|
}
|
|
|
|
});
|
|
return participants;
|
|
}
|
|
|
|
public async Task<ChallongeTournament> GetTournament(int idTournament)
|
|
{
|
|
|
|
var tournamentResult = await new TournamentQuery(idTournament).call(ApiCaller);
|
|
|
|
return new ChallongeTournament()
|
|
{
|
|
ChallongeId = tournamentResult.id,
|
|
Name = tournamentResult.name,
|
|
Url = tournamentResult.url,
|
|
Participents = new List<ChallongeParticipent>()
|
|
|
|
};
|
|
|
|
}
|
|
public async Task<ChallongeTournament> GetTournament(string urlTournament)
|
|
{
|
|
|
|
var tournamentResult = await new TournamentQuery(urlTournament).call(ApiCaller);
|
|
|
|
return new ChallongeTournament()
|
|
{
|
|
ChallongeId = tournamentResult.id,
|
|
Name = tournamentResult.name,
|
|
Url = tournamentResult.url,
|
|
Participents = new List<ChallongeParticipent>()
|
|
|
|
};
|
|
|
|
}
|
|
public async Task<string> GetLastTournament()
|
|
{
|
|
string dernierTournois = null;
|
|
try
|
|
{
|
|
|
|
|
|
List<TournamentResult> tournamentResultList = await new TournamentsQuery()
|
|
{
|
|
state = TournamentState.Ended
|
|
}
|
|
.call(this.ApiCaller);
|
|
|
|
|
|
var lastDate = tournamentResultList.Max(e => e.completed_at);
|
|
|
|
if (lastDate.HasValue)
|
|
{
|
|
var lastRankingDate = new DateTime(lastDate.Value.Year, lastDate.Value.Month, lastDate.Value.Day);
|
|
|
|
var lastTournament = tournamentResultList.Where(e => e.completed_at > lastRankingDate).ToList();
|
|
string returnValue = "Les derniers tournois : \n";
|
|
foreach (var tournamentResult in lastTournament)
|
|
{
|
|
returnValue += $"{tournamentResult.name} : <https://challonge.com/{tournamentResult.url}> \n";
|
|
}
|
|
|
|
dernierTournois = returnValue;
|
|
}
|
|
return dernierTournois;
|
|
}
|
|
catch
|
|
{
|
|
return dernierTournois;
|
|
}
|
|
}
|
|
public string GetLastTournamentMessage()
|
|
{
|
|
return DernierTournois;
|
|
}
|
|
}
|
|
} |