You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
1.9 KiB
91 lines
1.9 KiB
package http
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/go-kratos/kratos/v2/transport"
|
|
)
|
|
|
|
var (
|
|
_ transport.Transporter = &Transport{}
|
|
)
|
|
|
|
// Transport is an HTTP transport.
|
|
type Transport struct {
|
|
endpoint string
|
|
path string
|
|
method string
|
|
operation string
|
|
header headerCarrier
|
|
}
|
|
|
|
// Kind returns the transport kind.
|
|
func (tr *Transport) Kind() string {
|
|
return "http"
|
|
}
|
|
|
|
// Endpoint returns the transport endpoint.
|
|
func (tr *Transport) Endpoint() string {
|
|
return tr.endpoint
|
|
}
|
|
|
|
// Operation returns the transport operation.
|
|
func (tr *Transport) Operation() string {
|
|
return tr.operation
|
|
}
|
|
|
|
// Header returns the transport header.
|
|
func (tr *Transport) Header() transport.Header {
|
|
return tr.header
|
|
}
|
|
|
|
// Path returns the Transport path from server context.
|
|
func Path(ctx context.Context) string {
|
|
if tr, ok := transport.FromServerContext(ctx); ok {
|
|
if tr, ok := tr.(*Transport); ok {
|
|
return tr.path
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// Method returns the Transport method from server context.
|
|
func Method(ctx context.Context) string {
|
|
if tr, ok := transport.FromServerContext(ctx); ok {
|
|
if tr, ok := tr.(*Transport); ok {
|
|
return tr.method
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// SetOperation sets the transport operation.
|
|
func SetOperation(ctx context.Context, op string) {
|
|
if tr, ok := transport.FromServerContext(ctx); ok {
|
|
if tr, ok := tr.(*Transport); ok {
|
|
tr.operation = op
|
|
}
|
|
}
|
|
}
|
|
|
|
type headerCarrier http.Header
|
|
|
|
// Get returns the value associated with the passed key.
|
|
func (hc headerCarrier) Get(key string) string {
|
|
return http.Header(hc).Get(key)
|
|
}
|
|
|
|
// Set stores the key-value pair.
|
|
func (hc headerCarrier) Set(key string, value string) {
|
|
http.Header(hc).Set(key, value)
|
|
}
|
|
|
|
// Keys lists the keys stored in this carrier.
|
|
func (hc headerCarrier) Keys() []string {
|
|
keys := make([]string, 0, len(hc))
|
|
for k := range http.Header(hc) {
|
|
keys = append(keys, k)
|
|
}
|
|
return keys
|
|
}
|
|
|