mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 13:46:44 -04:00
183 lines
5.1 KiB
Go
183 lines
5.1 KiB
Go
// Copyright 2014 Team 254. All Rights Reserved.
|
|
// Author: pat@patfairbank.com (Patrick Fairbank)
|
|
//
|
|
// Web routes for generating practice and qualification schedules.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"html/template"
|
|
"net/http"
|
|
"strconv"
|
|
"time"
|
|
)
|
|
|
|
// Global vars to hold schedules that are in the process of being generated.
|
|
var cachedMatchType string
|
|
var cachedScheduleBlocks []ScheduleBlock
|
|
var cachedMatches []Match
|
|
var cachedTeamFirstMatches map[int]string
|
|
|
|
// Shows the schedule editing page.
|
|
func ScheduleGetHandler(w http.ResponseWriter, r *http.Request) {
|
|
if len(cachedScheduleBlocks) == 0 {
|
|
tomorrow := time.Now().AddDate(0, 0, 1)
|
|
location, _ := time.LoadLocation("Local")
|
|
startTime := time.Date(tomorrow.Year(), tomorrow.Month(), tomorrow.Day(), 9, 0, 0, 0, location)
|
|
cachedScheduleBlocks = append(cachedScheduleBlocks, ScheduleBlock{startTime, 10, 360})
|
|
cachedMatchType = "practice"
|
|
}
|
|
renderSchedule(w, r, "")
|
|
}
|
|
|
|
// Generates the schedule and presents it for review without saving it to the database.
|
|
func ScheduleGeneratePostHandler(w http.ResponseWriter, r *http.Request) {
|
|
r.ParseForm()
|
|
cachedMatchType = r.PostFormValue("matchType")
|
|
scheduleBlocks, err := getScheduleBlocks(r)
|
|
cachedScheduleBlocks = scheduleBlocks // Show the same blocks even if there is an error.
|
|
if err != nil {
|
|
renderSchedule(w, r, "Incomplete or invalid schedule block parameters specified.")
|
|
return
|
|
}
|
|
|
|
// Build the schedule.
|
|
teams, err := db.GetAllTeams()
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
if len(teams) == 0 {
|
|
renderSchedule(w, r, "No team list is configured. Set up the list of teams at the event before "+
|
|
"generating the schedule.")
|
|
return
|
|
}
|
|
if len(teams) < 18 {
|
|
renderSchedule(w, r, fmt.Sprintf("There are only %d teams. There must be at least 18 teams to generate "+
|
|
"a schedule.", len(teams)))
|
|
return
|
|
}
|
|
matches, err := BuildRandomSchedule(teams, scheduleBlocks, r.PostFormValue("matchType"))
|
|
if err != nil {
|
|
renderSchedule(w, r, fmt.Sprintf("Error generating schedule: %s.", err.Error()))
|
|
return
|
|
}
|
|
cachedMatches = matches
|
|
|
|
// Determine each team's first match.
|
|
teamFirstMatches := make(map[int]string)
|
|
for _, match := range matches {
|
|
checkTeam := func(team int) {
|
|
_, ok := teamFirstMatches[team]
|
|
if !ok {
|
|
teamFirstMatches[team] = match.DisplayName
|
|
}
|
|
}
|
|
checkTeam(match.Red1)
|
|
checkTeam(match.Red2)
|
|
checkTeam(match.Red3)
|
|
checkTeam(match.Blue1)
|
|
checkTeam(match.Blue2)
|
|
checkTeam(match.Blue3)
|
|
}
|
|
cachedTeamFirstMatches = teamFirstMatches
|
|
|
|
http.Redirect(w, r, "/setup/schedule", 302)
|
|
}
|
|
|
|
// Saves the generated schedule to the database.
|
|
func ScheduleSavePostHandler(w http.ResponseWriter, r *http.Request) {
|
|
existingMatches, err := db.GetMatchesByType(cachedMatchType)
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
if len(existingMatches) > 0 {
|
|
renderSchedule(w, r, fmt.Sprintf("Can't save schedule because a schedule of %d %s matches already "+
|
|
"exists. Clear it first on the Settings page.", len(existingMatches), cachedMatchType))
|
|
return
|
|
}
|
|
|
|
for _, match := range cachedMatches {
|
|
err = db.CreateMatch(&match)
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
if eventSettings.TbaPublishingEnabled && cachedMatchType != "practice" {
|
|
// Publish schedule to The Blue Alliance.
|
|
err = PublishMatches()
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
// Back up the database.
|
|
err = db.Backup("post_scheduling")
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
|
|
http.Redirect(w, r, "/setup/schedule", 302)
|
|
}
|
|
|
|
func renderSchedule(w http.ResponseWriter, r *http.Request, errorMessage string) {
|
|
teams, err := db.GetAllTeams()
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
template, err := template.ParseFiles("templates/schedule.html", "templates/base.html")
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
data := struct {
|
|
*EventSettings
|
|
MatchType string
|
|
ScheduleBlocks []ScheduleBlock
|
|
NumTeams int
|
|
Matches []Match
|
|
TeamFirstMatches map[int]string
|
|
ErrorMessage string
|
|
}{eventSettings, cachedMatchType, cachedScheduleBlocks, len(teams), cachedMatches, cachedTeamFirstMatches,
|
|
errorMessage}
|
|
err = template.ExecuteTemplate(w, "base", data)
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
// Converts the post form variables into a slice of schedule blocks.
|
|
func getScheduleBlocks(r *http.Request) ([]ScheduleBlock, error) {
|
|
numScheduleBlocks, err := strconv.Atoi(r.PostFormValue("numScheduleBlocks"))
|
|
if err != nil {
|
|
return []ScheduleBlock{}, err
|
|
}
|
|
var returnErr error
|
|
scheduleBlocks := make([]ScheduleBlock, numScheduleBlocks)
|
|
location, _ := time.LoadLocation("Local")
|
|
for i := 0; i < numScheduleBlocks; i++ {
|
|
scheduleBlocks[i].StartTime, err = time.ParseInLocation("2006-01-02 03:04:05 PM",
|
|
r.PostFormValue(fmt.Sprintf("startTime%d", i)), location)
|
|
if err != nil {
|
|
returnErr = err
|
|
}
|
|
scheduleBlocks[i].NumMatches, err = strconv.Atoi(r.PostFormValue(fmt.Sprintf("numMatches%d", i)))
|
|
if err != nil {
|
|
returnErr = err
|
|
}
|
|
scheduleBlocks[i].MatchSpacingSec, err = strconv.Atoi(r.PostFormValue(fmt.Sprintf("matchSpacingSec%d", i)))
|
|
if err != nil {
|
|
returnErr = err
|
|
}
|
|
}
|
|
return scheduleBlocks, returnErr
|
|
}
|