Files
cheesy-arena-lite/match_review.go

184 lines
4.9 KiB
Go
Raw Normal View History

2014-06-28 22:03:30 -07:00
// Copyright 2014 Team 254. All Rights Reserved.
// Author: pat@patfairbank.com (Patrick Fairbank)
//
// Web routes for editing match results.
package main
import (
"fmt"
"github.com/gorilla/mux"
"net/http"
"strconv"
"text/template"
)
type MatchReviewListItem struct {
Id int
DisplayName string
Time string
RedTeams []int
BlueTeams []int
RedScore int
BlueScore int
ColorClass string
}
// Shows the match review interface.
func MatchReviewHandler(w http.ResponseWriter, r *http.Request) {
practiceMatches, err := buildMatchReviewList("practice")
if err != nil {
handleWebErr(w, err)
return
}
qualificationMatches, err := buildMatchReviewList("qualification")
if err != nil {
handleWebErr(w, err)
return
}
eliminationMatches, err := buildMatchReviewList("elimination")
if err != nil {
handleWebErr(w, err)
return
}
template, err := template.ParseFiles("templates/match_review.html", "templates/base.html")
if err != nil {
handleWebErr(w, err)
return
}
matchesByType := map[string][]MatchReviewListItem{"practice": practiceMatches,
"qualification": qualificationMatches, "elimination": eliminationMatches}
if currentMatchType == "" {
currentMatchType = "practice"
}
data := struct {
*EventSettings
MatchesByType map[string][]MatchReviewListItem
CurrentMatchType string
}{eventSettings, matchesByType, currentMatchType}
err = template.ExecuteTemplate(w, "base", data)
if err != nil {
handleWebErr(w, err)
return
}
}
// Shows the page to edit the results for a match.
func MatchReviewEditGetHandler(w http.ResponseWriter, r *http.Request) {
match, matchResult, err := getMatchResultFromRequest(r)
if err != nil {
handleWebErr(w, err)
return
}
template, err := template.ParseFiles("templates/edit_match_result.html", "templates/base.html")
if err != nil {
handleWebErr(w, err)
return
}
matchResultJson, err := matchResult.serialize()
if err != nil {
handleWebErr(w, err)
return
}
data := struct {
*EventSettings
Match *Match
MatchResultJson *MatchResultDb
}{eventSettings, match, matchResultJson}
err = template.ExecuteTemplate(w, "base", data)
if err != nil {
handleWebErr(w, err)
return
}
}
// Updates the results for a match.
func MatchReviewEditPostHandler(w http.ResponseWriter, r *http.Request) {
match, matchResult, err := getMatchResultFromRequest(r)
if err != nil {
handleWebErr(w, err)
return
}
r.ParseForm()
matchResultJson := MatchResultDb{Id: matchResult.Id, MatchId: match.Id, PlayNumber: matchResult.PlayNumber,
RedScoreJson: r.PostFormValue("redScoreJson"), BlueScoreJson: r.PostFormValue("blueScoreJson"),
2014-08-20 03:07:34 -07:00
RedCardsJson: r.PostFormValue("redCardsJson"), BlueCardsJson: r.PostFormValue("blueCardsJson")}
2014-06-28 22:03:30 -07:00
// Deserialize the JSON using the same mechanism as to store scoring information in the database.
matchResult, err = matchResultJson.deserialize()
if err != nil {
handleWebErr(w, err)
return
}
err = CommitMatchScore(match, matchResult)
if err != nil {
handleWebErr(w, err)
return
}
http.Redirect(w, r, "/match_review", 302)
}
// Load the match result for the match referenced in the HTTP query string.
2014-06-28 22:03:30 -07:00
func getMatchResultFromRequest(r *http.Request) (*Match, *MatchResult, error) {
vars := mux.Vars(r)
matchId, _ := strconv.Atoi(vars["matchId"])
match, err := db.GetMatchById(matchId)
if err != nil {
return nil, nil, err
}
if match == nil {
return nil, nil, fmt.Errorf("Error: No such match: %d", matchId)
}
matchResult, err := db.GetMatchResultForMatch(matchId)
if err != nil {
return nil, nil, err
}
if matchResult == nil {
// We're scoring a match that hasn't been played yet, but that's okay.
2014-07-07 22:42:17 -07:00
matchResult = NewMatchResult()
2014-06-28 22:03:30 -07:00
}
return match, matchResult, nil
}
// Constructs the list of matches to display in the match review interface.
2014-06-28 22:03:30 -07:00
func buildMatchReviewList(matchType string) ([]MatchReviewListItem, error) {
matches, err := db.GetMatchesByType(matchType)
if err != nil {
return []MatchReviewListItem{}, err
}
prefix := ""
if matchType == "practice" {
prefix = "P"
} else if matchType == "qualification" {
prefix = "Q"
}
matchReviewList := make([]MatchReviewListItem, len(matches))
for i, match := range matches {
matchReviewList[i].Id = match.Id
matchReviewList[i].DisplayName = prefix + match.DisplayName
2014-08-21 00:12:49 -07:00
matchReviewList[i].Time = match.Time.Local().Format("Mon 1/02 03:04 PM")
2014-06-28 22:03:30 -07:00
matchReviewList[i].RedTeams = []int{match.Red1, match.Red2, match.Red3}
matchReviewList[i].BlueTeams = []int{match.Blue1, match.Blue2, match.Blue3}
matchResult, err := db.GetMatchResultForMatch(match.Id)
if err != nil {
return []MatchReviewListItem{}, err
}
if matchResult != nil {
matchReviewList[i].RedScore = matchResult.RedScoreSummary().Score
matchReviewList[i].BlueScore = matchResult.BlueScoreSummary().Score
}
if match.Status == "complete" {
2014-06-28 22:03:30 -07:00
matchReviewList[i].ColorClass = "warning"
}
}
return matchReviewList, nil
}