-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
64 lines (54 loc) · 1.93 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
package main
import (
"github.com/Shopify/sarama"
"github.com/sarunask/secure-kafka-insides/kafka"
"log"
"os"
"strings"
"github.com/sarunask/secure-kafka-insides/security"
"context"
"net/http"
"github.com/sarunask/secure-kafka-insides/web"
)
func main() {
if os.Getenv("VAULT_ADDR") == "" ||
os.Getenv("VAULT_TOKEN") == "" ||
os.Getenv("VAULT_TOKEN_RENEW_PERIOD") == "" ||
os.Getenv("VAULT_TLS_RENEW_PERIOD") == "" ||
os.Getenv("VAULT_PKI_ISSUE_ENDPOINT") == "" ||
os.Getenv("KAFKA_PKI_BASE_FQDN") == "" ||
os.Getenv("KAFKA_PKI_MANAGER_NAME") == "" ||
os.Getenv("KAFKA_BROKERS") == "" {
log.Fatal("Require such env variables: VAULT_ADDR, VAULT_TOKEN, " +
"VAULT_PKI_ISSUE_ENDPOINT, KAFKA_PKI_BASE_FQDN, KAFKA_PKI_MANAGER_NAME, " +
"KAFKA_BROKERS, VAULT_TOKEN_RENEW_PERIOD, VAULT_TLS_RENEW_PERIOD")
}
if os.Getenv("VERBOSE") == "1" {
sarama.Logger = log.New(os.Stdout, "[sarama] ", log.LstdFlags)
}
//Get Context shared between routines
ctx, cancel := context.WithCancel(context.Background())
defer cancel() // cancel when we are finished
go security.RenewToken(ctx)
//Get new TLS config
security.SecConfig = security.NewConfig()
go security.RenewCertificate(ctx, security.SecConfig)
brokers := os.Getenv("KAFKA_BROKERS")
brokerList := strings.Split(brokers, ",")
log.Printf("Kafka brokers: %s", strings.Join(brokerList, ", "))
kafka.ConfigClient = kafka.NewConfig(brokerList)
web.KafkaClient = kafka.ConfigClient.NewClient(security.SecConfig)
defer func() {
if err := web.KafkaClient.Close(); err != nil {
log.Panic(err)
}
}()
//Web handlers and server
http.HandleFunc("/", web.RootHandler)
http.HandleFunc("/enterUsersCN", web.EnterClientCNHandler)
http.HandleFunc("/enterTopic", web.EnterTopicHandler)
http.HandleFunc("/topics", web.KafkaTopics)
http.HandleFunc("/usersAcls/", web.KafkaUsersAcls)
http.HandleFunc("/topicsAcls/", web.KafkaTopicsAcls)
log.Fatal(http.ListenAndServe(":8080", nil))
}