package handlers import ( "context" "net/http" "git.haelnorr.com/h/golib/hws" "git.haelnorr.com/h/oslstats/internal/db" "git.haelnorr.com/h/oslstats/internal/throw" seasonsview "git.haelnorr.com/h/oslstats/internal/view/seasonsview" "github.com/pkg/errors" "github.com/uptrace/bun" ) func SeasonLeaguePage( s *hws.Server, conn *bun.DB, ) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { seasonStr := r.PathValue("season_short_name") leagueStr := r.PathValue("league_short_name") var season *db.Season var league *db.League var teams []*db.Team var allTeams []*db.Team if ok := db.WithReadTx(s, w, r, conn, func(ctx context.Context, tx bun.Tx) (bool, error) { var err error season, league, teams, err = db.GetSeasonLeague(ctx, tx, seasonStr, leagueStr) if err != nil { return false, errors.Wrap(err, "db.GetSeasonLeague") } // Get all teams for the dropdown (to add teams) allTeams, err = db.GetList[db.Team](tx).GetAll(ctx) if err != nil { return false, errors.Wrap(err, "db.GetList[Team]") } return true, nil }); !ok { return } if season == nil || league == nil { throw.NotFound(s, w, r, r.URL.Path) return } renderSafely(seasonsview.SeasonLeaguePage(season, league, teams, allTeams), s, r, w) }) }