2021-09-13 00:39:09 +02:00
package handler
import (
"net/http"
2022-07-29 02:07:53 +02:00
"github.com/TwiN/gatus/v4/config"
2021-10-08 03:28:04 +02:00
"github.com/TwiN/health"
2021-09-13 00:39:09 +02:00
"github.com/gorilla/mux"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
2022-07-29 02:07:53 +02:00
func CreateRouter ( staticFolder string , cfg * config . Config ) * mux . Router {
2021-09-13 00:39:09 +02:00
router := mux . NewRouter ( )
2022-07-29 02:07:53 +02:00
if cfg . Metrics {
2021-09-13 00:39:09 +02:00
router . Handle ( "/metrics" , promhttp . Handler ( ) ) . Methods ( "GET" )
}
2021-12-31 06:10:54 +01:00
api := router . PathPrefix ( "/api" ) . Subrouter ( )
protected := api . PathPrefix ( "/" ) . Subrouter ( )
unprotected := api . PathPrefix ( "/" ) . Subrouter ( )
2022-07-29 02:07:53 +02:00
if cfg . Security != nil {
if err := cfg . Security . RegisterHandlers ( router ) ; err != nil {
2021-12-15 05:20:43 +01:00
panic ( err )
}
2022-07-29 02:07:53 +02:00
if err := cfg . Security . ApplySecurityMiddleware ( protected ) ; err != nil {
2022-01-09 01:52:11 +01:00
panic ( err )
}
2021-12-15 05:20:43 +01:00
}
2021-09-13 00:39:09 +02:00
// Endpoints
2022-07-29 02:07:53 +02:00
unprotected . Handle ( "/v1/config" , ConfigHandler { securityConfig : cfg . Security } ) . Methods ( "GET" )
protected . HandleFunc ( "/v1/endpoints/statuses" , EndpointStatuses ( cfg ) ) . Methods ( "GET" ) // No GzipHandler for this one, because we cache the content as Gzipped already
2021-12-31 06:10:54 +01:00
protected . HandleFunc ( "/v1/endpoints/{key}/statuses" , GzipHandlerFunc ( EndpointStatus ) ) . Methods ( "GET" )
2022-06-20 19:59:45 +02:00
unprotected . HandleFunc ( "/v1/endpoints/{key}/health/badge.svg" , HealthBadge ) . Methods ( "GET" )
2021-12-31 06:10:54 +01:00
unprotected . HandleFunc ( "/v1/endpoints/{key}/uptimes/{duration}/badge.svg" , UptimeBadge ) . Methods ( "GET" )
2022-08-11 03:05:34 +02:00
unprotected . HandleFunc ( "/v1/endpoints/{key}/response-times/{duration}/badge.svg" , ResponseTimeBadge ( cfg ) ) . Methods ( "GET" )
2021-12-31 06:10:54 +01:00
unprotected . HandleFunc ( "/v1/endpoints/{key}/response-times/{duration}/chart.svg" , ResponseTimeChart ) . Methods ( "GET" )
// Misc
router . Handle ( "/health" , health . Handler ( ) . WithJSON ( true ) ) . Methods ( "GET" )
router . HandleFunc ( "/favicon.ico" , FavIcon ( staticFolder ) ) . Methods ( "GET" )
2021-09-13 00:39:09 +02:00
// SPA
2022-07-29 02:07:53 +02:00
router . HandleFunc ( "/endpoints/{name}" , SinglePageApplication ( staticFolder , cfg . UI ) ) . Methods ( "GET" )
router . HandleFunc ( "/" , SinglePageApplication ( staticFolder , cfg . UI ) ) . Methods ( "GET" )
2021-09-13 00:39:09 +02:00
// Everything else falls back on static content
router . PathPrefix ( "/" ) . Handler ( GzipHandler ( http . FileServer ( http . Dir ( staticFolder ) ) ) )
return router
}