-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
52 lines (39 loc) · 951 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package main
import (
"context"
"fmt"
"net/http"
"os"
"os/signal"
"time"
"github.com/sirupsen/logrus"
"github.com/spf13/viper"
)
func main() {
stop := make(chan os.Signal, 1)
signal.Notify(stop, os.Interrupt)
http.HandleFunc("/health_check", healthCheck)
http.HandleFunc("/generate/stop_time", generateStoptimeCards)
http.Handle("/", http.NotFoundHandler())
h := http.Server{
Addr: fmt.Sprintf(":%d", viper.GetInt("http.port")),
}
go func() {
logrus.Infof("HTTP Server listening on %s", h.Addr)
if err := h.ListenAndServe(); err != nil {
logrus.Fatal(err.Error())
}
}()
<-stop
logrus.Info("Graceful shutdown...")
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
err := h.Shutdown(ctx)
if err != nil {
logrus.Fatal(err.Error())
}
}
func healthCheck(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("{\"status\": \"OK\"}"))
}