-
Notifications
You must be signed in to change notification settings - Fork 68
/
bar_bar_method_helloworld.go
163 lines (140 loc) · 5.26 KB
/
bar_bar_method_helloworld.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
// Code generated by zanzibar
// @generated
// Copyright (c) 2018 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package barendpoint
import (
"context"
"encoding/json"
"net/http"
"runtime/debug"
"time"
"github.com/opentracing/opentracing-go"
"github.com/pkg/errors"
zanzibar "github.com/uber/zanzibar/v2/runtime"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
workflow "github.com/uber/zanzibar/v2/examples/example-gateway/build/endpoints/bar/workflow"
endpointsIDlEndpointsBarBar "github.com/uber/zanzibar/v2/examples/example-gateway/build/gen-code/endpoints-idl/endpoints/bar/bar"
defaultExample "github.com/uber/zanzibar/v2/examples/example-gateway/middlewares/default/default_example"
defaultExample2 "github.com/uber/zanzibar/v2/examples/example-gateway/middlewares/default/default_example2"
module "github.com/uber/zanzibar/v2/examples/example-gateway/build/endpoints/bar/module"
)
// BarHelloWorldHandler is the handler for "/bar/hello"
type BarHelloWorldHandler struct {
Dependencies *module.Dependencies
endpoint *zanzibar.RouterEndpoint
}
// NewBarHelloWorldHandler creates a handler
func NewBarHelloWorldHandler(deps *module.Dependencies) *BarHelloWorldHandler {
handler := &BarHelloWorldHandler{
Dependencies: deps,
}
handler.endpoint = zanzibar.NewRouterEndpoint(
deps.Default.ContextExtractor, deps.Default,
"bar", "helloWorld",
zanzibar.NewStack([]zanzibar.MiddlewareHandle{
deps.Middleware.DefaultExample2.NewMiddlewareHandle(
defaultExample2.Options{},
),
deps.Middleware.DefaultExample.NewMiddlewareHandle(
defaultExample.Options{},
),
}, handler.HandleRequest).Handle,
)
return handler
}
// Register adds the http handler to the gateway's http router
func (h *BarHelloWorldHandler) Register(g *zanzibar.Gateway) error {
return g.HTTPRouter.Handle(
"GET", "/bar/hello",
http.HandlerFunc(h.endpoint.HandleRequest),
)
}
// HandleRequest handles "/bar/hello".
func (h *BarHelloWorldHandler) HandleRequest(
ctx context.Context,
req *zanzibar.ServerHTTPRequest,
res *zanzibar.ServerHTTPResponse,
) context.Context {
defer func() {
if r := recover(); r != nil {
stacktrace := string(debug.Stack())
e := errors.Errorf("enpoint panic: %v, stacktrace: %v", r, stacktrace)
ctx = h.Dependencies.Default.ContextLogger.ErrorZ(
ctx,
"Endpoint failure: endpoint panic",
zap.Error(e),
zap.String("stacktrace", stacktrace))
h.Dependencies.Default.ContextMetrics.IncCounter(ctx, zanzibar.MetricEndpointPanics, 1)
res.SendError(502, "Unexpected workflow panic, recovered at endpoint.", nil)
}
}()
// log endpoint request to downstream services
if ce := h.Dependencies.Default.ContextLogger.Check(zapcore.DebugLevel, "stub"); ce != nil {
var zfields []zapcore.Field
for _, k := range req.Header.Keys() {
if val, ok := req.Header.Get(k); ok {
zfields = append(zfields, zap.String(k, val))
}
}
ctx = h.Dependencies.Default.ContextLogger.DebugZ(ctx, "endpoint request to downstream", zfields...)
}
w := workflow.NewBarHelloWorldWorkflow(h.Dependencies)
if span := req.GetSpan(); span != nil {
ctx = opentracing.ContextWithSpan(ctx, span)
}
ctx, response, cliRespHeaders, err := w.Handle(ctx, req.Header)
// map useful client response headers to server response
if cliRespHeaders != nil {
if val, ok := cliRespHeaders.Get(zanzibar.ClientResponseDurationKey); ok {
if duration, err := time.ParseDuration(val); err == nil {
res.DownstreamFinishTime = duration
}
cliRespHeaders.Unset(zanzibar.ClientResponseDurationKey)
}
if val, ok := cliRespHeaders.Get(zanzibar.ClientTypeKey); ok {
res.ClientType = val
cliRespHeaders.Unset(zanzibar.ClientTypeKey)
}
}
if err != nil {
switch errValue := err.(type) {
case *endpointsIDlEndpointsBarBar.BarException:
res.WriteJSON(
403, cliRespHeaders, errValue,
)
return ctx
case *endpointsIDlEndpointsBarBar.SeeOthersRedirection:
res.WriteJSONBytes(303, cliRespHeaders, nil)
return ctx
default:
res.SendError(500, "Unexpected server error", err)
return ctx
}
}
bytes, err := json.Marshal(response)
if err != nil {
res.SendError(500, "Unexpected server error", errors.Wrap(err, "Unable to marshal resp json"))
return ctx
}
res.WriteJSONBytes(200, cliRespHeaders, bytes)
return ctx
}