-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.go
43 lines (31 loc) · 925 Bytes
/
app.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
package main
import (
"fmt"
"time"
"net/http"
"github.com/gregjones/httpcache"
"github.com/palantir/go-githubapp/githubapp"
"github.com/rs/zerolog"
)
func runApp(config Config, logger zerolog.Logger) {
cc, err := githubapp.NewDefaultCachingClientCreator(
config.Github,
githubapp.WithClientUserAgent("WIP-go"),
githubapp.WithClientTimeout(3*time.Second),
githubapp.WithClientCaching(false, func() httpcache.Cache { return httpcache.NewMemoryCache() }),
)
if err != nil {
panic(err)
}
prStatusHandler := &PRStatusHandler{
ClientCreator: cc,
}
webhookHandler := githubapp.NewDefaultEventDispatcher(config.Github, prStatusHandler)
http.Handle(githubapp.DefaultWebhookRoute, webhookHandler)
addr := fmt.Sprintf("%s:%d", config.Server.Address, config.Server.Port)
logger.Info().Msgf("Starting server on %s...", addr)
err = http.ListenAndServe(addr, nil)
if err != nil {
panic(err)
}
}