package httpserver import ( "net/http" "time" sentryhttp "github.com/getsentry/sentry-go/http" "github.com/go-chi/chi" "github.com/go-chi/chi/middleware" "github.com/prometheus/client_golang/prometheus/promhttp" "github.com/spf13/viper" ) func (s *server) routes() { s.router = chi.NewRouter() // the mux .Use() takes a http.Handler wrapper func, like most // things that deal with "middlewares" like alice et c, and will // call ServeHTTP on it. These middlewares applied by the mux (you // can .Use() more than one) will be applied to every request into // the service. s.router.Use(middleware.Recoverer) s.router.Use(middleware.RequestID) s.router.Use(s.LoggingMiddleware()) // add metrics middleware only if we can serve them behind auth if viper.GetString("METRICS_USERNAME") != "" { s.router.Use(s.MetricsMiddleware()) } // set up CORS headers. you'll probably want to configure that // in middlewares.go. s.router.Use(s.CORSMiddleware()) // CHANGEME to suit your needs, or pull from config. // timeout for request context; your handlers must finish within // this window: s.router.Use(middleware.Timeout(60 * time.Second)) // this adds a sentry reporting middleware if and only if sentry is // enabled via setting of SENTRY_DSN in env. if s.sentryEnabled { // Options docs at // https://docs.sentry.io/platforms/go/guides/http/ // we set sentry to repanic so that all panics bubble up to the // Recoverer chi middleware above. sentryHandler := sentryhttp.New(sentryhttp.Options{ Repanic: true, }) s.router.Use(sentryHandler.Handle) } //////////////////////////////////////////////////////////////////////// // ROUTES // complete docs: https://github.com/go-chi/chi //////////////////////////////////////////////////////////////////////// s.router.Get("/", s.handleIndex()) s.router.Mount("/s", http.StripPrefix("/s", http.FileServer(s.staticFiles.HTTPBox()))) s.router.Route("/api/v1", func(r chi.Router) { r.Get("/now", s.handleNow()) }) // if you want to use a general purpose middleware (http.Handler // wrapper) on a specific HandleFunc route, you need to take the // .ServeHTTP of the http.Handler to get its HandleFunc, viz: authMiddleware := s.AuthMiddleware() s.router.Get( "/login", authMiddleware(s.handleLogin()).ServeHTTP, ) // route that panics for testing // CHANGEME remove this s.router.Get( "/panic", s.handlePanic(), ) s.router.Get( "/.well-known/healthcheck.json", s.handleHealthCheck(), ) // set up authenticated /metrics route: if viper.GetString("METRICS_USERNAME") != "" { s.router.Group(func(r chi.Router) { r.Use(s.MetricsAuthMiddleware()) r.Get("/metrics", http.HandlerFunc(promhttp.Handler().ServeHTTP)) }) } }