-
Notifications
You must be signed in to change notification settings - Fork 933
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
311 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package wrapper | ||
|
||
import ( | ||
"code.cloudfoundry.org/cli/api/cloudcontroller" | ||
"code.cloudfoundry.org/cli/api/shared/wrapper" | ||
) | ||
|
||
// TODO | ||
// 1. tests | ||
// 2. do not overwrite headers if explicitly set (cf curl) | ||
// 3. headers should go on other clients (uaa/routing) as well (with same value) | ||
// 4. environment variable override | ||
|
||
// CCTraceHeaderRequest is a wrapper that adds b3 trace headers to requests. | ||
type CCTraceHeaderRequest struct { | ||
wrapped *wrapper.TraceHeaderRequest | ||
connection cloudcontroller.Connection | ||
} | ||
|
||
// NewCCTraceHeaderRequest returns a pointer to a CCTraceHeaderRequest wrapper. | ||
func NewCCTraceHeaderRequest(trace, span string) *CCTraceHeaderRequest { | ||
return &CCTraceHeaderRequest{ | ||
wrapped: wrapper.NewTraceHeaderRequest(trace, span), | ||
} | ||
} | ||
|
||
// Add tracing headers | ||
func (t *CCTraceHeaderRequest) Make(request *cloudcontroller.Request, passedResponse *cloudcontroller.Response) error { | ||
t.wrapped.SetHeaders(request.Request, passedResponse.HTTPResponse) | ||
return t.connection.Make(request, passedResponse) | ||
} | ||
|
||
// Wrap sets the connection in the CCTraceHeaderRequest and returns itself. | ||
func (t *CCTraceHeaderRequest) Wrap(innerconnection cloudcontroller.Connection) cloudcontroller.Connection { | ||
t.connection = innerconnection | ||
return t | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package wrapper | ||
|
||
import ( | ||
"code.cloudfoundry.org/cli/api/router" | ||
"code.cloudfoundry.org/cli/api/shared/wrapper" | ||
) | ||
|
||
// RoutingTraceHeaderRequest is a wrapper that adds b3 trace headers to requests. | ||
type RoutingTraceHeaderRequest struct { | ||
wrapped *wrapper.TraceHeaderRequest | ||
connection router.Connection | ||
} | ||
|
||
// NewRoutingTraceHeaderRequest returns a pointer to a RoutingTraceHeaderRequest wrapper. | ||
func NewRoutingTraceHeaderRequest(trace, span string) *RoutingTraceHeaderRequest { | ||
return &RoutingTraceHeaderRequest{ | ||
wrapped: wrapper.NewTraceHeaderRequest(trace, span), | ||
} | ||
} | ||
|
||
// Add tracing headers | ||
func (t *RoutingTraceHeaderRequest) Make(request *router.Request, passedResponse *router.Response) error { | ||
t.wrapped.SetHeaders(request.Request, passedResponse.HTTPResponse) | ||
return t.connection.Make(request, passedResponse) | ||
} | ||
|
||
// Wrap sets the connection in the RoutingTraceHeaderRequest and returns itself. | ||
func (t *RoutingTraceHeaderRequest) Wrap(innerconnection router.Connection) router.Connection { | ||
t.connection = innerconnection | ||
return t | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package wrapper | ||
|
||
import ( | ||
"net/http" | ||
) | ||
|
||
const ( | ||
B3TraceIDHeader = "X-B3-TraceId" | ||
B3SpanIDHeader = "X-B3-SpanId" | ||
) | ||
|
||
// TODO | ||
// 1. tests | ||
// 2. do not overwrite headers if explicitly set (cf curl) | ||
// 3. headers should go on other clients (uaa/routing) as well (with same value) | ||
// 4. environment variable override | ||
|
||
// TraceHeaderRequest is a wrapper that adds b3 trace headers to requests. | ||
type TraceHeaderRequest struct { | ||
b3trace string | ||
b3span string | ||
} | ||
|
||
// NewTraceHeaderRequest returns a pointer to a TraceHeaderRequest wrapper. | ||
func NewTraceHeaderRequest(trace, span string) *TraceHeaderRequest { | ||
return &TraceHeaderRequest{ | ||
b3trace: trace, | ||
b3span: span, | ||
} | ||
} | ||
|
||
// Add tracing headers if they are not already set. | ||
func (t *TraceHeaderRequest) SetHeaders(request *http.Request, passedResponse *http.Response) { | ||
// only override the trace headers if they are not already set (e.g. already explicitly set by cf curl) | ||
if request.Header.Get(B3TraceIDHeader) == "" { | ||
request.Header.Add(B3TraceIDHeader, t.b3trace) | ||
} | ||
if request.Header.Get(B3SpanIDHeader) == "" { | ||
request.Header.Add(B3SpanIDHeader, t.b3span) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package wrapper | ||
|
||
import ( | ||
"net/http" | ||
|
||
"code.cloudfoundry.org/cli/api/shared/wrapper" | ||
"code.cloudfoundry.org/cli/api/uaa" | ||
) | ||
|
||
// UAATraceHeaderRequest is a wrapper that adds b3 trace headers to requests. | ||
type UAATraceHeaderRequest struct { | ||
wrapped *wrapper.TraceHeaderRequest | ||
connection uaa.Connection | ||
} | ||
|
||
// NewUAATraceHeaderRequest returns a pointer to a UAATraceHeaderRequest wrapper. | ||
func NewUAATraceHeaderRequest(trace, span string) *UAATraceHeaderRequest { | ||
return &UAATraceHeaderRequest{ | ||
wrapped: wrapper.NewTraceHeaderRequest(trace, span), | ||
} | ||
} | ||
|
||
// Add tracing headers | ||
func (t *UAATraceHeaderRequest) Make(request *http.Request, passedResponse *uaa.Response) error { | ||
t.wrapped.SetHeaders(request, passedResponse.HTTPResponse) | ||
return t.connection.Make(request, passedResponse) | ||
} | ||
|
||
// Wrap sets the connection in the UAATraceHeaderRequest and returns itself. | ||
func (t *UAATraceHeaderRequest) Wrap(innerconnection uaa.Connection) uaa.Connection { | ||
t.connection = innerconnection | ||
return t | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package random | ||
|
||
import ( | ||
"crypto/rand" | ||
"encoding/hex" | ||
) | ||
|
||
func GenerateHex(length int) string { | ||
b := make([]byte, length/2) | ||
if _, err := rand.Read(b); err != nil { | ||
panic(err) | ||
} | ||
|
||
return hex.EncodeToString(b) | ||
} |