forked from beatlabs/patron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
172 lines (148 loc) · 5.5 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
package main
import (
"bytes"
"context"
"fmt"
"io/ioutil"
"net/http"
"os"
"regexp"
"strconv"
"time"
"github.com/beatlabs/patron"
clienthttp "github.com/beatlabs/patron/client/http"
patronhttp "github.com/beatlabs/patron/component/http"
"github.com/beatlabs/patron/encoding/protobuf"
"github.com/beatlabs/patron/examples"
"github.com/beatlabs/patron/log"
"github.com/beatlabs/patron/log/std"
)
const maxRequests = 1000
var assetsFolder string
var requestsCount int
var refreshAfter int64
func init() {
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)
}
// allows to run from any folder the 'go run examples/http/main.go'
var ok bool
assetsFolder, ok = os.LookupEnv("PATRON_EXAMPLE_ASSETS_FOLDER")
if !ok {
assetsFolder = "examples/http/public"
}
// allow a thousand requests every 10 seconds
requestsCount = maxRequests
refreshAfter = time.Now().Add(10 * time.Second).Unix()
}
func main() {
name := "httpHandler"
version := "1.0.0"
logger := std.New(os.Stderr, log.DebugLevel, map[string]interface{}{"env": "staging"})
service, err := patron.New(name, version, patron.Logger(logger))
if err != nil {
fmt.Printf("failed to set up service: %v", err)
os.Exit(1)
}
routesBuilder := patronhttp.NewRoutesBuilder().
Append(patronhttp.NewFileServer("/frontend/*path", assetsFolder, assetsFolder+"/index.html")).
Append(patronhttp.NewPostRouteBuilder("/api", httpHandler)).
Append(patronhttp.NewGetRouteBuilder("/api", getHandler).WithRateLimiting(50, 50))
// Setup a simple CORS middleware
middlewareCors := func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Add("Access-Control-Allow-Origin", "*")
w.Header().Add("Access-Control-Allow-Methods", "GET, POST")
w.Header().Add("Access-Control-Allow-Headers", "Origin, Authorization, Content-Type")
w.Header().Add("Access-Control-Allow-Credentials", "Allow")
h.ServeHTTP(w, r)
})
}
sig := func() {
log.Info("exit gracefully...")
os.Exit(0)
}
ctx := context.Background()
err = service.
WithRoutesBuilder(routesBuilder).
WithMiddlewares(middlewareCors).
WithSIGHUP(sig).
Run(ctx)
if err != nil {
log.Fatalf("failed to create and run service %v", err)
}
}
func getHandler(_ context.Context, _ *patronhttp.Request) (*patronhttp.Response, error) {
return patronhttp.NewResponse(fmt.Sprint("Testing Middleware", http.StatusOK)), nil
}
// httpHandler proxies the inbound JSON HTTP request to a protobuf HTTP request
func httpHandler(ctx context.Context, req *patronhttp.Request) (*patronhttp.Response, error) {
now := time.Now().Unix()
if requestsCount <= 0 && refreshAfter > now {
return nil, patronhttp.NewErrorWithCodeAndPayload(http.StatusTooManyRequests, "no more requests and the refresh time is in the future").
WithHeaders(map[string]string{"Retry-After": strconv.Itoa(int(refreshAfter))})
}
requestsCount--
if refreshAfter <= now {
requestsCount = maxRequests
}
interval, err := DoIntervalRequest(ctx)
if err != nil {
log.FromContext(ctx).Infof("httpHandler: failed to get interval information %v: could it be that the http-cache service is not running ?", err)
} else {
log.FromContext(ctx).Infof("httpHandler: pipeline initiated at: %s", interval)
}
var u examples.User
err = req.Decode(&u)
if err != nil {
return nil, patronhttp.NewValidationErrorWithPayload(fmt.Sprintf("failed to decode request: %v", err))
}
b, err := protobuf.Encode(&u)
if err != nil {
return nil, patronhttp.NewErrorWithCodeAndPayload(http.StatusInternalServerError, fmt.Sprintf("failed create request: %v", err))
}
httpRequest, err := http.NewRequest("GET", "http://localhost:50001", bytes.NewReader(b))
if err != nil {
return nil, patronhttp.NewErrorWithCodeAndPayload(http.StatusInternalServerError, fmt.Sprintf("failed create request: %v", err))
}
httpRequest.Header.Add("Content-Type", protobuf.Type)
httpRequest.Header.Add("Accept", protobuf.Type)
httpRequest.Header.Add("Authorization", "Apikey 123456")
cl, err := clienthttp.New(clienthttp.Timeout(5 * time.Second))
if err != nil {
return nil, err
}
rsp, err := cl.Do(ctx, httpRequest)
if err != nil {
return nil, patronhttp.NewErrorWithCodeAndPayload(http.StatusInternalServerError, fmt.Sprintf("failed to perform http request with protobuf payload: %v", err))
}
log.FromContext(ctx).Infof("request processed: %s %s", u.GetFirstname(), u.GetLastname())
return patronhttp.NewResponse(fmt.Sprintf("got %s from HTTP route", rsp.Status)), nil
}
// DoIntervalRequest is a helper method to make a request to the http-cache example service from other examples
func DoIntervalRequest(ctx context.Context) (string, error) {
request, err := http.NewRequest("GET", "http://localhost:50007/", nil)
if err != nil {
return "", fmt.Errorf("failed create route request: %w", err)
}
cl, err := clienthttp.New(clienthttp.Timeout(5 * time.Second))
if err != nil {
return "", fmt.Errorf("could not create http client: %w", err)
}
response, err := cl.Do(ctx, request)
if err != nil {
return "", fmt.Errorf("failed create get to http-cache service: %w", err)
}
tb, err := ioutil.ReadAll(response.Body)
if err != nil {
return "", fmt.Errorf("failed to decode http-cache response body: %w", err)
}
rgx := regexp.MustCompile(`\((.*?)\)`)
timeInstance := rgx.FindStringSubmatch(string(tb))
if len(timeInstance) == 1 {
return "", fmt.Errorf("could not match timeinstance from response %s", string(tb))
}
return timeInstance[1], nil
}