micro/metadata/metadata.go

26 lines
481 B
Go
Raw Normal View History

2016-01-28 20:55:28 +03:00
package metadata
import (
"golang.org/x/net/context"
)
2016-01-28 21:24:56 +03:00
type metaKey struct{}
2016-01-28 20:55:28 +03:00
type Metadata map[string]string
func FromContext(ctx context.Context) (Metadata, bool) {
2016-01-28 21:24:56 +03:00
md, ok := ctx.Value(metaKey{}).(Metadata)
2016-01-28 20:55:28 +03:00
return md, ok
}
func NewContext(ctx context.Context, md Metadata) context.Context {
2016-01-28 21:24:56 +03:00
if emd, ok := ctx.Value(metaKey{}).(Metadata); ok {
2016-01-28 20:55:28 +03:00
for k, v := range emd {
if _, ok := md[k]; !ok {
md[k] = v
}
}
}
2016-01-28 21:24:56 +03:00
return context.WithValue(ctx, metaKey{}, md)
2016-01-28 20:55:28 +03:00
}