2026-05-25 02:25:06 -04:00
|
|
|
package query
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"database/sql"
|
|
|
|
|
"errors"
|
feat(race-hub): trustworthy defaults and fan-facing analysis hierarchy (#75)
Make bare /race-hub resolve to a completed session and never open empty
post-session analysis for a future race.
- Backend: add `default_analysis_session` to the Weekend context. It never
resolves to a future session (picks the richest completed session, ties
toward the later one; 0 when everything is upcoming). Existing
`default_session_key` and deep links are unchanged.
- Frontend default resolution prefers the most recently completed weekend
(`pickAnalysisFocusMeeting`) and consumes `default_analysis_session`, falling
back to the switcher when only upcoming sessions exist.
- New `sessionState` lib maps timing + coverage to user language
(upcoming/live/preparing/partial/ready/cancelled); the session rail, active
sub-bar, and WeekendSwitcher now label states instead of raw x/11 counts.
- Future sessions render a purpose-built PreSessionView (expected availability +
countdown) instead of empty Winner/Podium/Pole/Strategy/Compare cards.
- Analysis navigation regrouped into Story / Analysis / Data & Context; every
existing tab is preserved. Diagnostics (renamed from Data Status) is now a
secondary action and the raw dataset strip is hidden behind an explicit
toggle, so operational coverage no longer precedes fan content.
- Loading/error states offer Retry and a path back to Weekend.
Tests: Go query tests for future-exclusion; Vitest for default selection,
future pre-session, partial state, error/retry, grouped nav, and sessionState;
hermetic Playwright for bare/completed/future/return-to-Weekend; new
race-hub-future visual snapshots. Seed adds a far-future session inside the
Monaco meeting (kept in-meeting so Command Center focus is unaffected).
Note: `default_analysis_session` is an additive field on the existing
`/weekend` contract (no new endpoint), per the spec's "context contract" scope.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 18:29:34 -04:00
|
|
|
"time"
|
2026-05-25 02:25:06 -04:00
|
|
|
|
|
|
|
|
"github.com/AmanTahiliani/box-box/internal/models"
|
2026-07-03 02:57:18 -04:00
|
|
|
"github.com/AmanTahiliani/box-box/internal/store"
|
2026-05-25 02:25:06 -04:00
|
|
|
)
|
|
|
|
|
|
feat(race-hub): trustworthy defaults and fan-facing analysis hierarchy (#75)
Make bare /race-hub resolve to a completed session and never open empty
post-session analysis for a future race.
- Backend: add `default_analysis_session` to the Weekend context. It never
resolves to a future session (picks the richest completed session, ties
toward the later one; 0 when everything is upcoming). Existing
`default_session_key` and deep links are unchanged.
- Frontend default resolution prefers the most recently completed weekend
(`pickAnalysisFocusMeeting`) and consumes `default_analysis_session`, falling
back to the switcher when only upcoming sessions exist.
- New `sessionState` lib maps timing + coverage to user language
(upcoming/live/preparing/partial/ready/cancelled); the session rail, active
sub-bar, and WeekendSwitcher now label states instead of raw x/11 counts.
- Future sessions render a purpose-built PreSessionView (expected availability +
countdown) instead of empty Winner/Podium/Pole/Strategy/Compare cards.
- Analysis navigation regrouped into Story / Analysis / Data & Context; every
existing tab is preserved. Diagnostics (renamed from Data Status) is now a
secondary action and the raw dataset strip is hidden behind an explicit
toggle, so operational coverage no longer precedes fan content.
- Loading/error states offer Retry and a path back to Weekend.
Tests: Go query tests for future-exclusion; Vitest for default selection,
future pre-session, partial state, error/retry, grouped nav, and sessionState;
hermetic Playwright for bare/completed/future/return-to-Weekend; new
race-hub-future visual snapshots. Seed adds a far-future session inside the
Monaco meeting (kept in-meeting so Command Center focus is unaffected).
Note: `default_analysis_session` is an additive field on the existing
`/weekend` contract (no new endpoint), per the spec's "context contract" scope.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 18:29:34 -04:00
|
|
|
// weekendNow is the clock used to decide whether a session has started. It is a
|
|
|
|
|
// package var so tests can pin it deterministically.
|
|
|
|
|
var weekendNow = time.Now
|
|
|
|
|
|
2026-05-25 02:25:06 -04:00
|
|
|
// ErrMeetingNotFound is returned when a meeting is not in the local store.
|
|
|
|
|
var ErrMeetingNotFound = errors.New("meeting not found")
|
|
|
|
|
|
|
|
|
|
// WeekendSession is one session within a meeting with dataset coverage.
|
|
|
|
|
type WeekendSession struct {
|
|
|
|
|
Session models.Session `json:"session"`
|
|
|
|
|
Source string `json:"source"`
|
|
|
|
|
Datasets map[string]DatasetInfo `json:"datasets"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Weekend is the local-first read model for one race weekend.
|
|
|
|
|
type Weekend struct {
|
|
|
|
|
Source string `json:"source"`
|
|
|
|
|
MeetingKey int `json:"meeting_key"`
|
|
|
|
|
Meeting models.Meeting `json:"meeting"`
|
|
|
|
|
Sessions []WeekendSession `json:"sessions"`
|
|
|
|
|
DefaultSessionKey int `json:"default_session_key,omitempty"`
|
feat(race-hub): trustworthy defaults and fan-facing analysis hierarchy (#75)
Make bare /race-hub resolve to a completed session and never open empty
post-session analysis for a future race.
- Backend: add `default_analysis_session` to the Weekend context. It never
resolves to a future session (picks the richest completed session, ties
toward the later one; 0 when everything is upcoming). Existing
`default_session_key` and deep links are unchanged.
- Frontend default resolution prefers the most recently completed weekend
(`pickAnalysisFocusMeeting`) and consumes `default_analysis_session`, falling
back to the switcher when only upcoming sessions exist.
- New `sessionState` lib maps timing + coverage to user language
(upcoming/live/preparing/partial/ready/cancelled); the session rail, active
sub-bar, and WeekendSwitcher now label states instead of raw x/11 counts.
- Future sessions render a purpose-built PreSessionView (expected availability +
countdown) instead of empty Winner/Podium/Pole/Strategy/Compare cards.
- Analysis navigation regrouped into Story / Analysis / Data & Context; every
existing tab is preserved. Diagnostics (renamed from Data Status) is now a
secondary action and the raw dataset strip is hidden behind an explicit
toggle, so operational coverage no longer precedes fan content.
- Loading/error states offer Retry and a path back to Weekend.
Tests: Go query tests for future-exclusion; Vitest for default selection,
future pre-session, partial state, error/retry, grouped nav, and sessionState;
hermetic Playwright for bare/completed/future/return-to-Weekend; new
race-hub-future visual snapshots. Seed adds a far-future session inside the
Monaco meeting (kept in-meeting so Command Center focus is unaffected).
Note: `default_analysis_session` is an additive field on the existing
`/weekend` contract (no new endpoint), per the spec's "context contract" scope.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 18:29:34 -04:00
|
|
|
// DefaultAnalysisSession is the session a fan-facing default landing should
|
|
|
|
|
// open. Unlike DefaultSessionKey it never resolves to a future session, so
|
|
|
|
|
// bare /race-hub never renders empty post-session analysis.
|
|
|
|
|
DefaultAnalysisSession int `json:"default_analysis_session,omitempty"`
|
2026-05-25 02:25:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ListSeasons returns years with ingested meetings, newest first.
|
|
|
|
|
func (s *Service) ListSeasons() ([]int, error) {
|
|
|
|
|
return s.store.ListYears()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetWeekend loads meeting metadata, sessions, and per-session dataset coverage.
|
|
|
|
|
func (s *Service) GetWeekend(meetingKey int) (Weekend, error) {
|
|
|
|
|
meeting, err := s.store.GetMeeting(meetingKey)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if errors.Is(err, sql.ErrNoRows) {
|
|
|
|
|
return Weekend{}, ErrMeetingNotFound
|
|
|
|
|
}
|
|
|
|
|
return Weekend{}, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sessions, err := s.store.ListSessionsByMeeting(meetingKey)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return Weekend{}, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
out := Weekend{
|
|
|
|
|
Source: ResponseSourceNone,
|
|
|
|
|
MeetingKey: meetingKey,
|
|
|
|
|
Meeting: meetingToModel(meeting),
|
|
|
|
|
Sessions: []WeekendSession{},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if len(sessions) == 0 {
|
|
|
|
|
return out, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
out.Sessions = make([]WeekendSession, 0, len(sessions))
|
|
|
|
|
for _, sess := range sessions {
|
|
|
|
|
counts, err := s.store.CountSessionDatasets(sess.SessionKey)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return Weekend{}, err
|
|
|
|
|
}
|
|
|
|
|
datasets := datasetsFromCounts(true, true, counts)
|
2026-05-25 14:33:14 -04:00
|
|
|
sessionModel := sessionToModel(sess)
|
2026-07-03 02:57:18 -04:00
|
|
|
if sess.IsCancelled {
|
|
|
|
|
datasets = cancelledDatasets()
|
|
|
|
|
}
|
2026-05-25 14:33:14 -04:00
|
|
|
if datasets["starting_grid"].Status == DatasetStatusMissing && !isGridExpected(sessionModel.SessionType, sessionModel.SessionName) {
|
|
|
|
|
datasets["starting_grid"] = skippedNA()
|
|
|
|
|
}
|
2026-05-25 02:25:06 -04:00
|
|
|
out.Sessions = append(out.Sessions, WeekendSession{
|
2026-05-25 14:33:14 -04:00
|
|
|
Session: sessionModel,
|
2026-07-03 02:57:18 -04:00
|
|
|
Source: sessionSource(sess, datasets),
|
2026-05-25 02:25:06 -04:00
|
|
|
Datasets: datasets,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-03 02:57:18 -04:00
|
|
|
if meeting.IsCancelled {
|
|
|
|
|
out.Source = ResponseSourceCancelled
|
|
|
|
|
} else {
|
|
|
|
|
out.Source = weekendSource(out.Sessions)
|
|
|
|
|
}
|
2026-05-25 02:25:06 -04:00
|
|
|
out.DefaultSessionKey = pickDefaultSession(out.Sessions)
|
feat(race-hub): trustworthy defaults and fan-facing analysis hierarchy (#75)
Make bare /race-hub resolve to a completed session and never open empty
post-session analysis for a future race.
- Backend: add `default_analysis_session` to the Weekend context. It never
resolves to a future session (picks the richest completed session, ties
toward the later one; 0 when everything is upcoming). Existing
`default_session_key` and deep links are unchanged.
- Frontend default resolution prefers the most recently completed weekend
(`pickAnalysisFocusMeeting`) and consumes `default_analysis_session`, falling
back to the switcher when only upcoming sessions exist.
- New `sessionState` lib maps timing + coverage to user language
(upcoming/live/preparing/partial/ready/cancelled); the session rail, active
sub-bar, and WeekendSwitcher now label states instead of raw x/11 counts.
- Future sessions render a purpose-built PreSessionView (expected availability +
countdown) instead of empty Winner/Podium/Pole/Strategy/Compare cards.
- Analysis navigation regrouped into Story / Analysis / Data & Context; every
existing tab is preserved. Diagnostics (renamed from Data Status) is now a
secondary action and the raw dataset strip is hidden behind an explicit
toggle, so operational coverage no longer precedes fan content.
- Loading/error states offer Retry and a path back to Weekend.
Tests: Go query tests for future-exclusion; Vitest for default selection,
future pre-session, partial state, error/retry, grouped nav, and sessionState;
hermetic Playwright for bare/completed/future/return-to-Weekend; new
race-hub-future visual snapshots. Seed adds a far-future session inside the
Monaco meeting (kept in-meeting so Command Center focus is unaffected).
Note: `default_analysis_session` is an additive field on the existing
`/weekend` contract (no new endpoint), per the spec's "context contract" scope.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 18:29:34 -04:00
|
|
|
out.DefaultAnalysisSession = pickDefaultAnalysisSession(out.Sessions, weekendNow())
|
2026-05-25 02:25:06 -04:00
|
|
|
return out, nil
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-03 02:57:18 -04:00
|
|
|
func sessionSource(sess store.Session, datasets map[string]DatasetInfo) string {
|
|
|
|
|
if sess.IsCancelled {
|
|
|
|
|
return ResponseSourceCancelled
|
|
|
|
|
}
|
|
|
|
|
return responseSource(datasets)
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-25 02:25:06 -04:00
|
|
|
func weekendSource(sessions []WeekendSession) string {
|
|
|
|
|
if len(sessions) == 0 {
|
|
|
|
|
return ResponseSourceNone
|
|
|
|
|
}
|
|
|
|
|
hasLocal := false
|
|
|
|
|
allMissing := true
|
|
|
|
|
for _, sess := range sessions {
|
|
|
|
|
if sess.Source == ResponseSourceNone {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
allMissing = false
|
|
|
|
|
if sess.Source == ResponseSourceLocal || sess.Source == ResponseSourcePartial {
|
|
|
|
|
hasLocal = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if allMissing {
|
|
|
|
|
return ResponseSourceNone
|
|
|
|
|
}
|
|
|
|
|
for _, sess := range sessions {
|
|
|
|
|
if sess.Source == ResponseSourcePartial || sess.Source == ResponseSourceNone {
|
|
|
|
|
return ResponseSourcePartial
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if hasLocal {
|
|
|
|
|
return ResponseSourceLocal
|
|
|
|
|
}
|
|
|
|
|
return ResponseSourceNone
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func pickDefaultSession(sessions []WeekendSession) int {
|
|
|
|
|
if len(sessions) == 0 {
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bestIdx := 0
|
|
|
|
|
bestScore := datasetScore(sessions[0].Datasets)
|
|
|
|
|
for i := 1; i < len(sessions); i++ {
|
|
|
|
|
score := datasetScore(sessions[i].Datasets)
|
|
|
|
|
if score >= bestScore {
|
|
|
|
|
bestScore = score
|
|
|
|
|
bestIdx = i
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return sessions[bestIdx].Session.SessionKey
|
|
|
|
|
}
|
|
|
|
|
|
feat(race-hub): trustworthy defaults and fan-facing analysis hierarchy (#75)
Make bare /race-hub resolve to a completed session and never open empty
post-session analysis for a future race.
- Backend: add `default_analysis_session` to the Weekend context. It never
resolves to a future session (picks the richest completed session, ties
toward the later one; 0 when everything is upcoming). Existing
`default_session_key` and deep links are unchanged.
- Frontend default resolution prefers the most recently completed weekend
(`pickAnalysisFocusMeeting`) and consumes `default_analysis_session`, falling
back to the switcher when only upcoming sessions exist.
- New `sessionState` lib maps timing + coverage to user language
(upcoming/live/preparing/partial/ready/cancelled); the session rail, active
sub-bar, and WeekendSwitcher now label states instead of raw x/11 counts.
- Future sessions render a purpose-built PreSessionView (expected availability +
countdown) instead of empty Winner/Podium/Pole/Strategy/Compare cards.
- Analysis navigation regrouped into Story / Analysis / Data & Context; every
existing tab is preserved. Diagnostics (renamed from Data Status) is now a
secondary action and the raw dataset strip is hidden behind an explicit
toggle, so operational coverage no longer precedes fan content.
- Loading/error states offer Retry and a path back to Weekend.
Tests: Go query tests for future-exclusion; Vitest for default selection,
future pre-session, partial state, error/retry, grouped nav, and sessionState;
hermetic Playwright for bare/completed/future/return-to-Weekend; new
race-hub-future visual snapshots. Seed adds a far-future session inside the
Monaco meeting (kept in-meeting so Command Center focus is unaffected).
Note: `default_analysis_session` is an additive field on the existing
`/weekend` contract (no new endpoint), per the spec's "context contract" scope.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 18:29:34 -04:00
|
|
|
// pickDefaultAnalysisSession chooses the session a fan should land on by default.
|
|
|
|
|
// It never returns a future session: among sessions that have already started
|
|
|
|
|
// (or whose start time is unknown) it prefers the one with the richest local
|
|
|
|
|
// dataset coverage, breaking ties toward the later session. When every session
|
|
|
|
|
// is still upcoming it returns 0 so callers render a pre-session view instead of
|
|
|
|
|
// empty analysis.
|
|
|
|
|
func pickDefaultAnalysisSession(sessions []WeekendSession, now time.Time) int {
|
|
|
|
|
bestKey := 0
|
|
|
|
|
bestScore := -1
|
|
|
|
|
var bestStart time.Time
|
|
|
|
|
for _, sess := range sessions {
|
|
|
|
|
start, ok := parseSessionStart(sess.Session.DateStart)
|
|
|
|
|
// Skip sessions that are clearly in the future; unknown start times are
|
|
|
|
|
// treated as eligible so historical data without timestamps still works.
|
|
|
|
|
if ok && start.After(now) {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
score := datasetScore(sess.Datasets)
|
|
|
|
|
if score > bestScore || (score == bestScore && ok && start.After(bestStart)) {
|
|
|
|
|
bestScore = score
|
|
|
|
|
bestKey = sess.Session.SessionKey
|
|
|
|
|
if ok {
|
|
|
|
|
bestStart = start
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return bestKey
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func parseSessionStart(value string) (time.Time, bool) {
|
|
|
|
|
if value == "" {
|
|
|
|
|
return time.Time{}, false
|
|
|
|
|
}
|
|
|
|
|
if t, err := time.Parse(time.RFC3339, value); err == nil {
|
|
|
|
|
return t, true
|
|
|
|
|
}
|
|
|
|
|
if t, err := time.Parse("2006-01-02T15:04:05", value); err == nil {
|
|
|
|
|
return t, true
|
|
|
|
|
}
|
|
|
|
|
if t, err := time.Parse("2006-01-02", value[:min(len(value), 10)]); err == nil {
|
|
|
|
|
return t, true
|
|
|
|
|
}
|
|
|
|
|
return time.Time{}, false
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-25 02:25:06 -04:00
|
|
|
func datasetScore(datasets map[string]DatasetInfo) int {
|
|
|
|
|
score := 0
|
|
|
|
|
for _, info := range datasets {
|
|
|
|
|
if info.Status == DatasetStatusAvailable {
|
|
|
|
|
score++
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return score
|
|
|
|
|
}
|