forked from beatlabs/patron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
133 lines (112 loc) · 3.11 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
127
128
129
130
131
132
133
package main
import (
"context"
"fmt"
"net/http"
"os"
"time"
"github.com/beatlabs/patron"
clienthttp "github.com/beatlabs/patron/client/http"
"github.com/beatlabs/patron/client/kafka"
patronhttp "github.com/beatlabs/patron/component/http"
"github.com/beatlabs/patron/component/http/auth/apikey"
"github.com/beatlabs/patron/examples"
"github.com/beatlabs/patron/log"
)
const (
kafkaTopic = "patron-topic"
kafkaBroker = "localhost:9092"
)
func init() {
err := os.Setenv("PATRON_LOG_LEVEL", "debug")
if err != nil {
fmt.Printf("failed to set log level env var: %v", err)
os.Exit(1)
}
err = os.Setenv("PATRON_JAEGER_SAMPLER_PARAM", "1.0")
if err != nil {
fmt.Printf("failed to set sampler env vars: %v", err)
os.Exit(1)
}
err = os.Setenv("PATRON_HTTP_DEFAULT_PORT", "50001")
if err != nil {
fmt.Printf("failed to set default patron port env vars: %v", err)
os.Exit(1)
}
}
func main() {
name := "second"
version := "1.0.0"
err := patron.SetupLogging(name, version)
if err != nil {
fmt.Printf("failed to set up logging: %v", err)
os.Exit(1)
}
httpCmp, err := newHTTPComponent(kafkaBroker, kafkaTopic, "http://localhost:50000/second")
if err != nil {
log.Fatalf("failed to create processor %v", err)
}
auth, err := apikey.New(&apiKeyValidator{validKey: "123456"})
if err != nil {
log.Fatalf("failed to create authenticator %v", err)
}
routesBuilder := patronhttp.NewRoutesBuilder().
Append(patronhttp.NewRouteBuilder("/", httpCmp.second).MethodGet().WithTrace().WithAuth(auth))
ctx := context.Background()
err = patron.New(name, version).WithRoutesBuilder(routesBuilder).Run(ctx)
if err != nil {
log.Fatalf("failed to create and run service %v", err)
}
}
type httpComponent struct {
prd kafka.Producer
topic string
}
func newHTTPComponent(kafkaBroker, topic, url string) (*httpComponent, error) {
prd, chErr, err := kafka.NewBuilder([]string{kafkaBroker}).CreateAsync()
if err != nil {
return nil, err
}
go func() {
for {
err := <-chErr
log.Errorf("error producing Kafka message: %v", err)
}
}()
return &httpComponent{prd: prd, topic: topic}, nil
}
func (hc *httpComponent) second(ctx context.Context, req *patronhttp.Request) (*patronhttp.Response, error) {
var u examples.User
err := req.Decode(&u)
if err != nil {
return nil, fmt.Errorf("failed to decode message: %w", err)
}
googleReq, err := http.NewRequest("GET", "https://www.google.com", nil)
if err != nil {
return nil, fmt.Errorf("failed to create request for www.google.com: %w", err)
}
cl, err := clienthttp.New(clienthttp.Timeout(5 * time.Second))
if err != nil {
return nil, err
}
_, err = cl.Do(ctx, googleReq)
if err != nil {
return nil, fmt.Errorf("failed to get www.google.com: %w", err)
}
kafkaMsg := kafka.NewMessage(hc.topic, &u)
err = hc.prd.Send(ctx, kafkaMsg)
if err != nil {
return nil, err
}
log.FromContext(ctx).Infof("request processed: %s %s", u.GetFirstname(), u.GetLastname())
return nil, nil
}
type apiKeyValidator struct {
validKey string
}
func (av apiKeyValidator) Validate(key string) (bool, error) {
if key == av.validKey {
return true, nil
}
return false, nil
}