gohttpserver/httpserver/routes.go

49 lines
1.3 KiB
Go
Raw Normal View History

2020-09-30 06:35:07 +00:00
package httpserver
2020-09-30 07:48:56 +00:00
import (
sentryhttp "github.com/getsentry/sentry-go/http"
2020-09-30 07:48:56 +00:00
"github.com/gorilla/mux"
)
2020-09-30 06:35:07 +00:00
func (s *server) routes() {
s.router = mux.NewRouter()
2020-09-30 07:48:56 +00:00
authMiddleware := s.AuthMiddleware()
2020-09-30 06:35:07 +00:00
s.router.HandleFunc("/", s.handleIndex()).Methods("GET")
// 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:
s.router.HandleFunc(
"/login",
authMiddleware(s.handleLogin()).ServeHTTP
).Methods("GET")
s.router.HandleFunc(
"/.well-known/healthcheck.json",
s.handleHealthCheck(),
).Methods("GET")
// route that panics for testing
// CHANGEME remove this
s.router.HandleFunc(
"/panic",
s.handlePanic()
).Methods("GET")
2020-09-30 07:48:56 +00:00
// the Gorilla 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.
2020-09-30 07:48:56 +00:00
s.router.Use(s.LoggingMiddleware())
// this adds a sentry reporting middleware if and only if
// sentry is enabled via setting of SENTRY_DSN in env.
if s.sentryEnabled {
sentryHandler := sentryhttp.New(sentryhttp.Options{})
s.router.Use(sentryHandler.Handle)
}
2020-09-30 06:35:07 +00:00
}