// Copyright 2014 Team 254. All Rights Reserved. // Author: pat@patfairbank.com (Patrick Fairbank) // // Web handlers for the alliance station display. package web import ( "github.com/Team254/cheesy-arena-lite/model" "github.com/Team254/cheesy-arena-lite/websocket" "net/http" ) // Renders the team number and status display shown above each alliance station. func (web *Web) allianceStationDisplayHandler(w http.ResponseWriter, r *http.Request) { if !web.enforceDisplayConfiguration(w, r, map[string]string{"station": "R1"}) { return } template, err := web.parseFiles("templates/alliance_station_display.html") if err != nil { handleWebErr(w, err) return } data := struct { *model.EventSettings }{web.arena.EventSettings} err = template.ExecuteTemplate(w, "alliance_station_display.html", data) if err != nil { handleWebErr(w, err) return } } // The websocket endpoint for the alliance station display client to receive status updates. func (web *Web) allianceStationDisplayWebsocketHandler(w http.ResponseWriter, r *http.Request) { display, err := web.registerDisplay(r) if err != nil { handleWebErr(w, err) return } defer web.arena.MarkDisplayDisconnected(display.DisplayConfiguration.Id) 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. ws.HandleNotifiers(display.Notifier, web.arena.MatchTimingNotifier, web.arena.AllianceStationDisplayModeNotifier, web.arena.ArenaStatusNotifier, web.arena.MatchLoadNotifier, web.arena.MatchTimeNotifier, web.arena.RealtimeScoreNotifier, web.arena.ReloadDisplaysNotifier) }