forked from jaegertracing/jaeger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.go
92 lines (79 loc) · 2.73 KB
/
server.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
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package customer
import (
"encoding/json"
"net/http"
"github.com/opentracing/opentracing-go"
"github.com/uber/jaeger-lib/metrics"
"go.uber.org/zap"
"github.com/jaegertracing/jaeger/examples/hotrod/pkg/httperr"
"github.com/jaegertracing/jaeger/examples/hotrod/pkg/log"
"github.com/jaegertracing/jaeger/examples/hotrod/pkg/tracing"
)
// Server implements Customer service
type Server struct {
hostPort string
tracer opentracing.Tracer
logger log.Factory
database *database
}
// NewServer creates a new customer.Server
func NewServer(hostPort string, tracer opentracing.Tracer, metricsFactory metrics.Factory, logger log.Factory) *Server {
return &Server{
hostPort: hostPort,
tracer: tracer,
logger: logger,
database: newDatabase(
tracing.Init("mysql", metricsFactory, logger),
logger.With(zap.String("component", "mysql")),
),
}
}
// Run starts the Customer server
func (s *Server) Run() error {
mux := s.createServeMux()
s.logger.Bg().Info("Starting", zap.String("address", "http://"+s.hostPort))
return http.ListenAndServe(s.hostPort, mux)
}
func (s *Server) createServeMux() http.Handler {
mux := tracing.NewServeMux(s.tracer)
mux.Handle("/customer", http.HandlerFunc(s.customer))
return mux
}
func (s *Server) customer(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
s.logger.For(ctx).Info("HTTP request received", zap.String("method", r.Method), zap.Stringer("url", r.URL))
if err := r.ParseForm(); httperr.HandleError(w, err, http.StatusBadRequest) {
s.logger.For(ctx).Error("bad request", zap.Error(err))
return
}
customerID := r.Form.Get("customer")
if customerID == "" {
http.Error(w, "Missing required 'customer' parameter", http.StatusBadRequest)
return
}
response, err := s.database.Get(ctx, customerID)
if httperr.HandleError(w, err, http.StatusInternalServerError) {
s.logger.For(ctx).Error("request failed", zap.Error(err))
return
}
data, err := json.Marshal(response)
if httperr.HandleError(w, err, http.StatusInternalServerError) {
s.logger.For(ctx).Error("cannot marshal response", zap.Error(err))
return
}
w.Header().Set("Content-Type", "application/json")
w.Write(data)
}