forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
74 lines (58 loc) · 2.08 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 (
"flag"
"math/rand"
"net/http"
"time"
"github.com/prebid/prebid-server/config"
"github.com/prebid/prebid-server/currencies"
pbc "github.com/prebid/prebid-server/prebid_cache_client"
"github.com/prebid/prebid-server/router"
"github.com/prebid/prebid-server/server"
"github.com/prebid/prebid-server/util/task"
"github.com/golang/glog"
"github.com/spf13/viper"
)
// Rev holds binary revision string
// Set manually at build time using:
// go build -ldflags "-X main.Rev=`git rev-parse --short HEAD`"
// Populated automatically at build / release time via .travis.yml
// `gox -os="linux" -arch="386" -output="{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags "-X main.Rev=`git rev-parse --short HEAD`" -verbose ./...;`
// See issue #559
var Rev string
func init() {
rand.Seed(time.Now().UnixNano())
}
func main() {
flag.Parse() // required for glog flags and testing package flags
cfg, err := loadConfig()
if err != nil {
glog.Fatalf("Configuration could not be loaded or did not pass validation: %v", err)
}
err = serve(Rev, cfg)
if err != nil {
glog.Errorf("prebid-server failed: %v", err)
}
}
const configFileName = "pbs"
func loadConfig() (*config.Configuration, error) {
v := viper.New()
config.SetupViper(v, configFileName)
return config.New(v)
}
func serve(revision string, cfg *config.Configuration) error {
fetchingInterval := time.Duration(cfg.CurrencyConverter.FetchIntervalSeconds) * time.Second
staleRatesThreshold := time.Duration(cfg.CurrencyConverter.StaleRatesSeconds) * time.Second
currencyConverter := currencies.NewRateConverter(&http.Client{}, cfg.CurrencyConverter.FetchURL, staleRatesThreshold)
currencyConverterTickerTask := task.NewTickerTask(fetchingInterval, currencyConverter)
currencyConverterTickerTask.Start()
r, err := router.New(cfg, currencyConverter)
if err != nil {
return err
}
pbc.InitPrebidCache(cfg.CacheURL.GetBaseURL())
corsRouter := router.SupportCORS(r)
server.Listen(cfg, router.NoCache{Handler: corsRouter}, router.Admin(revision, currencyConverter, fetchingInterval), r.MetricsEngine)
r.Shutdown()
return nil
}