-
Notifications
You must be signed in to change notification settings - Fork 930
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
302 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,31 @@ | ||
package wrapper | ||
|
||
import ( | ||
"code.cloudfoundry.org/cli/api/cloudcontroller" | ||
"code.cloudfoundry.org/cli/api/shared" | ||
) | ||
|
||
// CCTraceHeaderRequest is a wrapper that adds b3 trace headers to requests. | ||
type CCTraceHeaderRequest struct { | ||
headers *shared.TraceHeaders | ||
connection cloudcontroller.Connection | ||
} | ||
|
||
// NewCCTraceHeaderRequest returns a pointer to a CCTraceHeaderRequest wrapper. | ||
func NewCCTraceHeaderRequest(trace, span string) *CCTraceHeaderRequest { | ||
return &CCTraceHeaderRequest{ | ||
headers: shared.NewTraceHeaders(trace, span), | ||
} | ||
} | ||
|
||
// Add tracing headers | ||
func (t *CCTraceHeaderRequest) Make(request *cloudcontroller.Request, passedResponse *cloudcontroller.Response) error { | ||
t.headers.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" | ||
) | ||
|
||
// RoutingTraceHeaderRequest is a wrapper that adds b3 trace headers to requests. | ||
type RoutingTraceHeaderRequest struct { | ||
headers *shared.TraceHeaders | ||
connection router.Connection | ||
} | ||
|
||
// NewRoutingTraceHeaderRequest returns a pointer to a RoutingTraceHeaderRequest wrapper. | ||
func NewRoutingTraceHeaderRequest(trace, span string) *RoutingTraceHeaderRequest { | ||
return &RoutingTraceHeaderRequest{ | ||
headers: shared.NewTraceHeaders(trace, span), | ||
} | ||
} | ||
|
||
// Add tracing headers | ||
func (t *RoutingTraceHeaderRequest) Make(request *router.Request, passedResponse *router.Response) error { | ||
t.headers.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,38 @@ | ||
package shared | ||
|
||
import ( | ||
"net/http" | ||
) | ||
|
||
const ( | ||
B3TraceIDHeader = "X-B3-TraceId" | ||
B3SpanIDHeader = "X-B3-SpanId" | ||
) | ||
|
||
// TODO | ||
// 1. tests | ||
|
||
// TraceHeaders sets b3 trace headers to requests. | ||
type TraceHeaders struct { | ||
b3trace string | ||
b3span string | ||
} | ||
|
||
// NewTraceHeaders returns a pointer to a TraceHeaderRequest. | ||
func NewTraceHeaders(trace, span string) *TraceHeaders { | ||
return &TraceHeaders{ | ||
b3trace: trace, | ||
b3span: span, | ||
} | ||
} | ||
|
||
// Add tracing headers if they are not already set. | ||
func (t *TraceHeaders) 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" | ||
"code.cloudfoundry.org/cli/api/uaa" | ||
) | ||
|
||
// UAATraceHeaderRequest is a wrapper that adds b3 trace headers to requests. | ||
type UAATraceHeaderRequest struct { | ||
headers *shared.TraceHeaders | ||
connection uaa.Connection | ||
} | ||
|
||
// NewUAATraceHeaderRequest returns a pointer to a UAATraceHeaderRequest wrapper. | ||
func NewUAATraceHeaderRequest(trace, span string) *UAATraceHeaderRequest { | ||
return &UAATraceHeaderRequest{ | ||
headers: shared.NewTraceHeaders(trace, span), | ||
} | ||
} | ||
|
||
// Add tracing headers | ||
func (t *UAATraceHeaderRequest) Make(request *http.Request, passedResponse *uaa.Response) error { | ||
t.headers.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) | ||
} |