func addDashboardRoutes(router *pat.Router) { router.Get("/dashboard/progress", serve( dashboardAuth, getDashboardProgress, toJson, )) router.Get("/dashboard/clues", serve( dashboardAuth, getDashboardClues, toJson, )) router.Put("/dashboard/start_times", serve( parseRequest(new(setStartTimesReq)), dashboardAuth, setStartTimes, noResponse, )) router.Put("/dashboard", serve( parseRequest(new(_DashboardAuthReq)), dashboardAuth, )) }
func addClueRoutes(router *pat.Router) { router.Get("/clue/{clue_id}/hint", serve( Authenticate(true), parseFromUrl(urlParams{ "clue_id": parseParamToInt64, "lat": parseParamToFloat64, "lng": parseParamToFloat64, }), takeHint, toJson, )) router.Get("/clue", serve( Authenticate(true), parseFromUrl(urlParams{"clue_id": parseParamToInt64}), currentClue, toJson, )) router.Post("/clue/{clue_id}", serve( Authenticate(true), parseFromUrl(urlParams{ "clue_id": parseParamToInt64, }), parseRequest(new(_SolveClueReq)), solveClue, toJson, )) router.Put("/clue/{clue_id}", serve( dashboardAuth, parseRequest(new(record.Clue)), updateClue, toJson, )) }
func addTwilioRoutes(router *pat.Router) { router.Get("/twilio/call", serve( parseFromUrl(urlParams{"From": parseParamToString}), handleTwilio, toXml, )) }
func addTrackRoutes(router *pat.Router) { router.Get("/tracks", serve( dashboardAuth, allTracks, toJson, )) router.Put("/track/{track_id}/toggle", serve( dashboardAuth, parseFromUrl(urlParams{ "track_id": parseParamToInt64, }), toggleTrackActivation, noResponse, )) }
func normalPing(mux *pat.Router) { mux.Get("/ping", func(res http.ResponseWriter, req *http.Request) { res.Write([]byte("pong")) }) }
func addProgressRoutes(router *pat.Router) { router.Get("/progress", getProgress) }