2024-03-22 05:59:47 +00:00
|
|
|
package sorare_utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"git.lehouerou.net/laurent/sorare"
|
|
|
|
"git.lehouerou.net/laurent/sorare/football"
|
|
|
|
"git.lehouerou.net/laurent/sorare/graphql"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
2024-03-22 11:40:34 +00:00
|
|
|
gql "github.com/llehouerou/go-graphql-client"
|
|
|
|
"github.com/pkg/errors"
|
2024-03-22 05:59:47 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/samber/lo"
|
|
|
|
|
|
|
|
"git.lehouerou.net/laurent/sorarebuddy/model"
|
|
|
|
)
|
|
|
|
|
|
|
|
type UpdateService struct {
|
|
|
|
s *sorare.Sorare
|
|
|
|
db *model.Queries
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewUpdateService(s *sorare.Sorare, db *model.Queries) *UpdateService {
|
|
|
|
return &UpdateService{s: s, db: db}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UpdateService) InitSyncDatabase(ctx context.Context) error {
|
|
|
|
|
2024-03-22 11:40:34 +00:00
|
|
|
sfixtures, err := u.s.Football.So5.So5Fixtures.Get(ctx, football.So5FixturesParams{
|
|
|
|
AasmStates: []string{"started"},
|
|
|
|
})
|
2024-03-22 05:59:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Debug().Msgf("fixtures: %v", sfixtures)
|
|
|
|
|
2024-03-22 18:50:22 +00:00
|
|
|
batchFixtures := u.db.CreateOrUpdateFixtures(
|
2024-03-22 05:59:47 +00:00
|
|
|
ctx,
|
2024-03-22 18:50:22 +00:00
|
|
|
lo.Map(sfixtures, func(fixture football.So5Fixture, index int) model.CreateOrUpdateFixturesParams {
|
|
|
|
return model.CreateOrUpdateFixturesParams{
|
2024-03-22 05:59:47 +00:00
|
|
|
Slug: fixture.Slug,
|
|
|
|
DisplayName: fixture.DisplayName,
|
|
|
|
State: fixture.AasmState,
|
|
|
|
StartDate: pgtype.Timestamptz{Time: fixture.StartDate, Valid: true},
|
|
|
|
EndDate: pgtype.Timestamptz{Time: fixture.EndDate, Valid: true},
|
|
|
|
GameWeek: int32(fixture.GameWeek),
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
)
|
2024-03-22 18:50:22 +00:00
|
|
|
var batcherr error
|
|
|
|
batchFixtures.Exec(func(_ int, err error) {
|
|
|
|
if err != nil {
|
|
|
|
batcherr = err
|
|
|
|
batchFixtures.Close()
|
|
|
|
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if batcherr != nil {
|
2024-03-22 05:59:47 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-03-22 18:50:22 +00:00
|
|
|
log.Debug().Msgf("created %d fixtures", len(sfixtures))
|
2024-03-22 05:59:47 +00:00
|
|
|
|
|
|
|
fixtures, err := u.db.GetAllFixtures(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
games, err := GetGamesFromFixtures(
|
|
|
|
ctx,
|
|
|
|
u.s,
|
|
|
|
lo.Map(fixtures, func(fixture model.Fixture, index int) string {
|
|
|
|
return fixture.Slug
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
log.Info().Msgf("found %d games to process", len(games))
|
|
|
|
|
2024-03-22 11:40:34 +00:00
|
|
|
log.Debug().Msgf("getting players for each game...")
|
2024-03-23 11:39:37 +00:00
|
|
|
var gamePlayers []model.CreateOrUpdateGamePlayersParams
|
2024-03-22 11:40:34 +00:00
|
|
|
for _, game := range games {
|
|
|
|
gameWithFormation, err := u.s.Football.Game.Get(ctx, graphql.IdParams{Id: gql.ID(game.Id.Value)})
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "getting game with formation %s", game.Id.Value)
|
|
|
|
}
|
|
|
|
newplayers := ExtractPlayersFromGameWithFormation(gameWithFormation)
|
|
|
|
log.Debug().Msgf("\t%s -> %d players", game.String(), len(newplayers))
|
|
|
|
gamePlayers = append(gamePlayers, newplayers...)
|
|
|
|
}
|
|
|
|
|
|
|
|
playerSlugs := lo.Uniq(
|
2024-03-23 11:39:37 +00:00
|
|
|
lo.Filter(lo.Map(gamePlayers, func(player model.CreateOrUpdateGamePlayersParams, index int) string {
|
2024-03-22 11:40:34 +00:00
|
|
|
return player.PlayerSlug
|
|
|
|
}), func(slug string, index int) bool {
|
|
|
|
return slug != ""
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
|
|
|
|
log.Debug().Msgf("getting players...")
|
|
|
|
var players []football.Player
|
|
|
|
for i, chunk := range lo.Chunk(playerSlugs, 80) {
|
|
|
|
log.Debug().Msgf("\tbatch %d/%d", i+1, (len(playerSlugs)/80)+1)
|
|
|
|
p, err := u.s.Football.Players.Get(ctx, graphql.SlugsParams{Slugs: chunk})
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "getting players batch %d", i)
|
|
|
|
}
|
|
|
|
players = append(players, p...)
|
|
|
|
}
|
|
|
|
log.Debug().Msgf("found %d players", len(players))
|
|
|
|
|
|
|
|
teamSlugs := ExtractTeamSlugsFromPlayersAndGames(players, games)
|
|
|
|
log.Debug().Msgf("extracted %d unique team slugs from games and players", len(teamSlugs))
|
2024-03-22 05:59:47 +00:00
|
|
|
|
|
|
|
log.Debug().Msgf("getting clubs...")
|
|
|
|
var clubs []football.Club
|
|
|
|
for i, chunk := range lo.Chunk(teamSlugs, 100) {
|
2024-03-22 11:40:34 +00:00
|
|
|
log.Debug().Msgf("\tbatch %d/%d", i+1, (len(teamSlugs)/100)+1)
|
2024-03-22 05:59:47 +00:00
|
|
|
t, err := u.s.Football.Clubs.Get(ctx, graphql.SlugsParams{Slugs: chunk})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
clubs = append(clubs, t...)
|
|
|
|
}
|
|
|
|
log.Debug().Msgf("found %d clubs", len(clubs))
|
|
|
|
var nationalTeams []football.NationalTeam
|
|
|
|
slugsLeft := lo.Without(teamSlugs, lo.Map(clubs, func(club football.Club, index int) string {
|
|
|
|
return club.Slug
|
|
|
|
})...)
|
|
|
|
log.Debug().Msgf("getting national teams...")
|
|
|
|
log.Debug().Msgf("slugs left: %d", len(slugsLeft))
|
|
|
|
for i, chunk := range lo.Chunk(slugsLeft, 100) {
|
2024-03-22 11:40:34 +00:00
|
|
|
log.Debug().Msgf("\tbatch %d/%d", i+1, (len(teamSlugs)/100)+1)
|
2024-03-22 05:59:47 +00:00
|
|
|
t, err := u.s.Football.NationalTeams.Get(ctx, graphql.SlugsParams{Slugs: chunk})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
nationalTeams = append(nationalTeams, t...)
|
|
|
|
}
|
|
|
|
log.Debug().Msgf("found %d national teams", len(nationalTeams))
|
|
|
|
|
2024-03-22 11:40:34 +00:00
|
|
|
competitionSlugs := ExtractCompetitionSlugsFromPlayersGamesAndClubs(players, games, clubs)
|
|
|
|
log.Debug().Msgf("extracted %d unique competition slugs from players, games and clubs", len(competitionSlugs))
|
2024-03-22 05:59:47 +00:00
|
|
|
log.Debug().Msgf("getting competitions...")
|
|
|
|
var competitions []football.Competition
|
|
|
|
for _, slug := range competitionSlugs {
|
|
|
|
log.Debug().Msgf("\tcompetition %s", slug)
|
|
|
|
c, err := u.s.Football.Competition.Get(ctx, graphql.SlugParams{Slug: slug})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
competitions = append(competitions, c)
|
|
|
|
}
|
|
|
|
log.Debug().Msgf("found %d competitions", len(competitions))
|
|
|
|
|
2024-03-22 11:40:34 +00:00
|
|
|
countrySlugs := ExtractCountrySlugsFromPlayersCompetitionsClubsAndNationalTeams(
|
|
|
|
players,
|
2024-03-22 05:59:47 +00:00
|
|
|
competitions,
|
|
|
|
clubs,
|
|
|
|
nationalTeams,
|
|
|
|
)
|
2024-03-22 11:40:34 +00:00
|
|
|
log.Debug().
|
|
|
|
Msgf("extracted %d unique country slugs from players, competitions, clubs and national teams", len(countrySlugs))
|
2024-03-22 05:59:47 +00:00
|
|
|
log.Debug().Msgf("getting countries...")
|
|
|
|
var countries []sorare.Country
|
|
|
|
for i, chunk := range lo.Chunk(countrySlugs, 100) {
|
2024-03-22 11:40:34 +00:00
|
|
|
log.Debug().Msgf("\tbatch %d/%d", i+1, (len(countrySlugs)/100)+1)
|
2024-03-22 05:59:47 +00:00
|
|
|
c, err := u.s.Countries.Get(ctx, graphql.SlugsParams{Slugs: chunk})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
countries = append(countries, c...)
|
|
|
|
}
|
|
|
|
log.Debug().Msgf("found %d countries", len(countries))
|
|
|
|
|
|
|
|
log.Debug().Msg("inserting countries into db...")
|
2024-03-22 11:49:07 +00:00
|
|
|
batchCountries := u.db.CreateOrUpdateCountries(
|
2024-03-22 05:59:47 +00:00
|
|
|
ctx,
|
2024-03-22 11:49:07 +00:00
|
|
|
lo.Map(countries, func(country sorare.Country, index int) model.CreateOrUpdateCountriesParams {
|
|
|
|
return model.CreateOrUpdateCountriesParams{
|
2024-03-22 05:59:47 +00:00
|
|
|
Slug: country.Slug,
|
|
|
|
Code: country.Code,
|
|
|
|
DisplayName: country.Name,
|
|
|
|
ThreeLetterCode: country.ThreeLetterCode,
|
|
|
|
FlagFlat64Url: country.FlagFlat64Url,
|
|
|
|
FlagFlat32Url: country.FlagFlat32Url,
|
|
|
|
FlagRound64Url: country.FlagRound64Url,
|
|
|
|
FlagRound32Url: country.FlagRound32Url,
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
)
|
2024-03-22 18:50:22 +00:00
|
|
|
batcherr = nil
|
2024-03-22 11:49:07 +00:00
|
|
|
batchCountries.Exec(func(_ int, err error) {
|
|
|
|
if err != nil {
|
|
|
|
batcherr = err
|
|
|
|
batchCountries.Close()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if batcherr != nil {
|
2024-03-22 05:59:47 +00:00
|
|
|
return err
|
|
|
|
}
|
2024-03-22 18:50:22 +00:00
|
|
|
log.Debug().Msgf("%d countries inserted", len(countries))
|
2024-03-22 05:59:47 +00:00
|
|
|
|
|
|
|
log.Debug().Msg("inserting competitions into db...")
|
|
|
|
|
2024-03-22 11:49:07 +00:00
|
|
|
batchCompetitions := u.db.CreateOrUpdateCompetitions(
|
2024-03-22 05:59:47 +00:00
|
|
|
ctx,
|
2024-03-22 11:40:34 +00:00
|
|
|
lo.Map(competitions, func(competition football.Competition, index int) model.CreateOrUpdateCompetitionsParams {
|
|
|
|
return model.CreateOrUpdateCompetitionsParams{
|
2024-03-22 05:59:47 +00:00
|
|
|
Slug: competition.Slug,
|
|
|
|
CompetitionFormat: competition.Format,
|
|
|
|
CompetitionType: competition.Type,
|
|
|
|
DisplayName: competition.DisplayName,
|
|
|
|
PictureUrl: competition.PictureUrl,
|
|
|
|
LogoUrl: competition.LogoUrl,
|
|
|
|
CountrySlug: competition.Country.Slug,
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
)
|
2024-03-22 18:50:22 +00:00
|
|
|
batcherr = nil
|
2024-03-22 11:49:07 +00:00
|
|
|
batchCompetitions.Exec(func(_ int, err error) {
|
2024-03-22 11:40:34 +00:00
|
|
|
if err != nil {
|
|
|
|
batcherr = err
|
2024-03-22 11:49:07 +00:00
|
|
|
batchCompetitions.Close()
|
2024-03-22 11:40:34 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
if batcherr != nil {
|
|
|
|
return errors.Wrap(batcherr, "inserting competitions")
|
2024-03-22 05:59:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Debug().Msgf("%d competitions inserted", len(competitions))
|
|
|
|
|
|
|
|
log.Debug().Msg("inserting teams into db...")
|
2024-03-23 11:39:37 +00:00
|
|
|
batchTeams := u.db.CreateOrUpdateTeams(ctx, lo.Union(
|
|
|
|
lo.Map(clubs, func(club football.Club, index int) model.CreateOrUpdateTeamsParams {
|
|
|
|
return model.CreateOrUpdateTeamsParams{
|
2024-03-22 05:59:47 +00:00
|
|
|
Slug: club.Slug,
|
|
|
|
DisplayName: club.Name,
|
|
|
|
CountrySlug: club.Country.Slug,
|
|
|
|
DomesticLeagueSlug: func() *string {
|
|
|
|
if club.DomesticLeague.Slug == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &club.DomesticLeague.Slug
|
|
|
|
}(),
|
|
|
|
ShortName: club.ShortName,
|
|
|
|
PictureUrl: club.PictureUrl,
|
|
|
|
TeamType: "club",
|
|
|
|
}
|
|
|
|
}),
|
2024-03-23 11:39:37 +00:00
|
|
|
lo.Map(nationalTeams, func(nationalTeam football.NationalTeam, index int) model.CreateOrUpdateTeamsParams {
|
|
|
|
return model.CreateOrUpdateTeamsParams{
|
2024-03-22 05:59:47 +00:00
|
|
|
Slug: nationalTeam.Slug,
|
|
|
|
DisplayName: nationalTeam.Name,
|
|
|
|
CountrySlug: nationalTeam.Country.Slug,
|
|
|
|
DomesticLeagueSlug: nil,
|
|
|
|
ShortName: nationalTeam.ShortName,
|
|
|
|
PictureUrl: nationalTeam.PictureUrl,
|
|
|
|
TeamType: "national",
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
))
|
2024-03-23 11:39:37 +00:00
|
|
|
batcherr = nil
|
|
|
|
batchTeams.Exec(func(_ int, err error) {
|
|
|
|
if err != nil {
|
|
|
|
batcherr = err
|
|
|
|
batchTeams.Close()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if batcherr != nil {
|
|
|
|
return errors.Wrap(batcherr, "inserting teams into db")
|
2024-03-22 05:59:47 +00:00
|
|
|
}
|
2024-03-23 11:39:37 +00:00
|
|
|
log.Debug().Msgf("%d teams inserted", len(clubs)+len(nationalTeams))
|
2024-03-22 05:59:47 +00:00
|
|
|
|
|
|
|
log.Debug().Msg("inserting games into db...")
|
2024-03-23 11:39:37 +00:00
|
|
|
batchGames := u.db.CreateOrUpdateGames(
|
2024-03-22 05:59:47 +00:00
|
|
|
ctx,
|
2024-03-23 11:39:37 +00:00
|
|
|
lo.Map(games, func(game football.Game, index int) model.CreateOrUpdateGamesParams {
|
|
|
|
return NewCreateOrUpdateGamesParamsFromSorare(game)
|
2024-03-22 05:59:47 +00:00
|
|
|
}),
|
|
|
|
)
|
2024-03-23 11:39:37 +00:00
|
|
|
batcherr = nil
|
|
|
|
batchGames.Exec(func(_ int, err error) {
|
|
|
|
if err != nil {
|
|
|
|
batcherr = err
|
|
|
|
batchGames.Close()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if batcherr != nil {
|
2024-03-22 05:59:47 +00:00
|
|
|
return err
|
|
|
|
}
|
2024-03-23 11:39:37 +00:00
|
|
|
log.Debug().Msgf("%d games inserted", len(games))
|
2024-03-22 11:40:34 +00:00
|
|
|
|
|
|
|
log.Debug().Msg("inserting players into db...")
|
2024-03-23 11:39:37 +00:00
|
|
|
batchPlayers := u.db.CreateOrUpdatePlayers(
|
2024-03-22 11:40:34 +00:00
|
|
|
ctx,
|
2024-03-23 11:39:37 +00:00
|
|
|
lo.Map(players, func(player football.Player, index int) model.CreateOrUpdatePlayersParams {
|
|
|
|
res := model.CreateOrUpdatePlayersParams{
|
2024-03-22 11:40:34 +00:00
|
|
|
Slug: player.Slug,
|
|
|
|
DisplayName: player.DisplayName,
|
|
|
|
BirthDate: player.BirthDate,
|
|
|
|
CountrySlug: player.Country.Slug,
|
|
|
|
AvatarUrl: player.AvatarUrl,
|
|
|
|
FieldPosition: string(player.Position),
|
|
|
|
Status: string(player.PlayingStatus),
|
|
|
|
ShirtNumber: int32(player.ShirtNumber),
|
|
|
|
}
|
|
|
|
for _, competition := range player.ActiveClub.ActiveCompetitions {
|
|
|
|
if competition.Format == "DOMESTIC_LEAGUE" {
|
|
|
|
res.DomesticLeagueSlug = &competition.Slug
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if player.ActiveClub.Slug != "" {
|
|
|
|
res.TeamSlug = &player.ActiveClub.Slug
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}),
|
|
|
|
)
|
2024-03-23 11:39:37 +00:00
|
|
|
batcherr = nil
|
|
|
|
batchPlayers.Exec(func(_ int, err error) {
|
|
|
|
if err != nil {
|
|
|
|
batcherr = err
|
|
|
|
batchPlayers.Close()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if batcherr != nil {
|
|
|
|
return errors.Wrap(batcherr, "inserting players")
|
2024-03-22 11:40:34 +00:00
|
|
|
}
|
2024-03-23 11:39:37 +00:00
|
|
|
log.Debug().Msgf("%d players inserted", len(players))
|
2024-03-22 11:40:34 +00:00
|
|
|
|
|
|
|
log.Debug().Msg("inserting game players into db...")
|
2024-03-23 11:39:37 +00:00
|
|
|
batchGamePlayers := u.db.CreateOrUpdateGamePlayers(
|
|
|
|
ctx,
|
|
|
|
gamePlayers,
|
|
|
|
)
|
|
|
|
batcherr = nil
|
|
|
|
batchGamePlayers.Exec(func(_ int, err error) {
|
|
|
|
if err != nil {
|
|
|
|
batcherr = err
|
|
|
|
batchGamePlayers.Close()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if batcherr != nil {
|
2024-03-22 11:40:34 +00:00
|
|
|
return errors.Wrap(err, "inserting game players")
|
|
|
|
}
|
2024-03-23 11:39:37 +00:00
|
|
|
log.Debug().Msgf("%d game players inserted", len(gamePlayers))
|
2024-03-22 11:40:34 +00:00
|
|
|
|
2024-03-22 05:59:47 +00:00
|
|
|
return nil
|
|
|
|
}
|
2024-03-22 11:40:34 +00:00
|
|
|
|
|
|
|
func ExtractPlayersFromGameWithFormation(
|
|
|
|
gameWithFormation football.GameWithFormation,
|
2024-03-23 11:39:37 +00:00
|
|
|
) []model.CreateOrUpdateGamePlayersParams {
|
|
|
|
var res []model.CreateOrUpdateGamePlayersParams
|
2024-03-22 11:40:34 +00:00
|
|
|
for _, p := range gameWithFormation.HomeFormation.Bench {
|
2024-03-23 11:39:37 +00:00
|
|
|
res = append(res, model.CreateOrUpdateGamePlayersParams{
|
2024-03-22 11:40:34 +00:00
|
|
|
GameID: gameWithFormation.Id.Value,
|
|
|
|
PlayerSlug: p.Slug,
|
|
|
|
TeamSlug: gameWithFormation.HomeTeam.Team.Slug,
|
|
|
|
Status: "bench",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
for _, p := range gameWithFormation.HomeFormation.StartingLineup {
|
|
|
|
for _, q := range p {
|
2024-03-23 11:39:37 +00:00
|
|
|
res = append(res, model.CreateOrUpdateGamePlayersParams{
|
2024-03-22 11:40:34 +00:00
|
|
|
GameID: gameWithFormation.Id.Value,
|
|
|
|
PlayerSlug: q.Slug,
|
|
|
|
TeamSlug: gameWithFormation.HomeTeam.Team.Slug,
|
|
|
|
Status: "starting",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, p := range gameWithFormation.AwayFormation.Bench {
|
2024-03-23 11:39:37 +00:00
|
|
|
res = append(res, model.CreateOrUpdateGamePlayersParams{
|
2024-03-22 11:40:34 +00:00
|
|
|
GameID: gameWithFormation.Id.Value,
|
|
|
|
PlayerSlug: p.Slug,
|
|
|
|
TeamSlug: gameWithFormation.AwayTeam.Team.Slug,
|
|
|
|
Status: "bench",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
for _, p := range gameWithFormation.AwayFormation.StartingLineup {
|
|
|
|
for _, q := range p {
|
2024-03-23 11:39:37 +00:00
|
|
|
res = append(res, model.CreateOrUpdateGamePlayersParams{
|
2024-03-22 11:40:34 +00:00
|
|
|
GameID: gameWithFormation.Id.Value,
|
|
|
|
PlayerSlug: q.Slug,
|
|
|
|
TeamSlug: gameWithFormation.AwayTeam.Team.Slug,
|
|
|
|
Status: "starting",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractTeamSlugsFromPlayersAndGames(players []football.Player, games []football.Game) []string {
|
|
|
|
return lo.Uniq(lo.Union(
|
|
|
|
ExtractTeamSlugsFromPlayers(players),
|
|
|
|
ExtractTeamSlugsFromGames(games),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractTeamSlugsFromPlayers(players []football.Player) []string {
|
|
|
|
return lo.Uniq(lo.Filter(lo.Map(players, func(player football.Player, index int) string {
|
|
|
|
return player.ActiveClub.Slug
|
|
|
|
}), func(slug string, index int) bool {
|
|
|
|
return slug != ""
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractTeamSlugsFromGames(games []football.Game) []string {
|
|
|
|
var res []string
|
|
|
|
res = lo.Map(games, func(game football.Game, index int) string {
|
|
|
|
return game.AwayTeam.Team.Slug
|
|
|
|
})
|
|
|
|
res = append(res, lo.Map(games, func(game football.Game, index int) string {
|
|
|
|
return game.HomeTeam.Team.Slug
|
|
|
|
})...)
|
|
|
|
res = lo.Filter(res, func(slug string, index int) bool {
|
|
|
|
return slug != ""
|
|
|
|
})
|
|
|
|
return lo.Uniq(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractCountrySlugsFromCompetitions(competitions []football.Competition) []string {
|
|
|
|
return lo.Uniq(lo.Filter(lo.Map(competitions, func(competition football.Competition, index int) string {
|
|
|
|
return competition.Country.Slug
|
|
|
|
}), func(slug string, index int) bool {
|
|
|
|
return slug != ""
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractCountrySlugsFromTeams(teams []football.Team) []string {
|
|
|
|
return lo.Uniq(lo.Filter(lo.Map(teams, func(team football.Team, index int) string {
|
|
|
|
return team.Country.Slug
|
|
|
|
}), func(slug string, index int) bool {
|
|
|
|
return slug != ""
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractCountrySlugsFromPlayersCompetitionsClubsAndNationalTeams(
|
|
|
|
players []football.Player,
|
|
|
|
competitions []football.Competition,
|
|
|
|
clubs []football.Club,
|
|
|
|
nationalTeams []football.NationalTeam,
|
|
|
|
) []string {
|
|
|
|
return lo.Uniq(lo.Union(
|
|
|
|
ExtractCountrySlugsFromPlayers(players),
|
|
|
|
ExtractCountrySlugsFromCompetitions(competitions),
|
|
|
|
ExtractCountrySlugsFromTeams(lo.Map(clubs, func(club football.Club, index int) football.Team {
|
|
|
|
return club.Team
|
|
|
|
})),
|
|
|
|
ExtractCountrySlugsFromTeams(
|
|
|
|
lo.Map(nationalTeams, func(nationalTeam football.NationalTeam, index int) football.Team {
|
|
|
|
return nationalTeam.Team
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractCountrySlugsFromPlayers(players []football.Player) []string {
|
|
|
|
return lo.Uniq(lo.Filter(lo.Map(players, func(player football.Player, index int) string {
|
|
|
|
return player.Country.Slug
|
|
|
|
}), func(slug string, index int) bool {
|
|
|
|
return slug != ""
|
|
|
|
}))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractCompetitionSlugsFromPlayers(players []football.Player) []string {
|
|
|
|
return lo.Uniq(lo.Filter(lo.Map(players, func(player football.Player, index int) string {
|
|
|
|
var res string
|
|
|
|
for _, competition := range player.ActiveClub.ActiveCompetitions {
|
|
|
|
if competition.Format == "DOMESTIC_LEAGUE" {
|
|
|
|
res = competition.Slug
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}), func(slug string, index int) bool {
|
|
|
|
return slug != ""
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractCompetitionSlugsFromGames(games []football.Game) []string {
|
|
|
|
return lo.Uniq(lo.Filter(lo.Map(games, func(game football.Game, index int) string {
|
|
|
|
return game.Competition.Slug
|
|
|
|
}), func(slug string, index int) bool {
|
|
|
|
return slug != ""
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractCompetitionSlugsFromClubs(clubs []football.Club) []string {
|
|
|
|
return lo.Uniq(lo.Filter(lo.Map(clubs, func(club football.Club, index int) string {
|
|
|
|
return club.DomesticLeague.Slug
|
|
|
|
}), func(slug string, index int) bool {
|
|
|
|
return slug != ""
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExtractCompetitionSlugsFromPlayersGamesAndClubs(
|
|
|
|
players []football.Player,
|
|
|
|
games []football.Game,
|
|
|
|
clubs []football.Club,
|
|
|
|
) []string {
|
|
|
|
return lo.Uniq(lo.Union(
|
|
|
|
ExtractCompetitionSlugsFromPlayers(players),
|
|
|
|
ExtractCompetitionSlugsFromGames(games),
|
|
|
|
ExtractCompetitionSlugsFromClubs(clubs),
|
|
|
|
))
|
|
|
|
}
|