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.
67 lines
1.7 KiB
67 lines
1.7 KiB
package http
|
|
|
|
// 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
|
|
operation string
|
|
}
|
|
|
|
// 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",
|
|
operation: path,
|
|
}
|
|
}
|
|
|
|
// Operation is serviceMethod call option
|
|
func Operation(operation string) CallOption {
|
|
return OperationCallOption{Operation: operation}
|
|
}
|
|
|
|
// OperationCallOption is set ServiceMethod for client call
|
|
type OperationCallOption struct {
|
|
EmptyCallOption
|
|
Operation string
|
|
}
|
|
|
|
func (o OperationCallOption) before(c *callInfo) error {
|
|
c.operation = o.Operation
|
|
return nil
|
|
}
|
|
|