2020-12-30 02:22:17 +01:00
|
|
|
package controller
|
|
|
|
|
|
|
|
import (
|
2021-02-06 02:45:28 +01:00
|
|
|
"context"
|
2020-12-30 02:22:17 +01:00
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
2021-01-24 10:48:07 +01:00
|
|
|
"os"
|
2020-12-30 02:22:17 +01:00
|
|
|
"time"
|
|
|
|
|
2021-10-08 03:28:04 +02:00
|
|
|
"github.com/TwiN/gatus/v3/config/ui"
|
|
|
|
"github.com/TwiN/gatus/v3/config/web"
|
|
|
|
"github.com/TwiN/gatus/v3/controller/handler"
|
|
|
|
"github.com/TwiN/gatus/v3/security"
|
2020-12-30 02:22:17 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2021-02-01 07:37:56 +01:00
|
|
|
// server is the http.Server created by Handle.
|
|
|
|
// The only reason it exists is for testing purposes.
|
|
|
|
server *http.Server
|
2020-12-30 02:22:17 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Handle creates the router and starts the server
|
2021-09-22 06:47:51 +02:00
|
|
|
func Handle(securityConfig *security.Config, webConfig *web.Config, uiConfig *ui.Config, enableMetrics bool) {
|
|
|
|
var router http.Handler = handler.CreateRouter(ui.StaticFolder, securityConfig, uiConfig, enableMetrics)
|
2021-01-24 10:48:07 +01:00
|
|
|
if os.Getenv("ENVIRONMENT") == "dev" {
|
2021-09-13 00:39:09 +02:00
|
|
|
router = handler.DevelopmentCORS(router)
|
2021-01-24 10:48:07 +01:00
|
|
|
}
|
2021-02-01 07:37:56 +01:00
|
|
|
server = &http.Server{
|
2021-05-19 04:29:15 +02:00
|
|
|
Addr: fmt.Sprintf("%s:%d", webConfig.Address, webConfig.Port),
|
2020-12-30 02:22:17 +01:00
|
|
|
Handler: router,
|
|
|
|
ReadTimeout: 15 * time.Second,
|
|
|
|
WriteTimeout: 15 * time.Second,
|
|
|
|
IdleTimeout: 15 * time.Second,
|
|
|
|
}
|
2021-05-19 04:29:15 +02:00
|
|
|
log.Println("[controller][Handle] Listening on " + webConfig.SocketAddress())
|
2021-02-01 07:37:56 +01:00
|
|
|
if os.Getenv("ROUTER_TEST") == "true" {
|
|
|
|
return
|
|
|
|
}
|
2021-02-06 02:45:28 +01:00
|
|
|
log.Println("[controller][Handle]", server.ListenAndServe())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shutdown stops the server
|
|
|
|
func Shutdown() {
|
|
|
|
if server != nil {
|
|
|
|
_ = server.Shutdown(context.TODO())
|
|
|
|
server = nil
|
|
|
|
}
|
2020-12-30 02:22:17 +01:00
|
|
|
}
|