// Copyright 2018 Team 254. All Rights Reserved. // Author: pat@patfairbank.com (Patrick Fairbank) // // Web routes for configuring the field displays. package web import ( "fmt" "github.com/Team254/cheesy-arena-lite/field" "github.com/Team254/cheesy-arena-lite/model" "github.com/Team254/cheesy-arena-lite/websocket" "github.com/mitchellh/mapstructure" "io" "log" "net/http" ) // Shows the displays configuration page. func (web *Web) displaysGetHandler(w http.ResponseWriter, r *http.Request) { if !web.userIsAdmin(w, r) { return } template, err := web.parseFiles("templates/setup_displays.html", "templates/base.html") if err != nil { handleWebErr(w, err) return } data := struct { *model.EventSettings DisplayTypeNames map[field.DisplayType]string }{web.arena.EventSettings, field.DisplayTypeNames} err = template.ExecuteTemplate(w, "base", data) if err != nil { handleWebErr(w, err) return } } // The websocket endpoint for the display configuration page to send control commands and receive status updates. func (web *Web) displaysWebsocketHandler(w http.ResponseWriter, r *http.Request) { if !web.userIsAdmin(w, r) { return } ws, err := websocket.NewWebsocket(w, r) if err != nil { handleWebErr(w, err) return } defer ws.Close() // Subscribe the websocket to the notifiers whose messages will be passed on to the client, in a separate goroutine. go ws.HandleNotifiers(web.arena.DisplayConfigurationNotifier) // Loop, waiting for commands and responding to them, until the client closes the connection. for { messageType, data, err := ws.Read() if err != nil { if err == io.EOF { // Client has closed the connection; nothing to do here. return } log.Println(err) return } switch messageType { case "configureDisplay": var displayConfig field.DisplayConfiguration err = mapstructure.Decode(data, &displayConfig) if err != nil { ws.WriteError(err.Error()) continue } if err = web.arena.UpdateDisplay(displayConfig); err != nil { ws.WriteError(err.Error()) continue } case "reloadDisplay": displayId, ok := data.(string) if !ok { ws.WriteError(fmt.Sprintf("Failed to parse '%s' message.", messageType)) continue } web.arena.ReloadDisplaysNotifier.NotifyWithMessage(displayId) case "reloadAllDisplays": web.arena.ReloadDisplaysNotifier.Notify() default: ws.WriteError(fmt.Sprintf("Invalid message type '%s'.", messageType)) } } }