Files
cheesy-arena-lite/web/match_review.go

215 lines
5.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 web
2014-06-28 22:03:30 -07:00
import (
"encoding/json"
2014-06-28 22:03:30 -07:00
"fmt"
"github.com/Team254/cheesy-arena-lite/game"
2021-05-16 11:00:29 -07:00
"github.com/Team254/cheesy-arena-lite/model"
2014-06-28 22:03:30 -07:00
"github.com/gorilla/mux"
"net/http"
"strconv"
)
type MatchReviewListItem struct {
Id int
2014-06-28 22:03:30 -07:00
DisplayName string
Time string
RedTeams []int
BlueTeams []int
RedScore int
BlueScore int
ColorClass string
IsComplete bool
2014-06-28 22:03:30 -07:00
}
// Shows the match review interface.
func (web *Web) matchReviewHandler(w http.ResponseWriter, r *http.Request) {
practiceMatches, err := web.buildMatchReviewList("practice")
2014-06-28 22:03:30 -07:00
if err != nil {
handleWebErr(w, err)
return
}
qualificationMatches, err := web.buildMatchReviewList("qualification")
2014-06-28 22:03:30 -07:00
if err != nil {
handleWebErr(w, err)
return
}
eliminationMatches, err := web.buildMatchReviewList("elimination")
2014-06-28 22:03:30 -07:00
if err != nil {
handleWebErr(w, err)
return
}
template, err := web.parseFiles("templates/match_review.html", "templates/base.html")
2014-06-28 22:03:30 -07:00
if err != nil {
handleWebErr(w, err)
return
}
matchesByType := map[string][]MatchReviewListItem{"practice": practiceMatches,
"qualification": qualificationMatches, "elimination": eliminationMatches}
2018-09-22 01:10:12 -07:00
currentMatchType := web.arena.CurrentMatch.Type
if currentMatchType == "test" {
2014-06-28 22:03:30 -07:00
currentMatchType = "practice"
}
data := struct {
*model.EventSettings
2014-06-28 22:03:30 -07:00
MatchesByType map[string][]MatchReviewListItem
CurrentMatchType string
}{web.arena.EventSettings, matchesByType, currentMatchType}
2014-06-28 22:03:30 -07:00
err = template.ExecuteTemplate(w, "base", data)
if err != nil {
handleWebErr(w, err)
return
}
}
// Shows the page to edit the results for a match.
func (web *Web) matchReviewEditGetHandler(w http.ResponseWriter, r *http.Request) {
if !web.userIsAdmin(w, r) {
2015-08-22 23:33:38 -07:00
return
}
match, matchResult, _, err := web.getMatchResultFromRequest(r)
2014-06-28 22:03:30 -07:00
if err != nil {
handleWebErr(w, err)
return
}
template, err := web.parseFiles("templates/edit_match_result.html", "templates/base.html")
2014-06-28 22:03:30 -07:00
if err != nil {
handleWebErr(w, err)
return
}
matchResultJson, err := json.Marshal(matchResult)
2014-06-28 22:03:30 -07:00
if err != nil {
handleWebErr(w, err)
return
}
data := struct {
*model.EventSettings
Match *model.Match
MatchResultJson string
}{web.arena.EventSettings, match, string(matchResultJson)}
2014-06-28 22:03:30 -07:00
err = template.ExecuteTemplate(w, "base", data)
if err != nil {
handleWebErr(w, err)
return
}
}
// Updates the results for a match.
func (web *Web) matchReviewEditPostHandler(w http.ResponseWriter, r *http.Request) {
if !web.userIsAdmin(w, r) {
2015-08-22 23:33:38 -07:00
return
}
match, _, isCurrent, err := web.getMatchResultFromRequest(r)
2014-06-28 22:03:30 -07:00
if err != nil {
handleWebErr(w, err)
return
}
var matchResult model.MatchResult
if err = json.Unmarshal([]byte(r.PostFormValue("matchResultJson")), &matchResult); err != nil {
2014-06-28 22:03:30 -07:00
handleWebErr(w, err)
return
}
if matchResult.MatchId != match.Id {
handleWebErr(w, fmt.Errorf("Error: match ID %d from result does not match expected", matchResult.MatchId))
return
}
2014-06-28 22:03:30 -07:00
if isCurrent {
// If editing the current match, just save it back to memory.
2020-04-14 19:38:14 -05:00
*web.arena.RedScore = *matchResult.RedScore
*web.arena.BlueScore = *matchResult.BlueScore
http.Redirect(w, r, "/match_play", 303)
} else {
err = web.commitMatchScore(match, &matchResult, true)
if err != nil {
handleWebErr(w, err)
return
}
2014-06-28 22:03:30 -07:00
http.Redirect(w, r, "/match_review", 303)
}
2014-06-28 22:03:30 -07:00
}
// Load the match result for the match referenced in the HTTP query string.
func (web *Web) getMatchResultFromRequest(r *http.Request) (*model.Match, *model.MatchResult, bool, error) {
2014-06-28 22:03:30 -07:00
vars := mux.Vars(r)
// If editing the current match, get it from memory instead of the DB.
if vars["matchId"] == "current" {
return web.arena.CurrentMatch, web.getCurrentMatchResult(), true, nil
}
matchId, _ := strconv.Atoi(vars["matchId"])
match, err := web.arena.Database.GetMatchById(matchId)
2014-06-28 22:03:30 -07:00
if err != nil {
return nil, nil, false, err
2014-06-28 22:03:30 -07:00
}
if match == nil {
return nil, nil, false, fmt.Errorf("Error: No such match: %d", matchId)
2014-06-28 22:03:30 -07:00
}
matchResult, err := web.arena.Database.GetMatchResultForMatch(matchId)
2014-06-28 22:03:30 -07:00
if err != nil {
return nil, nil, false, err
2014-06-28 22:03:30 -07:00
}
if matchResult == nil {
// We're scoring a match that hasn't been played yet, but that's okay.
matchResult = model.NewMatchResult()
matchResult.MatchId = matchId
2016-08-14 18:59:24 -07:00
matchResult.MatchType = match.Type
2014-06-28 22:03:30 -07:00
}
return match, matchResult, false, nil
2014-06-28 22:03:30 -07:00
}
// Constructs the list of matches to display in the match review interface.
func (web *Web) buildMatchReviewList(matchType string) ([]MatchReviewListItem, error) {
matches, err := web.arena.Database.GetMatchesByType(matchType)
2014-06-28 22:03:30 -07:00
if err != nil {
return []MatchReviewListItem{}, err
}
matchReviewList := make([]MatchReviewListItem, len(matches))
for i, match := range matches {
matchReviewList[i].Id = match.Id
matchReviewList[i].DisplayName = match.TypePrefix() + 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 := web.arena.Database.GetMatchResultForMatch(match.Id)
2014-06-28 22:03:30 -07:00
if err != nil {
return []MatchReviewListItem{}, err
}
if matchResult != nil {
2020-04-14 19:38:14 -05:00
matchReviewList[i].RedScore = matchResult.RedScoreSummary().Score
matchReviewList[i].BlueScore = matchResult.BlueScoreSummary().Score
2014-06-28 22:03:30 -07:00
}
switch match.Status {
case game.RedWonMatch:
2015-05-30 23:58:42 -07:00
matchReviewList[i].ColorClass = "danger"
matchReviewList[i].IsComplete = true
case game.BlueWonMatch:
2015-05-30 23:58:42 -07:00
matchReviewList[i].ColorClass = "info"
matchReviewList[i].IsComplete = true
case game.TieMatch:
2014-06-28 22:03:30 -07:00
matchReviewList[i].ColorClass = "warning"
matchReviewList[i].IsComplete = true
2015-05-30 23:58:42 -07:00
default:
matchReviewList[i].ColorClass = ""
matchReviewList[i].IsComplete = false
2014-06-28 22:03:30 -07:00
}
}
return matchReviewList, nil
}