gatus/controller/handler/spa.go

32 lines
1.3 KiB
Go
Raw Normal View History

2021-09-13 00:39:09 +02:00
package handler
2021-09-11 07:51:14 +02:00
import (
_ "embed"
2021-09-11 07:51:14 +02:00
"html/template"
"log"
"net/http"
2022-12-06 07:41:09 +01:00
"github.com/TwiN/gatus/v5/config/ui"
static "github.com/TwiN/gatus/v5/web"
2021-09-11 07:51:14 +02:00
)
func SinglePageApplication(ui *ui.Config) http.HandlerFunc {
2021-09-11 07:51:14 +02:00
return func(writer http.ResponseWriter, request *http.Request) {
t, err := template.ParseFS(static.FileSystem, static.IndexPath)
2021-09-11 07:51:14 +02:00
if err != nil {
// This should never happen, because ui.ValidateAndSetDefaults validates that the template works.
log.Println("[handler][SinglePageApplication] Failed to parse template. This should never happen, because the template is validated on start. Error:", err.Error())
http.Error(writer, "Failed to parse template. This should never happen, because the template is validated on start.", http.StatusInternalServerError)
2021-09-11 07:51:14 +02:00
return
}
writer.Header().Set("Content-Type", "text/html")
err = t.Execute(writer, ui)
if err != nil {
// This should never happen, because ui.ValidateAndSetDefaults validates that the template works.
log.Println("[handler][SinglePageApplication] Failed to execute template. This should never happen, because the template is validated on start. Error:", err.Error())
http.Error(writer, "Failed to execute template. This should never happen, because the template is validated on start.", http.StatusInternalServerError)
2021-09-11 07:51:14 +02:00
return
}
}
}