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.
87 lines
2.2 KiB
87 lines
2.2 KiB
package http
|
|
|
|
import "github.com/go-kratos/kratos/v2/metadata"
|
|
|
|
// CallOption configures a Call before it starts or extracts information from
|
|
// a Call after it completes.
|
|
type CallOption interface {
|
|
// before is called before the call is sent to any server. If before
|
|
// returns a non-nil error, the RPC fails with that error.
|
|
before(*callInfo) error
|
|
|
|
// after is called after the call has completed. after cannot return an
|
|
// error, so any failures should be reported via output parameters.
|
|
after(*callInfo, *csAttempt)
|
|
}
|
|
|
|
type callInfo struct {
|
|
contentType string
|
|
method string
|
|
metatada metadata.Metadata
|
|
}
|
|
|
|
// EmptyCallOption does not alter the Call configuration.
|
|
// It can be embedded in another structure to carry satellite data for use
|
|
// by interceptors.
|
|
type EmptyCallOption struct{}
|
|
|
|
func (EmptyCallOption) before(*callInfo) error { return nil }
|
|
func (EmptyCallOption) after(*callInfo, *csAttempt) {}
|
|
|
|
type csAttempt struct{}
|
|
|
|
// ContentType with request content type.
|
|
func ContentType(contentType string) CallOption {
|
|
return ContentTypeCallOption{ContentType: contentType}
|
|
}
|
|
|
|
// ContentTypeCallOption is BodyCallOption
|
|
type ContentTypeCallOption struct {
|
|
EmptyCallOption
|
|
ContentType string
|
|
}
|
|
|
|
func (o ContentTypeCallOption) before(c *callInfo) error {
|
|
c.contentType = o.ContentType
|
|
return nil
|
|
}
|
|
|
|
func defaultCallInfo(path string) callInfo {
|
|
return callInfo{
|
|
contentType: "application/json",
|
|
method: path,
|
|
metatada: metadata.Metadata{},
|
|
}
|
|
}
|
|
|
|
// Method is serviceMethod call option
|
|
func Method(method string) CallOption {
|
|
return MethodCallOption{Method: method}
|
|
}
|
|
|
|
// MethodCallOption is set ServiceMethod for client call
|
|
type MethodCallOption struct {
|
|
EmptyCallOption
|
|
Method string
|
|
}
|
|
|
|
func (o MethodCallOption) before(c *callInfo) error {
|
|
c.method = o.Method
|
|
return nil
|
|
}
|
|
|
|
// Metadata is Metadata call option
|
|
func Metadata(metatada metadata.Metadata) CallOption {
|
|
return MetadataCallOption{Metatada: metatada}
|
|
}
|
|
|
|
// MetadataCallOption is set Metadata for client call
|
|
type MetadataCallOption struct {
|
|
EmptyCallOption
|
|
Metatada metadata.Metadata
|
|
}
|
|
|
|
func (o MetadataCallOption) before(c *callInfo) error {
|
|
c.metatada = o.Metatada
|
|
return nil
|
|
}
|
|
|