-
Notifications
You must be signed in to change notification settings - Fork 87
/
main.go
executable file
·126 lines (102 loc) · 3.23 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
"fmt"
"log"
"net/http"
"os"
"os/signal"
"syscall"
"time"
"github.com/h3mmy/bloopyboi/bot"
"github.com/h3mmy/bloopyboi/bot/providers"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"golang.org/x/sync/errgroup"
"sigs.k8s.io/controller-runtime/pkg/manager/signals"
"github.com/alexliesenfeld/health"
)
const (
botLogFieldKey = "bot"
)
// Where the magic happens
func main() {
ctx := signals.SetupSignalHandler()
ctx, cancelCtxFn := context.WithCancel(ctx)
go func() {
sCh := make(chan os.Signal, 3)
signal.Notify(sCh, syscall.SIGINT, syscall.SIGTERM, os.Interrupt)
<-sCh
cancelCtxFn()
}()
logger := providers.NewZapLogger()
commonLogger := logger.With(zapcore.Field{
Key: "group",
Type: zapcore.StringType,
String: "common",
})
boi := bot.New()
boi.WithLogger(commonLogger.With(zapcore.Field{
Key: botLogFieldKey,
Type: zapcore.StringType,
String: "BloopyBoi",
}))
errGroup, ctx := errgroup.WithContext(ctx)
errGroup.Go(func() error {
return boi.Run(ctx)
})
gateway := bot.NewDefaultGateway().WithBotInstance(boi)
// Start server
errGroup.Go(func() error {
if err := gateway.Start(); err != nil && err != http.ErrServerClosed {
return err
}
return nil
})
// Liveness check should mostly contain checks that identify if the service is locked up or in a state that it
// cannot recover from (deadlocks, etc.). In most cases it should just respond with 200 OK to avoid unexpected
// restarts.
livenessChecker := health.NewChecker(
health.WithCheck(health.Check{
Name: "boi",
Check: func(ctx context.Context) error {
return boi.Ping(ctx)
},
}),
)
readinessChecker := boi.GetReadinessChecker()
// Create a new health check http.Handler that returns the health status
// serialized as a JSON string. You can pass pass further configuration
// options to NewHandler to modify default configuration.
http.Handle("/healthz", health.NewHandler(livenessChecker))
http.Handle("/ready", health.NewHandler(readinessChecker))
// Start the HTTP server
log.Fatalln(http.ListenAndServe(":3000", nil))
// Wait here until CTRL-C or other term signal is received.
fmt.Println("Bot is now running. Press CTRL-C to exit.")
err := errGroup.Wait()
if err != nil {
logger.Error("error", zapcore.Field{
Key: "error",
Type: zapcore.ErrorType,
String: err.Error(),
})
} else {
logger.Info("main exited")
}
// Wait for interrupt signal to gracefully shutdown the server with a timeout of 10 seconds.
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
if err := gateway.Shutdown(ctx); err != nil {
commonLogger.Error("error shutting down gateway", zap.Error(err))
}
}