-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.go
74 lines (60 loc) · 1.5 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package main
import (
"context"
"errors"
"log"
"net/http"
"os"
"os/signal"
"syscall"
"time"
"github.com/julienschmidt/httprouter"
)
func main() {
srv := &http.Server{
Addr: ":10101",
Handler: newRouter(),
}
idleConnsClosed := make(chan struct{})
go func() {
sigint := make(chan os.Signal, 1)
signal.Notify(sigint, os.Interrupt)
signal.Notify(sigint, syscall.SIGTERM)
<-sigint
log.Println("service interrupt received")
log.Println("http server shutting down")
time.Sleep(5 * time.Second)
ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
defer cancel()
if err := srv.Shutdown(ctx); err != nil {
log.Printf("http server shutdown error: %v", err)
}
log.Println("shutdown complete")
close(idleConnsClosed)
}()
log.Printf("Starting server on port 10101")
if err := srv.ListenAndServe(); err != nil {
if !errors.Is(err, http.ErrServerClosed) {
log.Fatalf("fatal http server failed to start: %v", err)
}
}
<-idleConnsClosed
log.Println("Service Stop")
}
func newRouter() *httprouter.Router {
mux := httprouter.New()
// ytApiKey := os.Getenv("YOUTUB_API_KEY")
// if ytApiKey == "" {
// log.Fatal("youtube API key not provided")
// }
mux.GET("/channel/stats", GetChannelStats())
mux.GET("/ping", func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte("pong"))
if err != nil {
panic(err)
}
})
return mux
}